aboutsummaryrefslogtreecommitdiff
path: root/test/compress/issue-281.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/compress/issue-281.js')
-rw-r--r--test/compress/issue-281.js24
1 files changed, 17 insertions, 7 deletions
diff --git a/test/compress/issue-281.js b/test/compress/issue-281.js
index 9b8c8bfd..65871a84 100644
--- a/test/compress/issue-281.js
+++ b/test/compress/issue-281.js
@@ -419,7 +419,7 @@ wrap_iife_in_return_call: {
expect_exact: '(void console.log("test"))();'
}
-pure_annotation: {
+pure_annotation_1: {
options = {
inline: true,
side_effects: true,
@@ -432,6 +432,20 @@ pure_annotation: {
expect_exact: ""
}
+pure_annotation_2: {
+ options = {
+ collapse_vars: true,
+ inline: true,
+ side_effects: true,
+ }
+ input: {
+ /*@__PURE__*/(function(n) {
+ console.log("hello", n);
+ }(42));
+ }
+ expect_exact: ""
+}
+
drop_fargs: {
options = {
cascade: true,
@@ -449,9 +463,7 @@ drop_fargs: {
}
expect: {
var a = 1;
- !function() {
- a++;
- }(++a && a.var);
+ ++a && a.var, a++;
console.log(a);
}
expect_stdout: "3"
@@ -474,9 +486,7 @@ keep_fargs: {
}
expect: {
var a = 1;
- !function(a_1) {
- a++;
- }(++a && a.var);
+ ++a && a.var, a++;
console.log(a);
}
expect_stdout: "3"