4f7145e360
Replace |line|, |column|, and |offset| functions with the |location| function. It returns an object like this: { start: { offset: 23, line: 5, column: 6 }, end: { offset: 25, line: 5, column: 8 } } In actions, |start| refers to the position at the beginning of action's expression and |end| refers to the position after the end of action's expression. This allows one to easily add location info e.g. to AST nodes created in actions. In predicates, both |start| and |end| refer to the current position. Fixes #246. |
||
---|---|---|
.. | ||
api | ||
behavior | ||
unit | ||
vendor/jasmine | ||
helpers.js | ||
index.html | ||
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 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 spec suite.
-
Watch the specs pass (or fail).