Interface TupleExpression

interface TupleExpression {
    argumentTypes?: null | TypeDescriptions[];
    components: (null | Expression)[];
    id: number;
    isConstant: boolean;
    isInlineArray: boolean;
    isLValue: boolean;
    isPure: boolean;
    lValueRequested: boolean;
    nodeType: "TupleExpression";
    src: string;
    typeDescriptions: TypeDescriptions;
}

Properties

argumentTypes?: null | TypeDescriptions[]
components: (null | Expression)[]
id: number
isConstant: boolean
isInlineArray: boolean
isLValue: boolean
isPure: boolean
lValueRequested: boolean
nodeType: "TupleExpression"
src: string
typeDescriptions: TypeDescriptions