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

    Either checks whether a given function calls another function matching the given constraints, or returns all functions that call any function matching the given constraints.

    interface DoesCallQuery {
        call: SlicingCriterion;
        calls: CallsConstraint;
        expandLibraryInternals?: boolean;
        queryId?: string;
        type: "does-call";
    }

    Hierarchy (View Summary)

    Hierarchy-Diagram

    UML class diagram of DoesCallQuery
    Index

    Properties

    expandLibraryInternals?: boolean

    If set, when the walk reaches a library/built-in leaf call, expand it into its internal callees using the signature database's transitiveCallees and match the constraints against those as well (a no-op if no signature database is loaded). Default false.

    queryId?: string
    type: "does-call"

    used to select the query type :)