diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-11-06 11:39:41 +0200 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-11-06 18:19:51 +0200 |
commit | a4f6d46118c0d9d1d84a9238d8ef4e57279caac3 (patch) | |
tree | 4e6f35eaaba2d860ae6f86d0e2e691ef9e73bc40 /bin | |
parent | 7f5f4d60b70909d21e0111d2c900ba0f5993b374 (diff) | |
download | tracifyjs-a4f6d46118c0d9d1d84a9238d8ef4e57279caac3.tar.gz tracifyjs-a4f6d46118c0d9d1d84a9238d8ef4e57279caac3.zip |
add option to mangle names even if eval/with is in use
(for more fair comparison to Closure compiler)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/uglifyjs2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/uglifyjs2 b/bin/uglifyjs2 index aadda7cf..1706629c 100755 --- a/bin/uglifyjs2 +++ b/bin/uglifyjs2 @@ -252,7 +252,7 @@ if (SCOPE_IS_NEEDED) { time_it("scope", function(){ TOPLEVEL.figure_out_scope(); if (MANGLE) { - TOPLEVEL.compute_char_frequency(); + TOPLEVEL.compute_char_frequency(MANGLE); } }); } |