JavaCC - the Java Compiler Compiler - is a popular parser generator for Java.
0
votes
2answers
13 views
JavaCC Ambiguities: How do I tell the parser to chose a certain match from the the list of “longer matches”?
For some input, the parser presents a "Possible kinds of longer matches : { <EXPRESSION>, <TEXT> }", but for some odd reason it chooses the wrong one.
This is the source:
SKIP :
{
" ...
0
votes
1answer
51 views
Context-free-grammar to represent regular expressions
I'm trying to make a context-free-grammar to represent simple regular expressions. The symbols that I want is [0-9][a-z][A-Z], and operators is "|", "()" and "." for concatenation, and for sequences ...
0
votes
1answer
25 views
JavaCC - XPath parser
I need to create a (very) simple parser of XPath expressions. I'm trying to use JavaCC for that purpose. I'm completely new to JavaCC (although we learned Flex & Bison at school), and so I'm ...
-1
votes
0answers
46 views
Using java CC to parse and extract data [closed]
Hello I will have a text file containing text data.
i want to use java cc to define rules to parse this file. i also then want to extract data out of this file using the parser.
i saw on the net many ...
1
vote
1answer
31 views
Exclude a string as a token in Javacc
Im a trying to create a grammar in Javacc, and for a function name, I can have any assortment of lower character letters, or 'main'. If 'main' is the function name, then different procedures needed to ...
1
vote
2answers
43 views
JavaCC: How can I maintain the original text (with spaces)
Let's assume that I have a simple JavaCC grammar to parse additions and subtractions:
....
void CompilationUnit() :
{}
{
(Expression())+
EOF
}
void Expression() :
{}
{
Number()
(
...
0
votes
0answers
67 views
JavaCC - Missing Return Statement Exception
In the generated parser file, this method throws a missing return statement exception, although I find the return statement is always reachable. Here is the function:
Program Goal():
{
MainClass ...
1
vote
2answers
50 views
How do I return a string from a javacc method?
I have this method in javacc to parse a url (e.g. /books/id/1). How do I make this method return the whole url string?
void path() :
{}
{
(< SLASH > ( < IDENTIFIER >))+
}
I have tried ...
0
votes
1answer
38 views
grammar-free section in javaCC
Here is a short javaCC code:
PARSER_BEGIN(TestParser)
public class TestParser
{
}
PARSER_END(TestParser)
SKIP :
{
" "
| "\t"
| "\n"
| "\r"
}
TOKEN : /* LITERALS */
...
1
vote
1answer
76 views
parsing and evaluating simple language using javacc
I have simple language like:
funa X ( X+3*funb(1) ) ;
funb Y ( 2*Y ) ;
main ( 2+func(func(1)) ) ;
func A ( funa(A) ) ;
I used CFG to parse above as:
program => (statement)+
statement => ...
0
votes
1answer
36 views
JavaCC: Defining a *password* token or grammar rule
I'm using JavaCC do simulate a small part of SQL grammars, and I'm having a problem with defining a password.
I'm writting grammar rules for a
CREATE USER user_name IDENTIFIED BY a_password
...
0
votes
2answers
70 views
java object equality not working
I really tried searching for answer in this forum for such a question but none seems to work so far.
I want to type check a method declaration such as:
public int stackOverFlow() {int a; a = a + 1; ...
0
votes
0answers
61 views
Parse Nested Parentheses in Abstract Syntax Tree with Javacc
I am trying to parse expressions such as a*(4+5) in my parser to build the abstract syntax tree.
void addSub() : {}
{
mulDiv() ((<ADD> mulDiv() )| (<SUB> mulDiv() ) )*
}
void ...
0
votes
1answer
29 views
Effective Unit Testing for Javacc
I have a javacc file which I'm trying to write unit tests for. Is it more effective to make unit tests for the .jj file or for the java files the jj file produces when it is compiled. I know this was ...
0
votes
3answers
146 views
JavaCC using input as a 'token'
I've been puzzling over this for days and searching doesn't seem to give any results. Makes me wonder if it's possible. For example:
funct functionNAME (Object o) { o+1 };
The point is that The ...
1
vote
1answer
88 views
Handling comments and Line/Column numbers in COBOL grammar using Javacc
I am working on a COBOL Parser using JavaCC. The COBOL file usually will have columns 1 to 6 as Line/Column numbers. If Line/Column numbers are not present it will have spaces.
I need to know how to ...
0
votes
1answer
73 views
NoClassDefFoundError from JavaCC generated code
As part of my study, I am using the JavaCC Eclipse plug-in to create a lexical analysis and parser a parser for a programming language.
The parser is generated succesfully and when I run the generated ...
0
votes
1answer
155 views
JavaCC lexer doesn't work as expected (whitespace not ignored)
I'm trying to implement a parser for the example file listed below. I'd like to recognize quoted strings with '+' between them as a single token. So I created a jj file, but it doesn't match such ...
0
votes
1answer
52 views
greedy matches in javacc
Is it possible to optionally make javacc match greedily some of the tokens?
I'm trying to have an entity defined like this:
<CURLED: "{" (<CHAR>)+ "}">
What I would like to have is ...
1
vote
2answers
48 views
javacc add operation causing issues
I'm trying to create a simple parser but I'm having a bit of trouble when trying to take into account the optional sign before the first element:
void expr5() : {}
{
[addop()] ...
1
vote
1answer
198 views
C comment removal with JavaCC
I know how to skip these comments using SKIP declarations, but all I need to do is to take a C source and output the same source without comments.
So I declared a token <GENERIC_TEXT: (~[])+ >, ...
2
votes
2answers
180 views
how to resolve this choice conflict - JavaCC
I have a javacc grammar that defines a simple scripting language with simple expressions and conditional statements that i am reviewing and trying to correct roughly defined like this :
void ...
3
votes
1answer
532 views
How to implement JJTree on grammar
I have an assignment to use JavaCC to make a Top-Down Parser with Semantic Analysis for a language supplied by the lecturer. I have the production rules written out and no errors.
I'm completely stuck ...
1
vote
1answer
106 views
Remove choice-conflict without look ahead - JavaCC
I am trying to make the following production rule in JavaCC but I am getting a choice conflict error. I know how to fix it using look-ahead but I am under the impression we are not allowed to use it ...
1
vote
1answer
171 views
Eliminating Indirect Left Recursion
My brain is fried trying to eliminate some left recursion from production rules.
I'm building a compiler with JavaCC and I need to use the following 2 production rules:
expression := fragment ( ( + | ...
0
votes
1answer
69 views
javacc token prefix
I'm trying to allow string like this in my query language:
-some-hyphenated-term
where the first - indicates that the term is to be excluded. The problem is that the - ends up getting included in ...
0
votes
0answers
35 views
Can I match part of statement with javacc?
Sometimes, we only test part of statement match the pattern we want. It is not necessary to parse all of the sentence. But I found it is hard to do with javacc. but is easy for regex. what way you ...
0
votes
1answer
93 views
How to let javacc not to escape chars when generating source code?
I use javacc 5.0 to generate a json parser with the grammar file: https://github.com/inqwell/json/blob/master/src/main/javacc/com/inqwell/json/JSON.jj
But there are some errors in the generated java ...
0
votes
2answers
182 views
COBOL Parser using javacc + PMD
I am using this grammar to generate a COBOL parser.
I use javacc to generate the parser and Java Tree Builder to generate the AST from this grammar.
I am customizing a eclipse plugin called PMD to ...
1
vote
1answer
230 views
How to use backslash escape char for new line in JavaCC?
I have an assignment to create a lexical analyser and I've got everything working except for one bit.
I need to create a string that will accept a new line, and the string is delimited by double ...
3
votes
2answers
154 views
Is there a version of Javacc that outputs javascript code?
I am looking for a parser generator that accepts a Javacc grammar file (.jj) and generates a parser in Javascript (instead of Java). Does such a thing exist? Alternately how difficult would it be to ...
0
votes
1answer
49 views
Javacc for parsing '<UPPER_CASE> <ARROW>
I am writing a parser for a set of CFG.
(Note: The RHS can ONLY be an uppercase letter)
/*ignore declaration and stuff, here's the main part of the code */
void
start():
{
}
{
(
...
1
vote
2answers
330 views
Javacc regular expression that matches all string except certain ones
What is the regular expression that'd match anything , except these strings:
=>, | ?
If you're familiar with javacc, I'm trying to define my ANYTHING token as shown below:
TOKEN :
{
<ARROW: ...
3
votes
1answer
116 views
JavaCC beginning of line
Does JavaCC supports begging of line regex like '^' ?
I have a Token like this
TOKEN: { < ENTRYTK : "DATA"(" ")* > }
Would like it to match only the following regex
^"DATA"[ ]*
I have ...
0
votes
1answer
188 views
JavaCC: How to handle tokens that contain common words
I'm trying to create a parser for source code like this:
[code table 1.0]
code table code_table_name
id = 500
desc = "my code table one"
end code table
... and here below is the grammar I ...
0
votes
0answers
132 views
Java regular expression to JavaCC
I have the string bellow(*) and I need to parse It with Java CC.
Initial string: (*)
SPECIAL_STEP=\/file1\/file_1\/plugins\/plugin_folder\/folder1|
\/folder/subfolder|
...
0
votes
1answer
120 views
Non-English Tokens in JavaCC
I tried this link already: Print in JavaCC. But for some unknown reason that answer didn't work for me. I copied and pasted the text to a file and ran it, but when I inputed µ, for example, it didn't ...
1
vote
1answer
924 views
Parsing Strings with JavaCC
I'm trying to think of a good way to parse strings using JavaCC without mistakenly matching it to another token. These strings should be able to have spaces, letters, and numbers.
My identifier and ...
0
votes
2answers
178 views
Token in JavaCC: make sure that a symbol is single on a line
I need "{" will be single on a line. Therefore I have to use a token that recognize it. This are right examples:
program
{
or
program
{
And this are incorrect examples:
program {
or
...
0
votes
1answer
233 views
Epsilon definition in JavaCC
How can I define Epsilon in JavaCC??
I'm trying smething like
< EPSILON: "">
but it doesn't work.
4
votes
3answers
201 views
Dealing with grammar ambiguity (poker file parsing)
I am currently working on a poker hand history parser as a part of my bachelor project. I've been doing some research past couple of days, and came across a few nice parser generators (of which I ...
0
votes
1answer
70 views
Are shorthand character classes (such as \d) not supported in JavaCC
I am trying to learn to use JavaCC and realized that it has support for regular expressions. Call me lazy but I thought the default/common way to define digits is a bit too long:
TOKEN : { < ...
0
votes
0answers
262 views
JavaCC still wants Lookahead
i'm using javacc to build a lua parser. LOOKAHEAD option is set to 1 and i'm using local lookahead for situations like that:
Chunk -> Statement | Function_Call | Declaration [ecc]
Function_Call ...
1
vote
1answer
110 views
JavaCC grammar conflict
I have a grammar defined roughly like this.
TOKEN:{
<T_INT: "int"> |
<T_STRING: ["a"-"z"](["a"-"z"])*>
}
SKIP: { " " | "\t" | "\n" | "\r" }
/** Main production. */
...
2
votes
1answer
375 views
A java interpreter written in java [closed]
I'd like to write a Java interpreter, in Java, with the intention of adding some other features to the language.
I was wondering if there was already some Java interpreters existing, written in Java, ...
0
votes
1answer
318 views
javacc if statment
I wrote if statement in javacc and do not know how to ignore if the body if the condition is false
First I declare two object class Token and boolean variable, next I check what return method ...
1
vote
1answer
90 views
Defining “groups” of tokens
I'm working on a parser for a simple language using JavaCC.
In my token declaration section, I have something like this
< CONSTANT: < INTEGER > | < FLOAT_NUMBER > | < BOOLEAN > ...
0
votes
1answer
146 views
How To Check Which Regular Expression Is Applied in JavaCC
I've the following regular expressions
TOKEN:{
<CONSTANT:(<DIGIT>)+>
| <ID:<LETTER>(<LETTER> | <DIGIT>)*>
| <#DIGIT:["0"-"9"]>
| ...
1
vote
3answers
551 views
Java: Setting Classpath
I have a project due soon and everything is coming together really nicely, but java classpaths are getting seriously in the way. I'll try to explain the situation as clearly and thoroughly as I can.
...
0
votes
1answer
132 views
Javacc Package Problems
We are implementing a version of gibberish using javacc to build our abstract syntax tree. We have many classes implemented in java that are called by our Parser.jj program. However, Parser.jj doesn't ...
