Alex Lam S.L
|
a0ca595c2c
|
fix TreeWalker scan order (#3114)
fixes #3113
|
2018-05-03 00:27:45 +08:00 |
|
Alex Lam S.L
|
1a314e9f60
|
improve reduce_vars (#3112)
fixes #3110
|
2018-05-02 15:11:45 +08:00 |
|
Alex Lam S.L
|
22cea023d1
|
improve numeral compression (#3108)
|
2018-04-28 02:47:49 +08:00 |
|
Alex Lam S.L
|
70d4477e05
|
workaround vm context issue in node-chakracore (#3106)
|
2018-04-27 07:40:34 +08:00 |
|
Alex Lam S.L
|
9e87edfc2e
|
better fix for #2506 (#3099)
|
2018-04-25 04:46:07 +08:00 |
|
Alex Lam S.L
|
27211cf2d5
|
handle RHS side-effects in collapse_vars (#3097)
fixes #3096
|
2018-04-24 20:31:50 +08:00 |
|
Alex Lam S.L
|
b5ce199711
|
improve max_line_len (#3095)
fixes #304
|
2018-04-24 15:19:45 +08:00 |
|
Alex Lam S.L
|
6a916523d4
|
fix inline of catch-scoped variables (#3077)
fixes #3076
|
2018-04-11 15:44:43 +08:00 |
|
Alex Lam S.L
|
ba7069d52b
|
suppress hoist_props for embedded assignments (#3074)
|
2018-04-11 05:19:16 +08:00 |
|
Alex Lam S.L
|
4dd7d0e39b
|
extend hoist_props (#3073)
- handle `AST_Assign` the same way as `AST_VarDef`
- inject `AST_Var` as succeeding statement
fixes #3071
|
2018-04-11 02:48:15 +08:00 |
|
Alex Lam S.L
|
90199d0a96
|
extend join_vars on object assignments (#3072)
|
2018-04-11 01:35:42 +08:00 |
|
Alex Lam S.L
|
b82fd0ad41
|
handle flow control in loops with reduce_vars (#3069)
fixes #3068
|
2018-04-10 06:51:03 +08:00 |
|
Alex Lam S.L
|
183da16896
|
handle pure_funcs under inline & reduce_vars correctly (#3066)
fixes #3065
|
2018-04-10 02:46:38 +08:00 |
|
Alex Lam S.L
|
db49daf365
|
mangle Object.defineProperty() (#3059)
fixes #869
|
2018-04-06 17:10:36 +08:00 |
|
Alex Lam S.L
|
44116c6d2b
|
fix AST corruption during inline of simple return (#3056)
fixes #3054
|
2018-04-06 05:39:07 +08:00 |
|
Alex Lam S.L
|
e67553fa55
|
fix tree traversal on AST_Do (#3047)
fixes #3046
|
2018-04-02 22:31:23 +08:00 |
|
Alex Lam S.L
|
07f64d4050
|
fix escape analysis on AST_New (#3043)
fixes #3042
|
2018-03-31 15:03:46 +09:00 |
|
Alex Lam S.L
|
fa3250199a
|
mangle unused nested AST_SymbolCatch correctly (#3038)
fixes #3035
|
2018-03-30 16:23:09 +09:00 |
|
Alex Lam S.L
|
06b9894c19
|
handle modifications to this correctly (#3036)
fixes #3032
|
2018-03-30 15:07:36 +09:00 |
|
Alex Lam S.L
|
12985d86c2
|
fix corner case in hoist_props (#3022)
fixes #3021
|
2018-03-23 07:27:35 +08:00 |
|
Alex Lam S.L
|
d1c6bb8c7c
|
fix nested inline within loop (#3019)
fixes #3018
|
2018-03-23 02:31:59 +08:00 |
|
Alex Lam S.L
|
5c169615a8
|
fix corner case in inline (#3017)
fixes #3016
|
2018-03-22 23:46:26 +08:00 |
|
Alex Lam S.L
|
ccf0e2ef4f
|
extend fuzzy RHS folding (#3006)
- `a = []; if (1) x();` => `if (a = []) x();`
|
2018-03-17 03:10:21 +08:00 |
|
Alex Lam S.L
|
20ca0f5906
|
improve truthy compression (#3009)
|
2018-03-16 06:12:59 +08:00 |
|
Alex Lam S.L
|
b29d435bb5
|
refactor brackets to braces (#3005)
|
2018-03-15 15:46:45 +08:00 |
|
Alex Lam S.L
|
5429234138
|
preserve non-constant value assignments with modifications (#2997)
fixes #2995
|
2018-03-13 17:35:34 +08:00 |
|
Alex Lam S.L
|
b9f72a4a81
|
handle case correctly under reduce_vars (#2993)
fixes #2992
|
2018-03-11 15:54:43 +08:00 |
|
Alex Lam S.L
|
fc6ebd04a5
|
preserve case when inline_script (#2991)
fixes #2989
|
2018-03-11 05:11:12 +08:00 |
|
Alex Lam S.L
|
10b3752b1e
|
fix mangle of AST_SymbolLambda under ie8 (#2978)
fixes #2976
|
2018-03-07 17:20:38 +08:00 |
|
Alex Lam S.L
|
fe51a91395
|
handle negated constants correctly in collapse_vars (#2975)
fixes #2974
|
2018-03-06 00:45:58 +08:00 |
|
Alex Lam S.L
|
a75a046abb
|
compress arguments[index] (#2967)
- always replace with existing parameter
- only introduce new parameter if `keep_fargs` is disabled
|
2018-03-02 11:22:09 +08:00 |
|
Alex Lam S.L
|
38f2b4579f
|
fix value reference caching in evaluate (#2969)
fixes #2968
|
2018-03-02 04:04:29 +08:00 |
|
Alex Lam S.L
|
56e2a369d0
|
enhance conditionals (#2966)
- `x ? (y, w) : (z, w)` => `x ? y : z, w`
|
2018-02-28 23:34:48 +08:00 |
|
Alex Lam S.L
|
0daa199fa8
|
migrate safe transformations out of unsafe_comps (#2962)
fixes #2959
|
2018-02-28 22:02:24 +08:00 |
|
Alex Lam S.L
|
73e98dcda4
|
drop side_effects-free return values (#2965)
|
2018-02-28 19:59:19 +08:00 |
|
Alex Lam S.L
|
36bca6934d
|
enhance collapse_vars (#2952)
- `a = b, b` => `a = b`
- `a.b = c, c()` => `(a.b = c)()`
|
2018-02-28 15:19:32 +08:00 |
|
Alex Lam S.L
|
ace5811691
|
drop lone "use strict" in function body (#2963)
fixes #2961
|
2018-02-26 15:22:52 +08:00 |
|
Alex Lam S.L
|
b8b2ac5230
|
improve fix for #2954 (#2958)
|
2018-02-26 03:14:22 +08:00 |
|
Alex Lam S.L
|
ea2359381b
|
fix collapse_vars on nested exception (#2955)
fixes #2954
|
2018-02-25 15:39:00 +08:00 |
|
Alex Lam S.L
|
52de64cf16
|
deduplicate parenthesis around object and function literals (#2953)
|
2018-02-25 02:14:33 +08:00 |
|
Alex Lam S.L
|
f40f5eb228
|
improve mangle (#2948)
|
2018-02-23 23:51:49 +08:00 |
|
Alex Lam S.L
|
29a71d3aae
|
more tests for #2938 (#2940)
|
2018-02-21 04:19:42 +08:00 |
|
Alex Lam S.L
|
39a907bde3
|
workaround pure_getters=true when dropping unused assignments (#2939)
fixes #2938
|
2018-02-20 17:38:40 +08:00 |
|
Alex Lam S.L
|
4b5993ff15
|
fix crash in may_throw() (#2932)
fixes #2931
|
2018-02-18 21:51:27 +08:00 |
|
Alex Lam S.L
|
2351a672ea
|
fix dead_code on exceptional return (#2930)
fixes #2929
|
2018-02-18 04:36:00 +08:00 |
|
Alex Lam S.L
|
82d1ef0242
|
fix unsafe evaluate of function property (#2927)
fixes #2926
|
2018-02-17 21:33:36 +08:00 |
|
Alex Lam S.L
|
7fdd2082a6
|
drop unused "class" definition IIFEs (#2923)
fixes #805
|
2018-02-17 05:11:31 +08:00 |
|
Alex Lam S.L
|
d626e9bf19
|
improve inline efficiency (#2924)
|
2018-02-17 02:37:13 +08:00 |
|
Alex Lam S.L
|
a2a9459684
|
fix unsafe evaluate of AST_Function (#2920)
fixes #2919
|
2018-02-16 17:21:46 +08:00 |
|
Alex Lam S.L
|
d316fb139d
|
fix unsafe evaluate on type-converting operators (#2917)
fixes #2916
|
2018-02-14 16:48:47 +08:00 |
|