interface ExitPoint {
    controlDependencies: undefined | ControlDependency[];
    nodeId: NodeId;
    type: ExitPointType;
}

Properties

controlDependencies: undefined | ControlDependency[]

Control dependencies which influence if the exit point triggers (e.g., if the return is contained within an if statement)

nodeId: NodeId

The id of the node which causes the exit point!

What kind of exit point is this one? May be used to filter for exit points of specific causes.