Ejemplo n.º 1
0
 public ForNode(StatementNode initialization, ExpressionNode condition, StatementNode afterthought, BlockNode body, Token token, int tokenIndex) : base(token, tokenIndex)
 {
     Initialization = initialization;
     Condition = condition;
     Afterthought = afterthought;
     Body = body;
 }
Ejemplo n.º 2
0
 public BlockNode(StatementNode[] statements, Token token, int tokenIndex) : base(token, tokenIndex)
 {
     Statements = statements;
 }