Interface GeneralStatementUpdatedNode<T>

Syntax node representing an execution keyword such as return, break, continue, etc.s

interface GeneralStatementUpdatedNode<T> {
    argument?: UpdatedSyntaxNode<T>;
    changed?: true;
    created?: true;
    description?: string;
    name?: string;
    range?: Range;
    ref?: T;
    removed?: true;
    type: ReturnStatement | BreakStatement | ContinueStatement;
}

Type Parameters

  • T

Hierarchy (View Summary)

Properties

argument?: UpdatedSyntaxNode<T>

The argument of the statement.

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.

The type of the syntax node.