Interface FunctionCallOptions

interface FunctionCallOptions {
    argumentTypes?: null | TypeDescriptions[];
    expression: Expression;
    id: number;
    isConstant: boolean;
    isLValue?: boolean;
    isPure: boolean;
    lValueRequested: boolean;
    names: string[];
    nodeType: "FunctionCallOptions";
    options: Expression[];
    src: string;
    typeDescriptions: TypeDescriptions;
}

Properties

argumentTypes?: null | TypeDescriptions[]
expression: Expression
id: number
isConstant: boolean
isLValue?: boolean
isPure: boolean
lValueRequested: boolean
names: string[]
nodeType: "FunctionCallOptions"
options: Expression[]
src: string
typeDescriptions: TypeDescriptions