AutoBE
    Preparing search index...

    Function or method invocation.

    interface ICallExpression {
        args: IValueExpression[];
        awaited: boolean;
        callee: IValueExpression;
        classification:
            | "collector"
            | "provider"
            | "transformer"
            | "utility"
            | "external";
        kind: "call";
    }
    Index

    Properties

    Arguments in order.

    awaited: boolean

    Whether the call is awaited.

    Expression resolving to the function being called.

    classification:
        | "collector"
        | "provider"
        | "transformer"
        | "utility"
        | "external"

    Origin of the callee, used to resolve and render the call site.

    kind: "call"