diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-06-27 23:53:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-27 23:53:42 +0800 |
commit | f0a99125eef4a95a3c4bead81b3bf9a99b207019 (patch) | |
tree | ef1ddd4d767477cacc095e7a22c71ef71cc9071b /test/compress | |
parent | 1e4de2e6d31a50dafee4a4e4d020f22691d22292 (diff) | |
download | tracifyjs-f0a99125eef4a95a3c4bead81b3bf9a99b207019.tar.gz tracifyjs-f0a99125eef4a95a3c4bead81b3bf9a99b207019.zip |
improve `unsafe_Func` (#2171)
- minimise disturbance to `compute_char_frequency()`
- remove extraneous quotation marks
Diffstat (limited to 'test/compress')
-rw-r--r-- | test/compress/functions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/compress/functions.js b/test/compress/functions.js index b5def8e1..c8efc12c 100644 --- a/test/compress/functions.js +++ b/test/compress/functions.js @@ -265,7 +265,7 @@ issue_203: { } expect: { var m = {}; - var fn = Function("n", "o", "o.exports=42"); + var fn = Function("n,o", "o.exports=42"); fn(null, m, m.exports); console.log(m.exports); } |