vote up 1 vote down star
1

I am looking for a parser generator for Java that does the following: My language project is pretty simple and only contains a small set of tokens.

Output in pure READABLE Java code so that I can modify it (this why I wouldn't use ANTLR) Mature library, that will run and work with at least Java 1.4

I have looked at the following and they might work: JavaCC, jlex, Ragel?

flag

74% accept rate
If your language is simple and you want to hand-edit the code, you may find it easiest to just hand-write a recursive descent parser. – munificent May 4 at 19:30
Do you want to merge your hand-modifications with generated code? In otherwords, once you generate, do you want to from then on only modify the generated code, or be able to modify the generated code and the grammar definition? – Scott Stanchfield May 4 at 19:30

6 Answers

vote up 1 vote down check

You should use Rats... This way, you don't have to separate lexer and parser and then if you want to extend your project that will be trivial. It's in java and then you can process your AST in Java...

link|flag
vote up 1 vote down

Maybe you're looking for parser combinators instead of parser generators? See this paper and JParsec.

It's a really bad idea to edit generated parser code--it's a lot easier to edit the grammar file and then recompile it. Unless you're doing it for educational purposes, in which case ANTLR prides itself in generating pretty readable code for such a powerful parser generator.

link|flag
Having used JParsec, I don't think I'd ever want to go back to editing grammar files. Even without the more advanced features, it's worth being able to use your existing tools. – jamesh May 5 at 12:20
vote up 1 vote down

Maybe ANTLR will do it for you. It's a nice parser generator with a fine book available for documentation.

link|flag
vote up 0 vote down

For a language that simple, JFlex might suffice. It's similar to JLex but faster (which might also mean less readable, but I've not seen JLex's output).

It is a lexer, not a parser, but it is built to interface easily with CUP or BYacc/J. And again, for a simple language, it might be easier to just write your own parser (I've done this before).

link|flag
vote up 0 vote down

We are using JavaCC for our (as well rather small language) and are happy with it.

link|flag
vote up 0 vote down

I had good experience SableCC.

It works different from most generators, in that you're given a AST/Visitor model that you extend (via inheritance).

I can't comment on the "quality" of its code in terms of readability (it's been a while since I've used it), but it does have the quality that you don't have to read the code at all. Just the code in your subclass.

link|flag

Your Answer

Get an OpenID
or

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