Interface WhileStatementNode<T, S>

Syntax node representing a while loop statement.

interface WhileStatementNode<T, S extends SyntaxNode<T> = SyntaxNode<T>> {
    name?: string;
    test: S;
    type: WhileStatement;
}

Type Parameters

Hierarchy (View Summary)

Properties

Properties

name?: string

A descriptive name for the syntax node.

test: S

The test condition of the loop header.

The type of the syntax node.