fix corner case in `inline` & `sequences` (#4718)
authorAlex Lam S.L <alexlamsl@gmail.com>
Tue, 2 Mar 2021 09:39:34 +0000 (09:39 +0000)
committerGitHub <noreply@github.com>
Tue, 2 Mar 2021 09:39:34 +0000 (17:39 +0800)
fixes #4717

lib/compress.js
test/compress/awaits.js

index ad4c680..e5e822a 100644 (file)
@@ -3126,7 +3126,7 @@ merge(Compressor.prototype, {
                 if (prev) {
                     if (stat instanceof AST_Exit) {
                         if (stat.value || !in_async_generator(scope)) {
-                            stat.value = cons_seq(stat.value || make_node(AST_Undefined, stat)).transform(compressor);
+                            stat.value = cons_seq(stat.value || make_node(AST_Undefined, stat)).optimize(compressor);
                         }
                     } else if (stat instanceof AST_For) {
                         if (!(stat.init instanceof AST_Definitions)) {
index 7773599..974134c 100644 (file)
@@ -1246,3 +1246,37 @@ issue_4618: {
     expect_stdout: "function"
     node_version: ">=8"
 }
+
+issue_4717: {
+    options = {
+        inline: true,
+        reduce_vars: true,
+        sequences: true,
+        side_effects: true,
+        unused: true,
+    }
+    input: {
+        (function() {
+            async function f() {
+                var a = function() {
+                    await;
+                }();
+                return "FAIL";
+            }
+            return f();
+        })().then(console.log).catch(function() {
+            console.log("PASS");
+        });
+    }
+    expect: {
+        (async function() {
+            return function() {
+                await;
+            }(), "FAIL";
+        })().then(console.log).catch(function() {
+            console.log("PASS");
+        });
+    }
+    expect_stdout: "PASS"
+    node_version: ">=8"
+}