You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pegjs/package.json

86 lines
2.3 KiB
JSON

{
"name": "pegjs",
"version": "0.10.0",
"description": "Parser generator for JavaScript",
"keywords": [
"parser generator",
"PEG"
],
"homepage": "https://pegjs.org/",
"bugs": "https://github.com/pegjs/pegjs/issues",
"license": "MIT",
"contributors": [
"David Majda <david@majda.cz> (https://majda.cz/)",
"Futago-za Ryuu <futagoza.ryuu@gmail.com>"
],
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"bin/peg.js",
"bin/options.js",
"bin/usage.txt",
"examples/arithmetics.pegjs",
"examples/css.pegjs",
"examples/javascript.pegjs",
"examples/json.pegjs",
"lib/compiler/asts.js",
"lib/compiler/index.js",
"lib/compiler/js.js",
Code generator rewrite This is a complete rewrite of the PEG.js code generator. Its goals are: 1. Allow optimizing the generated parser code for code size as well as for parsing speed. 2. Prepare ground for future optimizations and big features (like incremental parsing). 2. Replace the old template-based code-generation system with something more lightweight and flexible. 4. General code cleanup (structure, style, variable names, ...). New Architecture ---------------- The new code generator consists of two steps: * Bytecode generator -- produces bytecode for an abstract virtual machine * JavaScript generator -- produces JavaScript code based on the bytecode The abstract virtual machine is stack-based. Originally I wanted to make it register-based, but it turned out that all the code related to it would be more complex and the bytecode itself would be longer (because of explicit register specifications in instructions). The only downsides of the stack-based approach seem to be few small inefficiencies (see e.g. the |NIP| instruction), which seem to be insignificant. The new generator allows optimizing for parsing speed or code size (you can choose using the |optimize| option of the |PEG.buildParser| method or the --optimize/-o option on the command-line). When optimizing for size, the JavaScript generator emits the bytecode together with its constant table and a generic bytecode interpreter. Because the interpreter is small and the bytecode and constant table grow only slowly with size of the grammar, the resulting parser is also small. When optimizing for speed, the JavaScript generator just compiles the bytecode into JavaScript. The generated code is relatively efficient, so the resulting parser is fast. Internal Identifiers -------------------- As a small bonus, all internal identifiers visible to user code in the initializer, actions and predicates are prefixed by |peg$|. This lowers the chance that identifiers in user code will conflict with the ones from PEG.js. It also makes using any internals in user code ugly, which is a good thing. This solves GH-92. Performance ----------- The new code generator improved parsing speed and parser code size significantly. The generated parsers are now: * 39% faster when optimizing for speed * 69% smaller when optimizing for size (without minification) * 31% smaller when optimizing for size (with minification) (Parsing speed was measured using the |benchmark/run| script. Code size was measured by generating parsers for examples in the |examples| directory and adding up the file sizes. Minification was done by |uglify --ascii| in version 1.3.4.) Final Note ---------- This is just a beginning! The new code generator lays a foundation upon which many optimizations and improvements can (and will) be made. Stay tuned :-)
11 years ago
"lib/compiler/opcodes.js",
"lib/compiler/passes/generate-bytecode.js",
"lib/compiler/passes/generate-js.js",
"lib/compiler/passes/remove-proxy-rules.js",
"lib/compiler/passes/report-duplicate-labels.js",
"lib/compiler/passes/report-duplicate-rules.js",
"lib/compiler/passes/report-infinite-recursion.js",
"lib/compiler/passes/report-infinite-repetition.js",
"lib/compiler/passes/report-undefined-rules.js",
"lib/compiler/visitor.js",
"lib/grammar-error.js",
"lib/parser.js",
"lib/peg.js",
"package.json"
],
"main": "lib/peg",
"bin": "bin/peg.js",
"repository": "pegjs/pegjs",
"scripts": {
"lint": "gulp lint",
"spec": "gulp test",
"benchmark": "gulp benchmark",
"build:parser": "gulp build:parser",
"build:browser": "gulp build:browser",
"clean": "gulp clean",
"test:impact": "node test/impact",
"test:server": "node test/server/run",
"test": "gulp"
},
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babel-core": "6.26.0",
"dedent": "0.7.0",
"babelify": "8.0.0",
"browserify": "14.5.0",
"chai": "4.1.2",
"del": "3.0.0",
"eslint-config-futagozaryuu": "3.6.x",
"express": "4.16.2",
"glob": "7.1.2",
"gulp": "3.9.1",
"gulp-eslint": "4.0.0",
"gulp-header": "1.8.9",
"gulp-mocha": "4.3.1",
"gulp-rename": "1.2.2",
"gulp-uglify": "3.0.0",
"morgan": "1.9.0",
"run-sequence": "2.2.0",
"sinon": "4.0.1",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0"
},
"engines": {
"node": ">=4"
}
}