dmildew v0.5.2 (2021-02-18T19:29:38Z)
Dub
Repo
ForStatementNode
mildew
nodes
Undocumented in source.
package
class
ForStatementNode :
StatementNode
{
this
(size_t lineNo, VarDeclarationStatementNode decl, ExpressionNode condition, ExpressionNode increment, StatementNode bnode, string lbl);
Variant
accept
(IStatementVisitor visitor);
string
toString
();
VarDeclarationStatementNode
varDeclarationStatement
;
ExpressionNode
conditionNode
;
ExpressionNode
incrementNode
;
StatementNode
bodyNode
;
string
label
;
}
Constructors
this
this
(size_t lineNo, VarDeclarationStatementNode decl, ExpressionNode condition, ExpressionNode increment, StatementNode bnode, string lbl)
Undocumented in source.
Members
Functions
accept
Variant
accept
(IStatementVisitor visitor)
Undocumented in source. Be warned that the author may not have intended to support it.
toString
string
toString
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
bodyNode
StatementNode
bodyNode
;
Undocumented in source.
conditionNode
ExpressionNode
conditionNode
;
Undocumented in source.
incrementNode
ExpressionNode
incrementNode
;
Undocumented in source.
label
string
label
;
Undocumented in source.
varDeclarationStatement
VarDeclarationStatementNode
varDeclarationStatement
;
Undocumented in source.
Inherited Members
From StatementNode
accept
Variant
accept
(IStatementVisitor visitor)
Undocumented in source.
toString
string
toString
()
Undocumented in source. Be warned that the author may not have intended to support it.
line
size_t
line
;
Undocumented in source.
Meta
Source
See Implementation
mildew
nodes
classes
ArrayIndexNode
ArrayLiteralNode
BinaryOpNode
BlockStatementNode
BreakStatementNode
ClassDeclarationStatementNode
ClassDefinition
ClassLiteralNode
ContinueStatementNode
DeleteStatementNode
DoWhileStatementNode
ExpressionNode
ExpressionStatementNode
ForOfStatementNode
ForStatementNode
FunctionCallNode
FunctionDeclarationStatementNode
FunctionLiteralNode
IfStatementNode
LambdaNode
LiteralNode
MemberAccessNode
NewExpressionNode
ObjectLiteralNode
PostfixOpNode
ReturnStatementNode
StatementNode
SuperNode
SwitchBody
SwitchStatementNode
TemplateStringNode
TerniaryOpNode
ThrowStatementNode
TryCatchBlockStatementNode
UnaryOpNode
VarAccessNode
VarDeclarationStatementNode
WhileStatementNode
YieldNode