Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Erik's Blog:
PHP implementation of an LALR1 parser generator
Jan 19, 2010 @ 19:03:57

Erik has posted about a new parser he's created, one based on the LALR parser method, that can be downloaded here [zip].

Parser tables, along with a lexer table, are the core constituents of any compiler's front end. This LALR parser generator is heavily based on my custom Php version of the map/reduce programming technique (functional programming). I will elaborate in future posts, on why I used a map/reduce basis to implement the parser generator.

Parsers organize a set of tokens based on the rules of a formal language the parser is given. Several of the grammar text files are included in the download so you can test it out for yourself. For more on the topic check out these two posts.

tagged: lalr1 parser generator grammar

Link:


Trending Topics: