interface BaseCallExpression {
    arguments: (Expression | SpreadElement)[];
    callee: Expression | Super;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: string;
}

Hierarchy (View Summary)

Properties

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