aboutsummaryrefslogtreecommitdiff
path: root/test/input
AgeCommit message (Collapse)Author
2021-08-20fix corner cases in `optional_chains` (#5110)Alex Lam S.L
2021-05-03support optional chaining operator (#4899)Alex Lam S.L
2021-04-07reject invalid `for await` syntax (#4847)Alex Lam S.L
2021-03-13implement `annotations` (#4763)Alex Lam S.L
2021-02-10reject invalid `for...of` syntax (#4632)Alex Lam S.L
2021-01-18fix corner case in `reduce_vars` (#4563)Alex Lam S.L
fixes #4562
2021-01-03suppress invalid AST transform in `--reduce-test` (#4498)Alex Lam S.L
2020-12-24replace `keep_fargs` default to `false` (#4443)Alex Lam S.L
2020-12-20parse destructuring under strict mode correctly (#4429)Alex Lam S.L
2020-12-20handle destructuring `catch` in `--reduce-test` (#4427)Alex Lam S.L
2020-10-04enhance `side_effects` (#4175)Alex Lam S.L
2020-09-03enhance `join_vars` (#4089)Alex Lam S.L
2020-08-17reject multiple `default`s in `switch` (#4053)Alex Lam S.L
fixes #4050
2020-06-10fix corner case in `--reduce-test` (#3985)Alex Lam S.L
2020-04-16improve source-map generation (#3782)Alex Lam S.L
- emit singleton segments to mark generated code from input
2020-04-10enhance `inline` (#3767)Alex Lam S.L
2020-04-05enhance `inline` (#3760)Alex Lam S.L
2020-03-28handle `source-map` operations internally (#3754)Alex Lam S.L
2020-03-21improve `--reduce-test` (#3742)Alex Lam S.L
- ignore difference in error messages - improve readability on trailing whitespace differences - improve performance & quality via `console.log()` insertions
2020-03-01avoid reducing setter argument (#3737)Alex Lam S.L
2020-02-15improve `--reduce-test` (#3722)kzc
- hoist body of functions and IIFEs - simplify var declarations
2020-02-14improve `--reduce-test` (#3719)Alex Lam S.L
- cover missing cases when eliminating unreferenced labels - format multi-line outputs correctly
2020-02-09add test for `--reduce-test` (#3712)Alex Lam S.L
2020-01-08introduce `--output-opts` CLI option (#3678)Alex Lam S.L
closes #3675
2019-10-11improve source map handling (#3464)Alex Lam S.L
fixes #2947 fixes #3277 fixes #3411
2019-05-04fix corner cases in `sourceMap` (#3397)Alex Lam S.L
fixes #3255 fixes #3294
2019-03-15parse `mangle.properties.regex` in `--config-file` properly (#3337)Alex Lam S.L
fixes #3315
2018-06-06general clean-ups (#3175)Alex Lam S.L
2018-06-01re-introduce `enclose` (#3163)Jiavan
fixes #2443
2018-04-24improve `max_line_len` (#3095)Alex Lam S.L
fixes #304
2018-03-31Don't load source map until the JS source is fully received (#3040)b-fuze
2018-03-15refactor brackets to braces (#3005)Alex Lam S.L
2018-01-17configure `rename` with CLI (#2802)Alex Lam S.L
2018-01-05fix `mangle` name collision across files (#2722)Alex Lam S.L
2017-09-15improve source mapping (#2312)Alex Lam S.L
fixes #2310
2017-06-23fix for-in loop parsing (#2144)Alex Lam S.L
2017-06-13fix CLI parsing of `--source-map content` (#2088)Ziad El Khoury Hanna
fixes #2082
2017-05-23fix source map offset (#1993)Alex Lam S.L
Account for whitespace insertions. fixes #505 fixes #890
2017-05-15improve keyword-related parser errors (#1941)Alex Lam S.L
fixes #1937
2017-05-12remove support for `const` (#1910)Alex Lam S.L
As this is not part of ES5.
2017-04-23improve parser under "use strict" (#1836)Alex Lam S.L
- `const` without value - `delete` of expression - redefining `arguments` or `eval` extend `test/ufuzz.js` - optionally generate "use strict" - improve handling of test cases with syntax errors - group IIFE generation - generate bare anonymous functions - workaround `console.log()` for `new function()` - generate expressions with `this` fixes #1810
2017-04-19fix parser bugs & CLI reporting (#1827)Alex Lam S.L
fixes #1825
2017-03-24fix expect_stdout (#1642)Alex Lam S.L
`compress()` may modify input ASTs add tests for #1627 & #1640
2017-03-23fix a bug in simple_glob (#1632)Alex Lam S.L
- "?" should not match "/" - other minor clean-ups
2017-03-10Correctly raise a parse exception with a missing loop body (#1585)Michael Mior
2017-02-27improve error messages (#1506)Alex Lam S.L
- better inheritance of `Error` sub-classes - mark parse error against source in CLI closes #235 closes #348 closes #524 closes #1356 closes #1405
2017-02-25allow --in-source-map inline (#1490)Alex Lam S.L
- limited to one input file (or `stdin`) - only works with built-in parser fixes #520
2017-02-21improve `--beautify bracketize`alexlamsl
reduce whitespaces from if-else statements fixes #1482 closes #1483
2017-02-21enhance `global_defs`alexlamsl
- support arrays, objects & AST_Node - support `"a.b":1` on both cli & API - emit warning if variable is modified - override top-level variables fixes #1416 closes #1198 closes #1469
2017-01-26fix mangling collision with keep_fnames (#1431)Alex Lam S.L
* fix mangling collision with keep_fnames fixes #1423 * pass mangle options to figure_out_scope() bring command-line in line with minify()