MCPcopy Create free account
hub / github.com/dynjs/dynjs / forInStatement

Method forInStatement

src/main/java/org/dynjs/parser/js/ASTFactory.java:506–508  ·  view source on GitHub ↗
(Position position, Expression lhs, Expression rhs, Statement body)

Source from the content-addressed store, hash-verified

504 }
505
506 public ForExprInStatement forInStatement(Position position, Expression lhs, Expression rhs, Statement body) {
507 return new ForExprInStatement(position, lhs, rhs, body);
508 }
509
510 public ForExprOfStatement forOfStatement(Position position, Expression lhs, Expression rhs, Statement body) {
511 return new ForExprOfStatement(position, lhs, rhs, body);

Callers 1

forStatementMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected