vote up 1 vote down star

I'm looking for an Earley parser generator that is able to generate Java output code, i.e. that generates Java code for the lexer and parser, and allows to include actions (realised as Java code) that are performed for the grammar rules.

I looked at two Earley parser generators that generate Java code (Pep and PEN) but none of them seems to allow embedding actions into the grammar.

flag

1 Answer

vote up 1 vote down

Not sure if this is an answer, but one of the scanner generators I regularly use is JFlex, which outputs Java code.

It works closely with CUP, which is a bit closer regarding actions.

link|flag
Well, telling from the name (JFlex) and a quick look at the documentation I'd say it's only a lexer and the syntactical analysis part is missing. – Frank Grimm Dec 3 '08 at 16:20
Sure, I added the CUP link which may be a little closer. – Josh Dec 3 '08 at 18:20
Cheers, will try CUP together with JFlex. – Frank Grimm Dec 4 '08 at 8:23

Your Answer

Get an OpenID
or

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