Skip to main content

Class: IncludeTag

A class that implements the Tag interface is responsible for parsing one or more tokens from a token stream, and returning an ast.Node to be added into the abstract syntax tree.

Implements

Constructors

new IncludeTag()

new IncludeTag(): IncludeTag

Returns

IncludeTag

Properties

block

readonly block: false = false

Defined in

src/builtin/tags/include.ts:32


name

readonly name: string = "include"

Defined in

src/builtin/tags/include.ts:33


nodeClass

protected nodeClass: typeof IncludeNode = IncludeNode

Defined in

src/builtin/tags/include.ts:34

Methods

parse()

parse(stream): Node

Create a syntax tree node by parsing tokens from the token stream.

If implementing a block tag (one with a start and end tag), the stream should be left with the end tag as its current token.

Parameters

stream: TokenStream

A stream of template tokens.

Returns

Node

Implementation of

Tag.parse

Defined in

src/builtin/tags/include.ts:46


parseArgument()

protected parseArgument(stream): [string, Expression]

Parameters

stream: ExpressionTokenStream

Returns

[string, Expression]

Defined in

src/builtin/tags/include.ts:36