Skip to main content

Class: ContinueNode

Implements

Constructors

new ContinueNode()

new ContinueNode(token): ContinueNode

Parameters

token: Token

The token that started this node. Used to add line and column numbers to error messages.

Returns

ContinueNode

Defined in

src/builtin/tags/for.ts:97

Properties

token

readonly token: Token

The token that started this node. Used to add line and column numbers to error messages.

Implementation of

Node.token

Defined in

src/builtin/tags/for.ts:97

Methods

children()

children(): ChildNode[]

Return an array of child nodes.

Returns

ChildNode[]

Implementation of

Node.children

Defined in

src/builtin/tags/for.ts:111


render()

render(): Promise<void>

Render this node to the given output stream.

Returns

Promise<void>

Implementation of

Node.render

Defined in

src/builtin/tags/for.ts:103


renderSync()

renderSync(): void

A synchronous version of render.

Returns

void

See

render

Implementation of

Node.renderSync

Defined in

src/builtin/tags/for.ts:107


toString()

toString(): string

Returns a string representation of an object.

Returns

string

Defined in

src/builtin/tags/for.ts:99