This commit is contained in:
Fábio Santos
2015-04-13 01:25:46 +01:00
committed by Richard van Velzen
parent ad344c5be3
commit 9d7d365c2b
3 changed files with 30 additions and 4 deletions

View File

@@ -262,6 +262,10 @@ var AST_ForIn = DEFNODE("ForIn", "init name object", {
}
}, AST_IterationStatement);
var AST_ForOf = DEFNODE("ForOf", null, {
$documentation: "A `for ... of` statement",
}, AST_ForIn);
var AST_With = DEFNODE("With", "expression", {
$documentation: "A `with` statement",
$propdoc: {