Interface MemberAccess

interface MemberAccess {
    argumentTypes?: null | TypeDescriptions[];
    expression: Expression;
    id: number;
    isConstant: boolean;
    isLValue: boolean;
    isPure: boolean;
    lValueRequested: boolean;
    memberLocation?: string;
    memberName: string;
    nodeType: "MemberAccess";
    referencedDeclaration?: null | number;
    src: string;
    typeDescriptions: TypeDescriptions;
}

Properties

argumentTypes?: null | TypeDescriptions[]
expression: Expression
id: number
isConstant: boolean
isLValue: boolean
isPure: boolean
lValueRequested: boolean
memberLocation?: string
memberName: string
nodeType: "MemberAccess"
referencedDeclaration?: null | number
src: string
typeDescriptions: TypeDescriptions