[Pkg-javascript-commits] [node-esprima] branch upstream updated (5d392af -> 80448d4)

Julien Puydt julien.puydt at laposte.net
Wed Dec 7 16:12:04 UTC 2016


This is an automated email from the git hooks/post-receive script.

jpuydt-guest pushed a change to branch upstream
in repository node-esprima.

      from  5d392af   New upstream version 3.1.1+ds
       new  80448d4   New upstream version 3.1.2+ds

The 1 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:
 ChangeLog                                          |   7 +
 LICENSE.BSD                                        |   2 +-
 bin/esparse.js                                     |   2 +-
 bin/esvalidate.js                                  |   2 +-
 package.json                                       |   2 +-
 src/esprima.ts                                     |   4 +-
 src/jsx-parser.ts                                  | 111 +++++---
 src/parser.ts                                      |  21 +-
 test/api-tests.js                                  |   2 +-
 test/benchmark-parser.js                           |   2 +-
 test/benchmark-tokenizer.js                        |   2 +-
 test/browser-tests.js                              |   2 +-
 test/check-complexity.js                           |   2 +-
 test/check-version.js                              |   2 +-
 test/downstream.js                                 |   2 +-
 .../import-declaration/invalid-import-boolean.js   |   1 +
 .../invalid-import-boolean.module.json}            |   0
 .../import-declaration/invalid-import-keyword.js   |   1 +
 .../invalid-import-keyword.module.json}            |   2 +-
 .../ES6/import-declaration/invalid-import-null.js  |   1 +
 .../invalid-import-null.module.json}               |   0
 test/fixtures/JSX/attribute-empty-entity1.js       |   1 +
 ...tree.json => attribute-empty-entity1.tree.json} |  38 +--
 test/fixtures/JSX/attribute-empty-entity2.js       |   1 +
 ...tree.json => attribute-empty-entity2.tree.json} |  58 ++--
 test/fixtures/JSX/attribute-expression.tree.json   |  20 +-
 .../fixtures/JSX/attribute-illegal-short-entity.js |   1 +
 ...on => attribute-illegal-short-entity.tree.json} |  50 ++--
 test/fixtures/JSX/attribute-invalid-entity.js      |   1 +
 ...ree.json => attribute-invalid-entity.tree.json} |  50 ++--
 test/fixtures/JSX/attribute-non-hex-entity.js      |   1 +
 ...ree.json => attribute-non-hex-entity.tree.json} |  50 ++--
 test/fixtures/JSX/attribute-non-numeric-entity.js  |   1 +
 ...json => attribute-non-numeric-entity.tree.json} |  14 +-
 test/fixtures/JSX/attribute-primary.tree.json      |  20 +-
 test/fixtures/JSX/attribute-spread.tree.json       |  20 +-
 test/fixtures/JSX/attribute-unterminated-entity.js |   1 +
 ...son => attribute-unterminated-entity.tree.json} |  50 ++--
 test/fixtures/JSX/attribute-x-entity.js            |   1 +
 ...ties.tree.json => attribute-x-entity.tree.json} |  50 ++--
 .../JSX/container-object-expression.tree.json      |  18 --
 test/fixtures/JSX/container-series.tree.json       |  56 +---
 .../JSX/simple-expression-container.tree.json      |  20 +-
 test/fixtures/JSX/template-literal.js              |   1 +
 ...ession.tree.json => template-literal.tree.json} | 293 +++++++++++----------
 test/grammar-tests.js                              |   2 +-
 test/hostile-environment-tests.js                  |   2 +-
 test/profile.js                                    |   2 +-
 test/regression-tests.js                           |   2 +-
 test/unit-tests.js                                 |   2 +-
 test/utils/create-testcases.js                     |   2 +-
 test/utils/error-to-object.js                      |   2 +-
 test/utils/evaluate-testcase.js                    |   2 +-
 tools/fixupbundle.js                               |   2 +-
 tools/generate-fixtures.js                         |   2 +-
 55 files changed, 474 insertions(+), 532 deletions(-)
 create mode 100644 test/fixtures/ES6/import-declaration/invalid-import-boolean.js
 copy test/fixtures/ES6/{generator/malformed-generator-method-2.failure.json => import-declaration/invalid-import-boolean.module.json} (100%)
 create mode 100644 test/fixtures/ES6/import-declaration/invalid-import-keyword.js
 copy test/fixtures/ES6/{lexical-declaration/invalid_let_declarations.failure.json => import-declaration/invalid-import-keyword.module.json} (51%)
 create mode 100644 test/fixtures/ES6/import-declaration/invalid-import-null.js
 copy test/fixtures/ES6/{generator/malformed-generator-method-2.failure.json => import-declaration/invalid-import-null.module.json} (100%)
 create mode 100644 test/fixtures/JSX/attribute-empty-entity1.js
 copy test/fixtures/JSX/{attribute-double-quoted-string.tree.json => attribute-empty-entity1.tree.json} (91%)
 create mode 100644 test/fixtures/JSX/attribute-empty-entity2.js
 copy test/fixtures/JSX/{attribute-multi-entities.tree.json => attribute-empty-entity2.tree.json} (87%)
 create mode 100644 test/fixtures/JSX/attribute-illegal-short-entity.js
 copy test/fixtures/JSX/{attribute-multi-entities.tree.json => attribute-illegal-short-entity.tree.json} (89%)
 create mode 100644 test/fixtures/JSX/attribute-invalid-entity.js
 copy test/fixtures/JSX/{attribute-multi-entities.tree.json => attribute-invalid-entity.tree.json} (89%)
 create mode 100644 test/fixtures/JSX/attribute-non-hex-entity.js
 copy test/fixtures/JSX/{attribute-entity-hex.tree.json => attribute-non-hex-entity.tree.json} (89%)
 create mode 100644 test/fixtures/JSX/attribute-non-numeric-entity.js
 copy test/fixtures/JSX/{attribute-entity-hex.tree.json => attribute-non-numeric-entity.tree.json} (96%)
 create mode 100644 test/fixtures/JSX/attribute-unterminated-entity.js
 copy test/fixtures/JSX/{attribute-multi-entities.tree.json => attribute-unterminated-entity.tree.json} (89%)
 create mode 100644 test/fixtures/JSX/attribute-x-entity.js
 copy test/fixtures/JSX/{attribute-multi-entities.tree.json => attribute-x-entity.tree.json} (89%)
 create mode 100644 test/fixtures/JSX/template-literal.js
 copy test/fixtures/JSX/{attribute-expression.tree.json => template-literal.tree.json} (66%)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-esprima.git



More information about the Pkg-javascript-commits mailing list