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.
David Majda cdeecf750f reportLeftRecursion: Change handling of the |visitedRules| array
Before this commit, the |reportLeftRecursion| pass was written in
functional style, passing the |visitedRules| array around as a parameter
and making a new copy each time a rule was visited. This apparently
caused performance problems in some deeply recursive grammars.

This commit makes it so that there is just one array which is shared
across all the visitor functions via a closure and modified as rules are
visited.

I don't like losing the functional style (it was elegant) but
performance is more important.

Fixes #203.
9 years ago
..
compiler reportLeftRecursion: Change handling of the |visitedRules| array 9 years ago
utils Convert PEG.js code to strict mode 9 years ago
compiler.js Convert PEG.js code to strict mode 9 years ago
grammar-error.js Merge pull request #347 from mbaumgartl/errorstack 9 years ago
parser.js Update character categories in grammars to Unicode 8.0.0 9 years ago
peg.js Convert PEG.js code to strict mode 9 years ago