aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Lam S.L <alexlamsl@gmail.com>2021-02-09 06:21:15 +0000
committerGitHub <noreply@github.com>2021-02-09 14:21:15 +0800
commit14fedbf123a5d8a86621ac6aa996042ee0011b47 (patch)
tree4edc82f707dc9a66f316c6d05ad4fabffbe8fb6d
parentfcee32527bd251febeb7b45251d33756fcee207e (diff)
downloadtracifyjs-14fedbf123a5d8a86621ac6aa996042ee0011b47.tar.gz
tracifyjs-14fedbf123a5d8a86621ac6aa996042ee0011b47.zip
fix corner case with template literals (#4631)
fixes #4630
-rw-r--r--lib/parse.js1
-rw-r--r--test/compress/templates.js15
2 files changed, 16 insertions, 0 deletions
diff --git a/lib/parse.js b/lib/parse.js
index c8f63d80..b926f188 100644
--- a/lib/parse.js
+++ b/lib/parse.js
@@ -249,6 +249,7 @@ function tokenizer($TEXT, filename, html5_comments, shebang) {
if (peek() == "{") {
next();
strings.push(s);
+ S.regex_allowed = true;
return true;
}
}
diff --git a/test/compress/templates.js b/test/compress/templates.js
index 0be46df0..8ea4d396 100644
--- a/test/compress/templates.js
+++ b/test/compress/templates.js
@@ -283,3 +283,18 @@ issue_4606: {
expect_stdout: "undefined \r \\ `"
node_version: ">=4"
}
+
+issue_4630: {
+ options = {
+ evaluate: true,
+ templates: true,
+ }
+ input: {
+ console.log(`${/PASS/}`);
+ }
+ expect: {
+ console.log("/PASS/");
+ }
+ expect_stdout: "/PASS/"
+ node_version: ">=4"
+}