Arguments required to construct a vertex which represents the definition of a variable in the dataflow graph.

interface DataflowGraphVertexVariableDefinition {
    controlDependencies: undefined | ControlDependency[];
    environment?: undefined;
    id: NodeId;
    tag: VariableDefinition;
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of DataflowGraphVertexVariableDefinition

Properties

controlDependencies: undefined | ControlDependency[]

See IdentifierReference

environment?: undefined

Does not require an environment, those are attached to the call

id: NodeId

The id of the node (the id assigned by the ParentInformation decoration)

Used to identify and separate different types of vertices.