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

    Arguments required to construct a vertex in the DataflowGraph|dataflow graph.

    • DataflowGraphVertexUse
    • DataflowGraphVertexVariableDefinition
    • DataflowGraphVertexFunctionDefinition
    interface DataflowGraphVertexBase {
        cds: ControlDependency[] | undefined;
        environment?: REnvironmentInformation;
        id: NodeId;
        link?: DataflowGraphVertexAstLink;
        tag: VertexType;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of DataflowGraphVertexBase
    Index

    Properties

    cds: ControlDependency[] | undefined

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

    The environment in which the vertex is set.

    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

    Used to identify and separate different types of vertices.