Interface ForStatementNode<T, S>

Syntax node representing a for loop statement.

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

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.