JavaScript: Add more statements to test cases for DuplicateToplevel.

Now both `a.js` and `b.js` have ten (non-block) statements, which allows for more interesting tests.
This commit is contained in:
Max Schaefer
2019-01-25 22:42:51 +08:00
parent 740acc12e8
commit 39191ed6f1
2 changed files with 6 additions and 0 deletions

View File

@@ -7,4 +7,7 @@
arguments[0]--;
arguments[1] += 19;
arguments[0] * arguments[1];
arguments[2] / arguments[3];
arguments[4] % arguments[5];
arguments[6] % arguments[7];
}

View File

@@ -7,4 +7,7 @@
arguments[0]--;
arguments[1] += 19;
arguments[0] * arguments[1];
arguments[2] / arguments[3];
arguments[4] % arguments[5];
arguments[6] % arguments[7];
}