(Position position, Expression lhs, Expression rhs, Statement body)
| 508 | } |
| 509 | |
| 510 | public ForExprOfStatement forOfStatement(Position position, Expression lhs, Expression rhs, Statement body) { |
| 511 | return new ForExprOfStatement(position, lhs, rhs, body); |
| 512 | } |
| 513 | |
| 514 | public ForVarDeclInStatement forInStatement(Position position, VariableDeclaration decl, Expression rhs, Statement body) { |
| 515 | return new ForVarDeclInStatement(position, decl, rhs, body); |