Taos API Reference
    Preparing search index...

    Interface ExprNodeGraph

    Node-graph form. nodes/edges form the DAG; statements is the ordered list of effect-node ids (SetAttribute/SetVariable) that drive side effects; variables declares local variables visible to VariableGet/VariableSet (same shape as ExpressionGraph.variables).

    interface ExprNodeGraph {
        nodes: Record<NodeId, ExprNode>;
        edges: ExprEdge[];
        statements: string[];
        variables?: VariableDecl[];
    }
    Index

    Properties

    edges: ExprEdge[]
    statements: string[]
    variables?: VariableDecl[]