[Pkg-javascript-commits] [uglifyjs] branch upstream updated (b0c4159 -> c92db1a)
Jonas Smedegaard
dr at jones.dk
Thu Aug 17 23:06:48 UTC 2017
This is an automated email from the git hooks/post-receive script.
js pushed a change to branch upstream
in repository uglifyjs.
from b0c4159 New upstream version 2.8.22
new 43ad4e9 fix variable substitution (#1816)
new 6ad823d fix `reduce_vars` within try-block (#1818)
new d0faa47 fix `unused` on labeled for-loop (#1831)
new 2c21dc5 fix `unused` on for-in statements (#1843)
new 7305ba0 fix `unsafe` on `evaluate` of `reduce_vars` (#1870)
new dda4eb9 backport test scripts
new d8106b6 fix label-related bugs (#1835)
new 90ed544 fix test for #1865 (#1873)
new d08c772 Merge pull request #1871 from alexlamsl/v2.8.23
new 5dfda6e v2.8.23
new 487ae8e change `harmony` references to `uglify-es` in README (#1902)
new 13e5e33 document known issues with `const` (#1916)
new aa7e878 fix invalid transform on `const` (#1919)
new f631d64 avoid `arguments` and `eval` in `reduce_vars` (#1924)
new 9a98513 add documentation for `side_effects` & `[#@]__PURE__` (#1925)
new c736834 Merge pull request #1921 from alexlamsl/v2.8.24
new 87f8a48 v2.8.24
new 4027a0c fix parser bugs & CLI reporting (#1827)
new 9f5a602 clarify wording (#1931)
new d0b0aec document 3 max passes (#1928)
new a8c67ea fix bugs with getter/setter (#1926)
new 24967b8 fix & improve coverage of `estree` (#1935)
new 3ee1464 Merge pull request #1938 from alexlamsl/v2.8.25
new 1ca43bc v2.8.25
new ecb63ad improve keyword-related parser errors (#1941)
new 6cd580d fix parsing of property access after new line (#1944)
new 93d4224 Merge pull request #1947 from alexlamsl/v2.8.26
new 4cbf5a7 v2.8.26
new 957c54b introduce `unsafe_regexp` (#1970)
new a7c987a Merge pull request #1971 from alexlamsl/v2.8.27
new 75e2748 v2.8.27
new 3818a9e fix non-identifier getter/setter name (#2041)
new 06296be add tests for `AST_SymbolAccessor` (#2049)
new 092d027 Merge pull request #2048 from alexlamsl/v2.8.28
new 23876a8 v2.8.28
new 0af80ec v2.8.29
new c92db1a New upstream version 2.8.29
The 37 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.travis.yml | 1 -
README.md | 48 ++--
bin/uglifyjs | 16 +-
lib/ast.js | 13 +-
lib/compress.js | 252 ++++++++++++++------
lib/mozilla-ast.js | 52 +++--
lib/output.js | 35 ++-
lib/parse.js | 113 +++++----
lib/scope.js | 5 -
package.json | 7 +-
test/benchmark.js | 4 +-
test/compress/collapse_vars.js | 46 ++++
test/compress/dead-code.js | 16 ++
test/compress/drop-unused.js | 60 +++++
test/compress/evaluate.js | 47 ++++
test/compress/functions.js | 54 +++++
test/compress/issue-1656.js | 6 +-
test/compress/issue-1833.js | 134 +++++++++++
test/compress/issue-1943.js | 31 +++
test/compress/properties.js | 102 +++++++++
test/compress/pure_getters.js | 59 +++++
test/compress/reduce_vars.js | 261 ++++++++++++++++++---
test/compress/sequences.js | 24 ++
test/input/invalid/assign_4.js | 1 +
test/input/invalid/dot_1.js | 1 +
test/input/invalid/dot_2.js | 1 +
test/input/invalid/dot_3.js | 1 +
test/input/invalid/else.js | 1 +
test/input/invalid/object.js | 1 +
test/input/invalid/return.js | 1 +
test/mocha/accessorTokens-1492.js | 2 +-
test/mocha/cli.js | 305 +++++++++++++++++--------
test/mocha/directives.js | 16 +-
test/mocha/getter-setter.js | 2 +-
test/mozilla-ast.js | 174 +++++++-------
test/run-tests.js | 6 -
test/sandbox.js | 38 ++-
test/ufuzz.js | 469 ++++++++++++++++++++++++++------------
38 files changed, 1800 insertions(+), 605 deletions(-)
create mode 100644 test/compress/issue-1833.js
create mode 100644 test/compress/issue-1943.js
create mode 100644 test/input/invalid/assign_4.js
create mode 100644 test/input/invalid/dot_1.js
create mode 100644 test/input/invalid/dot_2.js
create mode 100644 test/input/invalid/dot_3.js
create mode 100644 test/input/invalid/else.js
create mode 100644 test/input/invalid/object.js
create mode 100644 test/input/invalid/return.js
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/uglifyjs.git
More information about the Pkg-javascript-commits
mailing list