interface SimpleCallExpression {
    arguments: (Expression | SpreadElement)[];
    callee: Expression | Super;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    optional: boolean;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "CallExpression";
}

Hierarchy (View Summary)

Properties

arguments: (Expression | SpreadElement)[]
callee: Expression | Super
leadingComments?: Comment[]
loc?: null | SourceLocation
optional: boolean
range?: [number, number]
trailingComments?: Comment[]
type: "CallExpression"