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.
7f01db2fb8
The for-in statement in JavaScript iterates also over inherited properties. This is typically not desired and requires adding a check using Object.prototype.hasOwnProperty inside the loop. This commit replaces all for-in statements and related checks inside them with iteration over Object.keys(...). The iteration is performed using either Array.prototype.forEach of a plain for loop. |
8 years ago | |
---|---|---|
.. | ||
api | 8 years ago | |
behavior | 8 years ago | |
unit | 8 years ago | |
vendor/jasmine | 11 years ago | |
.eslintrc.json | 8 years ago | |
README.md | 8 years ago | |
index.html | 8 years ago | |
server | 8 years ago |
README.md
PEG.js Spec Suite
This is the PEG.js spec suite. It ensures PEG.js works correctly. All specs should always pass on all supported platforms.
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 spec suite:
$ make spec
-
Watch the specs pass (or fail).
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 installed.
-
Install all PEG.js dependencies, including development ones:
$ npm install
-
Serve the spec suite using a web server:
$ spec/server
-
Point your browser to the spec suite.
-
Watch the specs pass (or fail).