Tagged Questions

5
votes
7answers
593 views

Tips for speeding up build time on Linux using ANT, Javacc, JUnit and compiling Java classes

We have a large codebase that takes approx 12 minutes on the developer machines to auto-generate some Java 5 classes using JavaCC and then compiles all the classes as well as running the units test. …
4
votes
5answers
892 views

What’s better, ANTLR or JavaCC?

Concerns are documentation/learnability, eclipse integration, tooling, community support and performance (in roughly that order).
3
votes
2answers
80 views

JavaCC: I wish to generate java classes from dymanicly generated jj files and to compile them at runtime…

Hi all, I am refactoring a project which uses javaCC to create a proprietary language parser during compile time. Due to the fact that different variations of languages can exist at the same time, it …
2
votes
1answer
72 views

What’s JavaCC’s ADVANTAGE versus ANTLR

Too many people have told me about the disadvantages, but what is its advantage if any?
2
votes
6answers
212 views

What do people do with Parsers, like antlr javacc?

Out of curiosity, I wonder what can people do with parsers, how they are applied, and what do people usually create with it? I know it's widely used in programming language industry, however I think …
2
votes
2answers
199 views

NULL token in JavaCC

I have strange problem with token < NULL: "null" > in my JavaCC parser. In expression like String IsNullClause(): { String res = ""; } { <IS> {res += " IS ";} [<NOT> …
1
vote
3answers
298 views

Anybody has some links to javacc tutorials?

It's very difficult to find this kind of document online. I found one in JAVAWORLD, but this one does not cover the jjTree and visiter one. Does anybody happen to have some links to the tutorials?
1
vote
6answers
218 views

Parser, Generator for Java with the following requirements…

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 …
1
vote
4answers
248 views

Explanation and solution for JavaCC’s warning “Regular expression choice : FOO can never be matched as : BAR”?

I am teaching myself to use JavaCC in a hobby project, and have a simple grammar to write a parser for. Part of the parser includes the following: TOKEN : { < DIGIT : (["0"-"9"]) > } TOKEN : { …
1
vote
1answer
136 views

Recognizing extended characters using JAVACC

I'm creating a grammar using JavaCC and have run across a small problem. I'm trying to allow for any valid character within the ASCII extended set to be recognized by the resulting compiler. After …
0
votes
3answers
102 views

JavaCC Problem - Generated code doesn’t find all parse errors

Just started with JavaCC. But I have a strange behaviour with it. I want to verify input int the form of tokens (letters and numbers) wich are concatenated with signs (+, -, /) and wich can contain …
0
votes
1answer
35 views

Format ParseException with JavaCC

I was wondering how could it be possible to format in a human-readable format a ParseException thrown by JavaCC: in fact it includes fields such asbeginLine, beginColumn, endColumn, endLine in the …
0
votes
1answer
116 views

javacc parseException… lookahead problem?

I'm writing a parser for a very simple grammar in javacc. It's beginning to come together but at the moment I'm completely stuck on this error: ParseException: Encountered "" at line 4, column …
0
votes
3answers
176 views

Handling Token Ambiguity in JavaCC

I'm attempting to write a parser in JavaCC that can recognize a language that has some ambiguity at the token level. In this particular case the language supports the "/" token by itself as a …
0
votes
1answer
427 views

Parsing RTF Documents with Java/JavaCC

Is anybody familiar with the the RTF document format and parsing using any Java libaries. The standard way people have done this is by using the RTFEditorKit in the JDK Swing API: Swing RTFEditorKit …

1 2 next
15 30 50 per page