diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2019-10-20 15:19:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-20 15:19:19 +0800 |
commit | 9199ab584667357122637df49eb96919b0a04eb8 (patch) | |
tree | ec987b4e53d8bce478636e6f89064e99e5e010f9 /test | |
parent | ca6dce43feb9d92cb5004c6ee4d5b2e0b4336d93 (diff) | |
download | tracifyjs-9199ab584667357122637df49eb96919b0a04eb8.tar.gz tracifyjs-9199ab584667357122637df49eb96919b0a04eb8.zip |
minor tweaks (#3502)
Diffstat (limited to 'test')
-rw-r--r-- | test/compress/reduce_vars.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compress/reduce_vars.js b/test/compress/reduce_vars.js index 1796ecbe..7bf7508a 100644 --- a/test/compress/reduce_vars.js +++ b/test/compress/reduce_vars.js @@ -4947,7 +4947,7 @@ defun_single_use_loop: { unused: true, } input: { - for (var x, i = 2; --i >= 0; ) { + for (var x, i = 2; --i >= 0;) { var y = x; x = f; console.log(x === y); @@ -4955,7 +4955,7 @@ defun_single_use_loop: { function f() {}; } expect: { - for (var x, i = 2; --i >= 0; ) { + for (var x, i = 2; --i >= 0;) { var y = x; x = f; console.log(x === y); |