- Notifications
You must be signed in to change notification settings - Fork2
⚪ Pearley is a *shiny* new implementation of the Earley parsing algorithm in Javascript.
License
purag/pearley
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Pearley is ashiny new implementation of the Earley parsing algorithm in Javascript.
Pearley can parse any context-free grammar, including left-recursive, right-recursive, and ambiguous grammars, and grammars containing epsilon rules (the null/empty rule).
This demo shows how Pearley can parse math expressions with the +, -, *, and / operators, parentheses, and numbers of arbitrary length.
To run it, you must includetokenizer.js from my ParserGen repo to tokenize the strings.
You can also click the link to see the demo on jsFiddle. Check the console for output. First line of output is the tokenized string, second line of output is the list of tokens parsed by Pearley, and the last line of output is the table of state sets.
This demo lets you parse a string containing balanced pairs of parentheses, meaningn open parentheses followed byn close parentheses.
i.e.
((()))
()
- `` (it works on empty strings)
((((((()))))))