Class: TableRowNode
Implements
Constructors
new TableRowNode()
new TableRowNode(
token,expression,block):TableRowNode
Parameters
• token: Token
The token that started this node. Used to add line and column numbers to error messages.
• expression: LoopExpression
• block: BlockNode
Returns
Defined in
src/builtin/tags/tablerow.ts:38
Properties
block
readonlyblock:BlockNode
Defined in
src/builtin/tags/tablerow.ts:41
expression
readonlyexpression:LoopExpression
Defined in
src/builtin/tags/tablerow.ts:40
token
readonlytoken:Token
The token that started this node. Used to add line and column numbers to error messages.
Implementation of
Defined in
src/builtin/tags/tablerow.ts:39
Methods
children()
children():
ChildNode[]
Return an array of child nodes.
Returns
Implementation of
Defined in
src/builtin/tags/tablerow.ts:121
render()
render(
context,out):Promise<void>
Render this node to the given output stream.
Parameters
• context: RenderContext
The active render context.
• out: RenderStream
The stream to output to.
Returns
Promise<void>
Implementation of
Defined in
src/builtin/tags/tablerow.ts:44
renderSync()
renderSync(
context,out):void
A synchronous version of render.
Parameters
• context: RenderContext
• out: RenderStream
Returns
void