ee66113130
Fix the following errors: 37:3 error Unexpected console statement no-console 38:3 error Unexpected console statement no-console 42:3 error Unexpected console statement no-console 43:3 error Unexpected console statement no-console 44:3 error Unexpected console statement no-console 51:3 error Unexpected console statement no-console 64:3 error Unexpected console statement no-console 68:3 error Unexpected console statement no-console 74:3 error Unexpected console statement no-console 75:3 error Unexpected console statement no-console 76:3 error Unexpected console statement no-console 77:3 error Unexpected console statement no-console 78:3 error Unexpected console statement no-console 79:3 error Unexpected console statement no-console 80:3 error Unexpected console statement no-console 81:3 error Unexpected console statement no-console 82:3 error Unexpected console statement no-console 94:3 error Unexpected console statement no-console 126:11 error "runCount" is already defined no-redeclare 169:34 error "test" is defined but never used no-unused-vars 194:4 error Unexpected trailing comma comma-dangle |
||
---|---|---|
.. | ||
css | ||
json | ||
vendor | ||
benchmarks.js | ||
index.css | ||
index.html | ||
index.js | ||
README.md | ||
run | ||
runner.js |
PEG.js Benchmark Suite
This is the PEG.js benchmark suite. It measures speed of the parsers generated by PEG.js on various inputs. Its main goal is to provide data for code generator optimizations.
Running in Node.js
All commands in the following steps need to be executed in PEG.js root directory (one level up from this one).
-
Install all PEG.js dependencies, including development ones:
$ npm install
-
Execute the benchmark suite:
$ make spec
-
Wait for results.
Running in the Browser
All commands in the following steps need to be executed in PEG.js root directory (one level up from this one).
-
Make sure you have Node.js and Python installed.
-
Install all PEG.js dependencies, including development ones:
$ npm install
-
Build browser version of PEG.js:
$ make browser
-
Serve PEG.js root directory using a web server:
$ python -m SimpleHTTPServer
-
Point your browser to the benchmark suite.
-
Click the Run button and wait for results.