@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Interface FoundCall

    One call a call-context query found, with the kind and subkind it was found under.

    interface FoundCall {
        aliasRoots?: readonly NodeId[];
        calls?: readonly NodeId[];
        id: NodeId;
        kind: string;
        linkedIds?: readonly (NodeId | { id: NodeId; info: object })[];
        name: Identifier;
        subkind: string;
    }

    Hierarchy (View Summary)

    Index
    aliasRoots?: readonly NodeId[]

    (Direct) alias locations this call stems from

    calls?: readonly NodeId[]

    Ids of functions which are called by the respective function call, this will only be populated whenever you explicitly state the DefaultCallContextQueryFormat#callTargets. An empty array means that the call targets only non-local functions.

    id: NodeId

    The id of the call vertex identified within the supplied dataflow graph

    kind: string
    linkedIds?: readonly (NodeId | { id: NodeId; info: object })[]

    ids attached by the linkTo query, if you attached information with the attachLinkInfo field you can find it here

    The name of the function call

    subkind: string