Interface IndexRangeAccess

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

Properties

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