Interface IndexAccess

interface IndexAccess {
    argumentTypes?: null | TypeDescriptions[];
    baseExpression: Expression;
    id: number;
    indexExpression?: null | Expression;
    isConstant: boolean;
    isLValue: boolean;
    isPure: boolean;
    lValueRequested: boolean;
    nodeType: "IndexAccess";
    src: string;
    typeDescriptions: TypeDescriptions;
}

Properties

argumentTypes?: null | TypeDescriptions[]
baseExpression: Expression
id: number
indexExpression?: null | Expression
isConstant: boolean
isLValue: boolean
isPure: boolean
lValueRequested: boolean
nodeType: "IndexAccess"
src: string
typeDescriptions: TypeDescriptions