diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-01-15 21:33:17 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-01-15 21:33:17 -0800 |
commit | 7600935358ca7b783f5803200b142b50f39ce17a (patch) | |
tree | 31b1cdab3420cc45eed652efd5a0466ab4fc8554 /tests | |
parent | c7cb560f9325adf022aff445e14d71d99ca80deb (diff) | |
parent | 375761d4a5f514f7de05efb134037bd6a6923831 (diff) |
Merge pull request #2016 from rfk/rfk/minify-names-separately
Split name-minification into a separate pass from registerization.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index 00c42418..5e5dd7a6 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -1721,7 +1721,7 @@ f.close() (path_from_root('tools', 'test-js-optimizer-asm-regs.js'), open(path_from_root('tools', 'test-js-optimizer-asm-regs-output.js')).read(), ['asm', 'registerize']), (path_from_root('tools', 'test-js-optimizer-asm-regs-min.js'), open(path_from_root('tools', 'test-js-optimizer-asm-regs-min-output.js')).read(), - ['asm', 'registerize']), + ['asm', 'registerize', 'minifyLocals']), (path_from_root('tools', 'test-js-optimizer-asm-pre.js'), open(path_from_root('tools', 'test-js-optimizer-asm-pre-output.js')).read(), ['asm', 'simplifyExpressions']), (path_from_root('tools', 'test-js-optimizer-asm-last.js'), open(path_from_root('tools', 'test-js-optimizer-asm-last-output.js')).read(), |