The control flow information for the current DataflowInformation.

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

Hierarchy (View Summary)

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. This also tracks (local knowledge of) exceptions thrown within the structure. See the ExitPointType#Error|Error type for more information.

Registered hooks within the current subtree