Interface TwingAttributeAccessorNode

interface TwingAttributeAccessorNode {
    attributes: TwingBaseNodeAttributes & {
        isOptimizable: boolean;
        shouldIgnoreStrictCheck?: boolean;
        shouldTestExistence: boolean;
        type: TwingAttributeAccessorCallType;
    };
    children: TwingAttributeAccessorNodeChildren;
    column: number;
    line: number;
    tag: null | string;
    type: "attribute_accessor";
}

Hierarchy (view full)

Properties

attributes: TwingBaseNodeAttributes & {
    isOptimizable: boolean;
    shouldIgnoreStrictCheck?: boolean;
    shouldTestExistence: boolean;
    type: TwingAttributeAccessorCallType;
}
column: number
line: number
tag: null | string
type: "attribute_accessor"