diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2020-12-18 02:12:01 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-18 10:12:01 +0800 |
commit | 1b646d3bc4bd69cbe12fb14def7716edde01a3c4 (patch) | |
tree | a90303e6c683dec344cf052f2ddc0c8e64b56c67 /lib/ast.js | |
parent | 82d2aa4acf1eea742a3b1041223a74b5960d4bfd (diff) | |
download | tracifyjs-1b646d3bc4bd69cbe12fb14def7716edde01a3c4.tar.gz tracifyjs-1b646d3bc4bd69cbe12fb14def7716edde01a3c4.zip |
fix corner case in `arguments` (#4400)
fixes #4399
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1314,7 +1314,7 @@ var AST_Label = DEFNODE("Label", "references", { } }, AST_Symbol); -var AST_SymbolRef = DEFNODE("SymbolRef", "fixed", { +var AST_SymbolRef = DEFNODE("SymbolRef", "fixed in_arg", { $documentation: "Reference to some symbol (not definition/declaration)", }, AST_Symbol); |