Marker vertex for a value in the dataflow of the program.

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

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of DataflowGraphVertexValue

Properties

controlDependencies: undefined | ControlDependency[]

See IdentifierReference

environment?: undefined

The environment in which the vertex is set.

id: NodeId

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

tag: Value

Used to identify and separate different types of vertices.