vote up 5 vote down star
2

I find myself drawn to the Parsing Expression Grammar formalism for describing domain specific languages, but so far the implementation code I've found has been written in languages like Java and Haskell that aren't web server friendly in the shared hosting environment that my organization has to live with.

Does anyone know of any PEG libraries or PackRat Parser Generators for Javascript or PHP? Of course code generators in any languages that can produce Javascript or PHP source code would do the trick.

flag

4 Answers

vote up 5 vote down

There is in fact one for Javascript: OMeta. http://www.cs.ucla.edu/~awarth/ometa/

I also implemented a version of this in Python: http://launchpad.net/pymeta

link|flag
vote up 0 vote down

Have you looked at ANTLR? It produces lexer and parser code, handles abstract syntax trees, lets you insert code the grammar to be injected into the lexer/parser code, and its available for a variety of languages!

link|flag
ANTLR does a lot of stuff, but it doesn't do PEGs. – Allen Sep 18 '08 at 2:30
vote up 0 vote down

look at http://www.codeplex.com/NPEG can easily be converted into php. Parse tree is created with anonymous functions.

link|flag
vote up 0 vote down

There's also Kouprey for JavaScript, which is a very easy to use PEG generator/library.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.