NodeRefGroupASTNode is a type of AST node that represents a group of nodes referenced together.

interface NodeRefGroupASTNode {
    children: NodeRefASTNode[];
    location?: FileRange;
    type: "NodeRefGroup";
}

Hierarchy (view full)

Properties

children: NodeRefASTNode[]
location?: FileRange

The start and end location of the AST object.

type: "NodeRefGroup"

Every leaf interface that extends ASTBaseNode must specify a type property.

Generated using TypeDoc