@eagleoutice/flowr - v2.10.1
    Preparing search index...

    Interface DataflowGraphVertexUse

    Arguments required to construct a vertex which represents the usage of a variable in the DataflowGraph|dataflow graph.

    isUseVertex - to check if a vertex is a use vertex

    interface DataflowGraphVertexUse {
        cds: ControlDependency[] | undefined;
        environment?: undefined;
        id: NodeId;
        link?: DataflowGraphVertexAstLink;
        tag: Use;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of DataflowGraphVertexUse
    Index

    Properties

    cds: ControlDependency[] | undefined

    ControlDependency - the collection of control dependencies which have an influence on whether the vertex is executed.

    environment?: undefined

    Does not require an environment to be attached. If we promote the use to a function call, we attach the environment later.

    id: NodeId

    The id of the node (the id assigned by the ParentInformation decoration). This unanimously identifies the vertex in the DataflowGraph|dataflow graph as well as the corresponding NormalizedAst|normalized AST.

    Describes the collection of AST vertices that contributed to this vertex. For example, this is useful with replacement operators, telling you which assignment operator caused them

    tag: Use

    Used to identify and separate different types of vertices.