aboutsummaryrefslogtreecommitdiff
path: root/test/compress/new.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/new.js')
-rw-r--r--test/compress/new.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/compress/new.js b/test/compress/new.js
index 4b2c51c3..d956ae27 100644
--- a/test/compress/new.js
+++ b/test/compress/new.js
@@ -10,3 +10,11 @@ new_statement: {
}
expect_exact: "new x(1);new x(1)(2);new x(1)(2)(3);new new x(1);new new x(1)(2);new new x(1)(2);(new new x(1))(2);"
}
+
+new_with_rewritten_true_value: {
+ options = { booleans: true }
+ input: {
+ new true;
+ }
+ expect_exact: "new(!0);"
+}