diff options
Diffstat (limited to 'test/compress/transform.js')
-rw-r--r-- | test/compress/transform.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/compress/transform.js b/test/compress/transform.js index 68d33844..58874cd6 100644 --- a/test/compress/transform.js +++ b/test/compress/transform.js @@ -104,6 +104,7 @@ if_return: { conditionals: true, if_return: true, sequences: true, + side_effects: true, } input: { function f(w, x, y, z) { @@ -124,7 +125,7 @@ if_return: { if (w) { if (y) return; } else if (z) return; - return x == y || (x && w(), y && z(), !0); + return x == y || (x && w(), y && z()), !0; } } } |