Interface DoWhileStatementRefNode<T>

Syntax node representing a do-while loop statement.

interface DoWhileStatementRefNode<T> {
    description?: string;
    name?: string;
    range: Range;
    ref: T;
    test: RefSyntaxNode<T>;
    type: DoWhileStatement;
}

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.

The test condition of the loop footer.

The type of the syntax node.