Interface GenericUpdatedNode<T>

Syntax node representing a generic node, that is not included in SyntaxNodeType.

interface GenericUpdatedNode<T> {
    changed?: true;
    created?: true;
    description?: string;
    name?: string;
    range?: Range;
    ref?: T;
    removed?: true;
    type: Generic;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

changed?: true

Wether the syntax node has been updated.

created?: true

Wether the syntax node has been added.

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.

removed?: true

Wether the syntax node has been removed.

type: Generic

The type of the syntax node.