Information about a registered hook within the dataflow information.

interface HookInformation {
    add?: boolean;
    after?: boolean;
    cds?: ControlDependency[];
    id: NodeId;
    type: OnFnExit;
}

Properties

Properties

add?: boolean

Whether the hook is added on top of existing ones (true) or replaces them (false)

after?: boolean

Whether the hook is executed after existing ones (true) or before (false)

Control dependencies under which the hook was registered

id: NodeId

The id of the function definition which is added by the hook

type: OnFnExit

The type of the hook