aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2019-10-20 15:19:19 +0800
committerGitHub <noreply@github.com>2019-10-20 15:19:19 +0800
commit9199ab584667357122637df49eb96919b0a04eb8 (patch)
treeec987b4e53d8bce478636e6f89064e99e5e010f9 /test
parentca6dce43feb9d92cb5004c6ee4d5b2e0b4336d93 (diff)
downloadtracifyjs-9199ab584667357122637df49eb96919b0a04eb8.tar.gz
tracifyjs-9199ab584667357122637df49eb96919b0a04eb8.zip
minor tweaks (#3502)
Diffstat (limited to 'test')
-rw-r--r--test/compress/reduce_vars.js4
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);