aboutsummaryrefslogtreecommitdiff
path: root/test/compress/drop-unused.js
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2017-06-04 19:27:43 +0800
committerGitHub <noreply@github.com>2017-06-04 19:27:43 +0800
commit540220b91bb02d50d04422dc782a5fe1905dd27a (patch)
tree738cb5d7e38ca06fa8c0aed681a448c78b5f9c85 /test/compress/drop-unused.js
parent84634da4b5e581c36686082b1071fdf646775f49 (diff)
downloadtracifyjs-540220b91bb02d50d04422dc782a5fe1905dd27a.tar.gz
tracifyjs-540220b91bb02d50d04422dc782a5fe1905dd27a.zip
fix `AST_Function` scope invariance (#2052)
improve function name hack in `run_code()`
Diffstat (limited to 'test/compress/drop-unused.js')
-rw-r--r--test/compress/drop-unused.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/compress/drop-unused.js b/test/compress/drop-unused.js
index 2ef6f796..af792bfa 100644
--- a/test/compress/drop-unused.js
+++ b/test/compress/drop-unused.js
@@ -751,12 +751,12 @@ issue_1583: {
expect: {
function m(t) {
(function(e) {
- t = (function() {
- return (function(a) {
- return a;
- })(function(a) {});
- })();
- })();
+ t = e();
+ })(function() {
+ return (function(a) {
+ return a;
+ })(function(a) {});
+ });
}
}
}