The control flow information for the current DataflowInformation.

interface DataflowCfgInformation {
    entryPoint: NodeId;
    exitPoints: readonly ExitPoint[];
}

Hierarchy (view full)

Hierarchy-Diagram

UML class diagram of DataflowCfgInformation

Properties

entryPoint: NodeId

The entry node into the subgraph

exitPoints: readonly ExitPoint[]

All already identified exit points (active 'return'/'break'/'next'-likes) of the respective structure.