diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-08-01 02:38:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-01 02:38:32 +0800 |
commit | e7c21e87e3a3d1c9700941ecdf97a2a50fa2ae66 (patch) | |
tree | 4a30c2032592bc18639e73a854cebb2d2633af50 /lib/scope.js | |
parent | c4c2ef44d0b3238098888b6ea3941f831947b10b (diff) | |
download | tracifyjs-e7c21e87e3a3d1c9700941ecdf97a2a50fa2ae66.tar.gz tracifyjs-e7c21e87e3a3d1c9700941ecdf97a2a50fa2ae66.zip |
fix `ie8` mangling of top-level `AST_SymbolCatch` (#2263)
fixes #2254
Diffstat (limited to 'lib/scope.js')
-rw-r--r-- | lib/scope.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/scope.js b/lib/scope.js index df7b2076..8e766a56 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -235,6 +235,7 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options){ ref.reference(options); }); node.thedef = def; + node.reference(options); return true; } })); |