purag / pearley

:white_circle: Pearley is a *shiny* new implementation of the Earley parsing algorithm in Javascript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pearley

Pearley is a shiny 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 include tokenizer.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, meaning n open parentheses followed by n close parentheses.

i.e.

  • ((()))
  • ()
  • `` (it works on empty strings)
  • ((((((()))))))

About

:white_circle: Pearley is a *shiny* new implementation of the Earley parsing algorithm in Javascript.

License:GNU General Public License v2.0


Languages

Language:JavaScript 100.0%