diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-01-01 13:52:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 21:52:14 +0800 |
commit | 0417a69c3ef4922470b6891ad6039221059f5750 (patch) | |
tree | 5329008311c7303f54bc821aace798b7c47dd8e1 /lib/ast.js | |
parent | 2dbafbb4ee9c5cb82665299ee9343c80e96daad4 (diff) | |
download | tracifyjs-0417a69c3ef4922470b6891ad6039221059f5750.tar.gz tracifyjs-0417a69c3ef4922470b6891ad6039221059f5750.zip |
enhance `collapse_vars` & `dead_code` (#4491)
Diffstat (limited to 'lib/ast.js')
-rw-r--r-- | lib/ast.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1342,7 +1342,7 @@ var AST_Label = DEFNODE("Label", "references", { } }, AST_Symbol); -var AST_SymbolRef = DEFNODE("SymbolRef", "fixed in_arg", { +var AST_SymbolRef = DEFNODE("SymbolRef", "fixed in_arg redef", { $documentation: "Reference to some symbol (not definition/declaration)", }, AST_Symbol); |