Interface DoWhileStatementNode<T, S>

Syntax node representing a do-while loop statement.

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

Type Parameters

Hierarchy (View Summary)

Properties

Properties

name?: string

A descriptive name for the syntax node.

test: S

The test condition of the loop footer.

The type of the syntax node.