From 0a42457df64944187a069b26491fcebd8ce55ce0 Mon Sep 17 00:00:00 2001 From: "Alex Lam S.L" Date: Sat, 27 Feb 2021 01:26:15 +0000 Subject: fix corner case with `arguments` (#4697) fixes #4696 --- lib/ast.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/ast.js') diff --git a/lib/ast.js b/lib/ast.js index 5fe6efc1..1aee1044 100644 --- a/lib/ast.js +++ b/lib/ast.js @@ -428,7 +428,7 @@ var AST_For = DEFNODE("For", "init condition step", { }, AST_IterationStatement); var AST_ForEnumeration = DEFNODE("ForEnumeration", "init object", { - $documentation: "Base class for enumeration loops, i.e. `for ... in`, `for ... of` & `for await ... of`", + $documentation: "Base class for enumeration loops, i.e. `for ... in`, `for ... of` & `for await ... of`", $propdoc: { init: "[AST_Node] the assignment target during iteration", object: "[AST_Node] the object to iterate over" -- cgit v1.2.3