diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-02-27 01:26:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-27 09:26:15 +0800 |
commit | 0a42457df64944187a069b26491fcebd8ce55ce0 (patch) | |
tree | 346d0655d7aaf2a828c6aeb66aabedc92b57cf19 /lib/ast.js | |
parent | ba4a771bbccb0b6026588a56b0c31f5bac466775 (diff) | |
download | tracifyjs-0a42457df64944187a069b26491fcebd8ce55ce0.tar.gz tracifyjs-0a42457df64944187a069b26491fcebd8ce55ce0.zip |
fix corner case with `arguments` (#4697)
fixes #4696
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |