Bump to version 1.1.1.

https://code.google.com/p/esprima/issues/detail?id=493
4 files changed
tree: 1b7b8539ba58da184267c28dd36bbe39b62b72d5
  1. assets/
  2. bin/
  3. demo/
  4. doc/
  5. examples/
  6. test/
  7. tools/
  8. .eslintrc
  9. .gitignore
  10. .jscs.json
  11. .npmignore
  12. .travis.yml
  13. bower.json
  14. ChangeLog
  15. component.json
  16. CONTRIBUTING.md
  17. esprima.js
  18. index.html
  19. LICENSE.BSD
  20. package.json
  21. README.md
README.md

Esprima (esprima.org, BSD license) is a high performance, standard-compliant ECMAScript parser written in ECMAScript (also popularly known as JavaScript). Esprima is created and maintained by Ariya Hidayat, with the help of many contributors.

Features

  • Full support for ECMAScript 5.1 (ECMA-262)
  • Sensible syntax tree format compatible with Mozilla Parser AST
  • Optional tracking of syntax node location (index-based and line-column)
  • Heavily tested (> 600 unit tests with solid statement and branch coverage)
  • Experimental support for ES6/Harmony (module, class, destructuring, ...)

Esprima serves as a building block for some JavaScript language tools, from code instrumentation to editor autocompletion.

Esprima runs on many popular web browsers, as well as other ECMAScript platforms such as Rhino and Node.js.

For more information, check the web site esprima.org.