UglifyJS/test/compress
2017-04-18 01:44:23 +08:00
..
arrays.js improve string concatenation 2017-02-21 13:29:57 +08:00
ascii.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
asm.js implement optimization: (x = 2 * x) ---> (x *= 2) 2016-08-30 08:43:02 -04:00
assignment.js implement optimization: (x = 2 * x) ---> (x *= 2) 2016-08-30 08:43:02 -04:00
blocks.js
collapse_vars.js improve pure_getters (#1786) 2017-04-06 11:18:59 +08:00
comparing.js
concat-strings.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
conditionals.js convert AST_Seq from binary tree to array (#1460) 2017-04-12 21:56:27 +08:00
const.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
dead-code.js optimize try-catch-finally (#1731) 2017-03-30 12:16:58 +08:00
debugger.js
drop-console.js Add .gitattributes to checkout lf eol style 2017-02-21 13:29:58 +08:00
drop-unused.js compress duplicated variable definitions (#1817) 2017-04-17 17:11:29 +08:00
evaluate.js convert AST_Seq from binary tree to array (#1460) 2017-04-12 21:56:27 +08:00
functions.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
global_defs.js fix a couple of bugs in global_defs (#1802) 2017-04-08 16:46:25 +08:00
hoist_vars.js fix duplicated test names 2017-02-21 13:29:58 +08:00
html_comments.js throw parse error on invalid assignments (#1627) 2017-03-21 14:11:32 +08:00
if_return.js Improve optimizing function() { if(c){return foo} bar();} 2017-02-18 18:56:18 +08:00
issue-12.js
issue-22.js
issue-44.js
issue-59.js
issue-126.js
issue-143.js
issue-208.js enhance global_defs 2017-02-21 13:29:58 +08:00
issue-267.js
issue-269.js
issue-368.js fixup for #1553 (#1555) 2017-03-05 17:15:37 +08:00
issue-597.js improve compression of undefined, NaN & Infinitiy (#1748) 2017-04-01 03:02:14 +08:00
issue-611.js
issue-637.js
issue-640.js convert AST_Seq from binary tree to array (#1460) 2017-04-12 21:56:27 +08:00
issue-747.js
issue-751.js
issue-782.js
issue-892.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
issue-913.js
issue-973.js make collapse_vars consistent with toplevel (#1608) 2017-03-16 13:22:26 +08:00
issue-976.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
issue-979.js Improve optimizing function() { if(c){return foo} bar();} 2017-02-18 18:56:18 +08:00
issue-1034.js introduce compressor.info() (#1633) 2017-03-23 06:49:49 +08:00
issue-1041.js enable collapse_vars & reduce_vars by default 2017-02-24 01:46:57 +08:00
issue-1052.js
issue-1105.js improve compression of undefined, NaN & Infinitiy (#1748) 2017-04-01 03:02:14 +08:00
issue-1202.js fix top-level directives in compress tests (#1615) 2017-03-18 01:56:15 +08:00
issue-1261.js combine rules for binary boolean operations (#1744) 2017-03-31 18:47:44 +08:00
issue-1275.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
issue-1321.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
issue-1431.js fix corner case in keep_fnames 2017-02-18 19:00:54 +08:00
issue-1443.js improve unsafe on undefined (#1548) 2017-03-05 13:09:27 +08:00
issue-1446.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
issue-1447.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
issue-1569.js fix return from recursive IIFE (#1570) 2017-03-08 03:31:51 +08:00
issue-1588.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
issue-1609.js implement delayed resolution for reduce_vars (#1788) 2017-04-05 21:06:42 +08:00
issue-1639.js fix assignment substitution in sequences (#1643) 2017-03-24 14:30:31 +08:00
issue-1656.js fix variable substitution (#1816) 2017-04-16 17:25:39 +08:00
issue-1673.js optimize try-catch-finally (#1731) 2017-03-30 12:16:58 +08:00
issue-1704.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
issue-1733.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
issue-1750.js fix corner case in switch (#1765) 2017-04-02 17:07:20 +08:00
issue-1770.js exclude mangling of special property names (#1779) 2017-04-04 03:50:19 +08:00
issue-1787.js implement delayed resolution for reduce_vars (#1788) 2017-04-05 21:06:42 +08:00
labels.js make expect_stdout work on Node.js 0.12 (#1623) 2017-03-19 12:00:32 +08:00
loops.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
max_line_len.js support multi-line string in tests (#1590) 2017-03-10 11:27:30 +08:00
negate-iife.js fix typeof side effects (#1696) 2017-03-27 04:37:42 +08:00
new.js
numbers.js improve compression of undefined, NaN & Infinitiy (#1748) 2017-04-01 03:02:14 +08:00
properties.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
pure_funcs.js fix pure_funcs & improve side_effects 2017-02-21 13:31:59 +08:00
pure_getters.js fix pure_getters for chained property access (#1798) 2017-04-07 17:06:01 +08:00
reduce_vars.js fix reduce_vars on conditionals (#1822) 2017-04-18 01:44:23 +08:00
return_undefined.js
screw-ie8.js unify CLI & API under minify() (#1811) 2017-04-15 23:50:50 +08:00
sequences.js convert AST_Seq from binary tree to array (#1460) 2017-04-12 21:56:27 +08:00
string-literal.js
switch.js fix corner cases in switch and undefined (#1762) 2017-04-02 14:52:25 +08:00
transform.js fix expect_stdout (#1642) 2017-03-24 13:19:50 +08:00
typeof.js fix typeof side-effects (#1669) 2017-03-25 17:40:18 +08:00
unicode.js
wrap_iife.js Remove console.log and add extra test case 2016-10-06 14:11:32 +02:00