diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-05-12 14:57:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-12 14:57:41 +0800 |
commit | c391576d52852322a7fcfbaeabc9d5626e628c8b (patch) | |
tree | e0f27ac065ec9340bcd5bcd152f8714cf79fdcc9 /test/compress/issue-1041.js | |
parent | ac73c5d4211b9ecff0f9650a032e964ef1cad585 (diff) | |
download | tracifyjs-c391576d52852322a7fcfbaeabc9d5626e628c8b.tar.gz tracifyjs-c391576d52852322a7fcfbaeabc9d5626e628c8b.zip |
remove support for `const` (#1910)
As this is not part of ES5.
Diffstat (limited to 'test/compress/issue-1041.js')
-rw-r--r-- | test/compress/issue-1041.js | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/test/compress/issue-1041.js b/test/compress/issue-1041.js index cdbc22cc..cc351405 100644 --- a/test/compress/issue-1041.js +++ b/test/compress/issue-1041.js @@ -1,16 +1,3 @@ -const_declaration: { - options = { - evaluate: true - }; - - input: { - const goog = goog || {}; - } - expect: { - const goog = goog || {}; - } -} - const_pragma: { options = { evaluate: true, |