Documentation
    Preparing search index...

    Interface TwingMethodCallNode

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

    Hierarchy (View Summary)

    Index

    Properties

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