ASTBaseParentNode represents a parent node that has some child nodes.

interface ASTBaseParentNode<STMT> {
    children: STMT[];
    type: ASTType;
}

Type Parameters

Hierarchy (view full)

Properties

Properties

children: STMT[]
type: ASTType

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

Generated using TypeDoc