Commit graph

6 commits

Author SHA1 Message Date
David Majda eb4badab24 Refactor named rules AST representation
PEG.js grammar rules are represented by |rule| nodes in the AST. Until
now, all such nodes had a |displayName| property which was either |null|
or stored rule's human-readable name. This commit gets rid of the
|displayName| property and starts representing rules with a
human-readable name using a new |named| node (a child of the |rule|
node).

This change simplifies code generation code a bit as tests for
|displayName| can be removed (see changes in generate-code.js). It also
separates different concerns from each other nicely.
2012-06-25 21:36:41 +02:00
David Majda 8ef5f08c90 Jasmine: Convert |removeProxyRules| compiler pass tests 2012-05-06 19:05:38 +02:00
David Majda eaf2af8e7b Jasmine: Convert |computeParams| compiler pass tests 2012-05-06 19:05:38 +02:00
David Majda 4edc9982cc Jasmine: Convert |computeVarNames| compiler pass tests 2012-05-06 19:05:38 +02:00
David Majda 1471df9a69 Jasmine: Convert |reportLeftRecursion| compiler pass tests 2012-05-06 19:05:38 +02:00
David Majda 2889ca72fc Jasmine: Convert |reportMissingRules| compiler pass tests 2012-05-06 19:05:38 +02:00