diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2021-02-23 21:57:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-24 05:57:11 +0800 |
commit | c88566034756eb17c4ff563901b3a1c95b63f788 (patch) | |
tree | 24e376db8595b8152b2685708ee08b7f9e194758 /test/compress/templates.js | |
parent | d68d155f93a355a9f6f0451150186b7fad8c58b8 (diff) | |
download | tracifyjs-c88566034756eb17c4ff563901b3a1c95b63f788.tar.gz tracifyjs-c88566034756eb17c4ff563901b3a1c95b63f788.zip |
support nullish coalescing operator (#4678)
Diffstat (limited to 'test/compress/templates.js')
-rw-r--r-- | test/compress/templates.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/compress/templates.js b/test/compress/templates.js index d9e95975..b75dc7d7 100644 --- a/test/compress/templates.js +++ b/test/compress/templates.js @@ -53,7 +53,7 @@ tagged_chain: { node_version: ">=4" } -tag_parenthesis_arrow: { +tag_parentheses_arrow: { input: { console.log((s => s.raw[0])`\tPASS`.slice(2)); } @@ -62,7 +62,7 @@ tag_parenthesis_arrow: { node_version: ">=4" } -tag_parenthesis_new: { +tag_parentheses_new: { input: { (new function() { return console.log; |