Tagged Questions
0
votes
1answer
7 views
ANTLRworks and Java grammar problems
I'm working through a ANTLR to generate AST for Java code using Java grammar and i used the command line to compile the files, and i got these problems:
when I used the antlrworks-1-1.4.3.jar with ...
-1
votes
2answers
37 views
ANTLRWorks, whitespaces, memory leaks, and crashing
I wanted to try this tool, antlr, so that I could eventually arrive to parse some code and refactor it. I tried some small grammars, everything was ok, so I took the next step and started parsing a ...
3
votes
2answers
142 views
Is “Implicit token defintion in parser rule” something to worry about?
I'm creating my first grammar with ANTLR and ANTLRWorks 2. I have mostly finished the grammar itself (it recognizes the code written in the described language and builds correct parse trees), but I ...
1
vote
1answer
94 views
the if satement does not work with my grammar
I have an issue with my if statement with my grammar, wich can be found here http://sd-g1.archive-host.com/membres/up/24fe084677d7655eb57ba66e1864081450017dd9/CNew.txt . When I type for example in ...
1
vote
1answer
58 views
ANTLRWorks debugging - the meaning of the different colors?
I'm using the debugging mode of ANTLRWorks to test my c-grammar. Debugging in ANTLRWorks is really great for better understanding but I have a problem in understanding the different colors of the ...
0
votes
1answer
48 views
Controlling token reduction
is there a way to controll the reduction operation of a token with ANTLR at runtime.
For example, I've an ANTLR grammar that looks like:
s: ( a | b);
a: WORD;
b: WORD;
WORD: ('a'..'z')+
Where the ...
0
votes
1answer
147 views
Finding Next Expected token If error occures ANTLR 3
I am using ANTLR 3 , I have a question is that How can i find the next expected token if any error is occurred in input . I have tried to override getErrorMessage(RecognitionException e, String[] ...
0
votes
2answers
295 views
ANTLRWorks debugging error
When i debug the grammar in the ANTLRWorks 3.4 it gives me folloing error,
javax.swing.text.BadLocationException: Position not represented by view
Grammar which given above error is listed below.
...
1
vote
2answers
239 views
ANTLR ignoring AST operators
I am using the ^ and ! operators to set the root node and to not not be included in the AST, respectively. However, it is not making a difference in the tree that is generated by ANTLRWorks. So I am ...
0
votes
2answers
243 views
ANTLRworks creating interpreter from grammar
Hey I have a quick question. I am using ANTLRworks to create an interpreter in Java from a set of grammar. I was going to write it out by hand but then realized I didn't have to because of antlrworks. ...
0
votes
1answer
124 views
ANTLRWorks - Code Generation getting stuck and not generating
Ive defining a grammar for arithmetric expressions using the following syntax. Its a subset of a more complicated whole, but the problems only occured when i extended the grammar to include Logical ...
-1
votes
1answer
526 views
1
vote
1answer
96 views
Making ANTLRWorks handle whitespaces automatically
I have an ANTLR grammar like this:
grammar HelloGrammar1;
ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')* ;
STATEMENT : 'hello' ID ';' ;
WS : (' '|'\t'|'\r'|'\n')* ;
I want it ...
3
votes
2answers
305 views
Parsing with incomplete grammars
Are there any common solutions how to use incomplete grammars? In my case I just want to detect methods in Delphi (Pascal)-files, that means procedures and functions. The following first attempt is ...
2
votes
1answer
399 views
Nested brackets/chars '(' and ')' in grammar/ANTLRWorks warning: Decision can match input such as … using multiple alternatives
The grammar below parses ( left part = right part # comment ), # comment is optional.
Two questions:
Sometimes warning (ANTLRWorks 1.4.2):
Decision can match input such as "{Int, Word}" using ...
6
votes
1answer
167 views
The following alternatives can never be reached: 2
I'm trying to create a very simple grammar to learn to use ANTLR but I get the following message:
"The following alternatives can never be reached: 2"
This is my grammar attempt:
grammar Robot;
...
1
vote
1answer
668 views
ANTLR/Grammar issue: calculator language
I'm attempting to create a boolean expression language/grammar for a personal project. The user will be able to write a string in a Java-like syntax, with provision for variables, which will be ...
2
votes
2answers
593 views
Looking for Antlr Grammar syntaxt highlight in VS2010
I am looking for some way to edit antlr grammar files directly within VS2010 with syntax highlight.
I have used antlrworks a lot but it has the drawback that I have to start antlrworks separately and ...
0
votes
1answer
285 views
using antlrworks to solve left-recursive
Hi I want to write a grammer( Using ANTLRWORKS ) that accept later ( in debugging mode ) this code
repeat_until
:'repeat' seq_statement 'until' exp
;
read :
'read' ID ';'
...
1
vote
1answer
407 views
AntlrWorks & language grammar errors
Working on a game project that involves a scripting language that I want to interpret into a virtual machine code that can be executed directly. I've included the grammar below. All the lexer rules ...
3
votes
2answers
257 views
Is it possible to have a grammar where a “keyword” can also be treated as a “non-keyword”?
I have the following grammar in ANTLRWorks 1.4. I'm playing around with ideas for implementation of a parser in a text-adventure game creator, where the user will specify the various allowable ...
2
votes
1answer
137 views
What is wrong with this grammar? (ANTLRWorks 1.4)
I have the following code written in ANTLRWorks 1.4
grammar hmm;
s : (put_a_in_b)|(put_out_a)|(drop_kick)|(drop_a)|(put_on_a);
put_a_in_b : (PUT_SYN)(ID)(IN_SYN)(ID);
put_out_a : ...
3
votes
1answer
400 views
What does ^ and ! stand for in ANTLR grammar
I was having difficulty figuring out what does ^ and ! stand for in ANTLR grammar terminology.
2
votes
1answer
2k views
ANTLR: simple example from ANTLRWorks wizard doesn't work
Grammar:
grammar test;
WS : ( ' '
| '\t'
| '\r'
| '\n'
) {$channel=HIDDEN;}
;
STRING
: '"' ( ESC_SEQ | ~('\\'|'"') )* '"'
;
fragment
HEX_DIGIT : ...
2
votes
1answer
406 views
problem antlrworks code too large
In Antlrworks I get this error:
[18:21:03] Checking Grammar Grammar.g...
[18:21:26] Grammar.java:12: code too large
[18:21:26] public static final String[] tokenNames = new String[] {
...
1
vote
2answers
288 views
Can ANTLR generate a parser class that is final?
I'm using ANTLR 3.1 and ANTLRWorks to generate a parser class in Java. The parser performs better if I mark the generated class with the Java final keyword. The problem is: I am adding this keyword ...
0
votes
2answers
1k views
Compiling ANTLRWorks generated class files
I am using ANTLRWorks to create ANTLR grammars. I have a valid grammar and the parser and lexer source files are generated as well. I have also tried debugging the generated code and the output is as ...
2
votes
2answers
411 views
How to specify the exact number of occurance of a token in ANTLR?
I have to define the grammar of a file like the one shown below.
//Sample file
NameCount = 4
Name = a
Name = b
Name = c
Name = d
//End of file
Now I am able to define tokens for NameCount and Name. ...


