Interface TwingMethodCallNode

interface TwingMethodCallNode {
    attributes: TwingBaseNodeAttributes & {
        methodName: string;
        shouldTestExistence: boolean;
    };
    children: {
        arguments: TwingArrayNode;
        operand: TwingBaseNode<any, {
            name: string;
        }, TwingBaseNodeChildren>;
    };
    column: number;
    line: number;
    tag: null | string;
    type: "method_call";
}

Hierarchy (view full)

Properties

attributes: TwingBaseNodeAttributes & {
    methodName: string;
    shouldTestExistence: boolean;
}
children: {
    arguments: TwingArrayNode;
    operand: TwingBaseNode<any, {
        name: string;
    }, TwingBaseNodeChildren>;
}
column: number
line: number
tag: null | string
type: "method_call"