Interface EmptyRefNode<T>

Syntax node representing an noop statement.

interface EmptyRefNode<T> {
    description?: string;
    name?: string;
    range: Range;
    ref: T;
    type: Empty;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

description?: string

Additional description for the syntax node.

name?: string

A descriptive name for the syntax node.

range: Range

The range of the code represented by the syntax node.

ref: T

The original syntax node.

type: Empty

The type of the syntax node.