Interface SyntaxNode<T>

A syntax node that represents a section of code.

interface SyntaxNode<T> {
    name?: string;
    type: SyntaxNodeType;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

Properties

name?: string

A descriptive name for the syntax node.

The type of the syntax node.