Tagged Questions
ANTLRWorks is a grammar development environment for ANTLR v3 grammars written by Jean Bovet. It combines a grammar-aware editor with an interpreter for rapid prototyping and a language-agnostic debugger for isolating grammar errors.
6
votes
1answer
103 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;
...
5
votes
2answers
2k views
ANTLR “unexpected end of subtree”
Hey. I'm new to ANTLR. ANTLRWorks wizard wrrited for me the following code:
grammar test;
ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
;
INT : '0'..'9'+
;
FLOAT
...
4
votes
2answers
607 views
Visualizing an AST created with ANTLR (in a .Net environment)
For a pet project I started to fiddle with ANTLR. After following some tutorials I'm now trying to create the grammar for my very own language and to generate an AST.
For now I'm messing around in ...
3
votes
1answer
69 views
ANTLR - Token Enumeration Mismatch Between Grammar and Tree Grammar
BackGround
I am trying to write a simple grammar, using AntlrWorks, for boolean equations that test sets of values for the existence (or lack there of) of specified elements.
I have created a ...
3
votes
2answers
123 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 ...
3
votes
1answer
344 views
ANTLR - trouble getting AST hierarchy setup
I am trying to get my head around the tree construction operators (^ and !) in ANTLR.
I have a grammar for flex byte arrays (a UINT16 that describe number of bytes in array, followed by that many ...
3
votes
2answers
168 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 ...
3
votes
2answers
1k views
How to deal with list return values in ANTLR
What is the correct way to solve this problem in ANTLR:
I have a simple grammar rule, say for a list with an arbitrary number of elements.
list
: '[]'
| '[' value (COMMA value)* ']'
If I wanted ...
2
votes
1answer
58 views
Antlr error 'no viable alternative at character'
I am using the Objective C grammar available here, and trying to parse this code:
int main()
{
int k=0;
}
this is an objective c code and it should get parsed but it is giving me the ...
2
votes
1answer
27 views
Match lowercase with ANTLR
I use ANTLRWorks for a simple grammar:
grammar boolean;
// [...]
lowercase_string
: ('a'..'z')+ ;
However, the lowercase_string doesn't match foobar according to the Interpreter ...
2
votes
2answers
67 views
How to resolve this parsing ambiguitiy in Antlr3
Hopefully this is just the right amount of information to help me solve this problem.
Given the following ANTLR3 syntax
grammar mygrammar;
program : statement* | function*;
function : ID '(' args ...
2
votes
1answer
31 views
Ignoring whitespace in ANTLRworks
I have the following ANTLR grammar:
grammar mygrammar;
ASSIGNMENT
: ID '=' INT
;
ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
;
INT : '0'..'9'+
;
WS : ...
2
votes
2answers
112 views
Lexer and unicode, e.g. German mutated vowel
Two questions:
1. Why is the string abäcd not recognized (ANTLRWorks 1.4.2) with the grammar below (the result is only abcd, that means the German mutated vowel ä is missing)?
2. How can I divide ...
2
votes
1answer
97 views
Hints regarding the use of ANTLR v3 generated files in Flash Builder 4.5.1
According to these instructions, I'm trying to use ANTLR generated *.as files in a current Flash Builder 4.5.1 project.
Therefore, I added this ANTLR's Actionscript runtime to my project - without ...
2
votes
2answers
130 views
Why does my grammar work for operators like *, -, /, but not +?
I'm creating a grammar right now and I had to get rid of left recursion, and it seems work for everything except the addition operator.
Here is the related part of my grammar:
SUBTRACT: '-';
PLUS: ...
2
votes
2answers
355 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 ...
2
votes
1answer
111 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 : ...
2
votes
1answer
243 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
245 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[] {
...
2
votes
2answers
733 views
Does anyone know of a way to debug tree grammars in ANTLRWorks
The recommended pattern for ANTLR usage is to have the Parser construct an Abstract Syntax Tree, and then build Tree walkers (AKA tree grammars) to process them.
I'm trying to get to the bottom of ...
2
votes
2answers
269 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. ...
1
vote
1answer
25 views
How to to create / specify the AST input for testing a tree grammar with ANTLRWorks?
Background: I have created an ANTLR grammar. I am able to test and debug it with ANTLRWorks and have verified that the parser creates the AST that I had in my mind. Now, I want to write a tree grammar ...
1
vote
0answers
24 views
ANTLRWorks 1.4.3 not displaying some characters such as vertical bar and open parenthesis
Forgive me if this question has been asked and addressed elsewhere on this site. When I type in a sample grammar in ANTLRWorks 1.4.3, the editor does not display some characters such as the vertical ...
1
vote
1answer
44 views
ANTLR not throwing errors on invalid input
I'm using ANTLR to parse logical expressions in a Java tool I'm writing, and I'm having issues because passing invalid input strings to the generated ANTLR lexer and parser doesn't cause any ...
1
vote
1answer
29 views
ANTLR Not Emitting Error Messages on Invalid Input
I have begun learning ANTLR in order to implement a domain-specific language (DSL) in the future. I have purchased The Definitive ANTLR Reference and have begun working my way through it in order to ...
1
vote
1answer
45 views
ANTLRWorks 1.4.3 can't display & mutilates ASCII characters
As a new development to my previous question (ANTLRWorks 1.4.3 can't properly read extended-ASCII characters), I created a simple text file using a hex editor:
' ' '£' '°' 'ç'
Or in hex:
27 A0 ...
1
vote
1answer
65 views
ANTLRWorks 1.4.3 can't properly read extended-ASCII characters
I'm working on a fairly standard compiler project for which I picked ANTLR as the parser-generator. While updating an existing grammar from v2 to v3 I noticed that ANTLRWorks, the official IDE for ...
1
vote
1answer
174 views
Decision can match input such as “ID” using multiple alternatives: 1, 2
I am trying to define a simple functional language grammar, I am almost done with my definitions, but I can't get past the following ambiguities.
[14:43:53] warning(200): mygrammar.g:14:11: Decision ...
1
vote
1answer
53 views
How to get rid of the following multiple alternatives warnings in my ANTLR3 grammar?
[11:45:19] warning(200): mygrammar.g:14:57: Decision can match input such as "','" using multiple alternatives: 1, 2
As a result, alternative(s) 2 were disabled for that input
[11:45:19] warning(200): ...
1
vote
1answer
27 views
Why doesn't this ANTLR grammar file generate and how do I fix it?
grammar mygrammar;
string : '"' ( ESC | ~('\u0000'..'\u001f' | '\\' | '\"' ) )* '"';
number : HEX_NUMBER | '-'? INTEGER_NUMBER ( '.' INTEGER_NUMBER )?;
HEX_NUMBER : '0x' HEX_DIGIT+;
...
1
vote
1answer
43 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 ...
1
vote
1answer
49 views
ANTLR antlrWorks error messages are not dispayed to the output console
When enter the following input with an error at the third line :
SELECT entity_one, entity_two FROM myTable;
first_table, extra_table as estable, tineda as cam;
asteroid tenga, tenta as myName, ...
1
vote
1answer
126 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 ...
1
vote
1answer
121 views
Problem with the import of packets in antlrworks
Have to create a package defined by me, containing some of the classes, and I recall that package in a file .java created of the program AntlrWorks in which i did the import. Package named ...
1
vote
1answer
100 views
One Pass Model Tree Hierarchy Creation with a C# target
In short, I'm wondering how to properly build model hierarchies from within an ANTLR grammar in one pass and what the proper way to do that is with the current C# code generation. Accessing return ...
1
vote
1answer
81 views
Non-empty closures and the question mark: only first element is put into the AST?
I'm haunted by a strange phenomenon:
Only the first in x in z: x | '<'! y? '>', where y: x (','! x)*, occurs in the resulting AST. But only if I compile the code using Antlr3 as deployed in the ...
1
vote
1answer
578 views
antlr3 - Generating a Parse Tree
I'm having trouble figuring out the antlr3 API so I can generate and use a parse tree in some javascript code. When I open the grammar file using antlrWorks (their IDE), the interpreter is able to ...
1
vote
1answer
144 views
Parsing Newlines, EOF as End-of-Statement Marker with ANTLR3
My question is in regards to running the following grammar in ANTLRWorks:
INT :('0'..'9')+;
SEMICOLON: ';';
NEWLINE: ('\r\n'|'\n'|'\r');
STMTEND: (SEMICOLON (NEWLINE)*|NEWLINE+);
statement
: ...
1
vote
1answer
277 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 ...
1
vote
1answer
382 views
ANTLR White Space Question (and not the typical one)
Consider this short SmallC program:
#include "lib"
main() {
int bob;
}
My ANTLR grammar picks it up fine if I specify, in ANTLWorks and when using the Interpreter, line endings -> "Mac (CR)". ...
1
vote
0answers
110 views
AntlrWorks do not want to debug C-target code
I am trying to remote debug a grammar that has C as target. AntlrWorks
connects to the parser fine but then it just runs it to the end. I
cannot really step it nor break.
I am using AntlrWorks 1.4.2. ...
1
vote
1answer
173 views
Antlr 3.2 Rewrite Rules
I've recently started learning Antlr and downloading AntlrWorks 1.4 which supposedly includes Antlr 3.2. Now, 3.2 is supposed to support the rewrite rules grammars like '->' but I've not been able to ...
1
vote
1answer
178 views
ANTLR rewrite query text to repeat text with earlier nodes
I am new to ANTLR and am trying to parse queries using the following
grammar SearchEngineQuery;
options { language = CSharp2; output = AST; }
tokens {
AndNode;
}
LPARENTHESIS : '(';
...
1
vote
1answer
122 views
ANTLR ambiguity in DeCaf - professor unsure where error is
I'm working on a project for school with converting a BNF form Decaf spec into a context-free grammar and building it in ANTLR. I've been working on it for a few weeks and been going to the professor ...
1
vote
1answer
268 views
Antlr AST generating (possible) madness
Is the following even possible? I want to "reverse" the input given to antlr and make each token a child of the previous one.
So, for the input (Assume each token is separated by the '.' char) :
...
1
vote
1answer
156 views
MismatchedTokenException in HTML subset grammar
I am writing an ANTLR grammar to recognize HTML block-level elements within plain text. Here is a relevant snippet, limited to the div tag:
grammar Test;
blockElement
: div
;
div
: '<' D I ...
1
vote
1answer
1k 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 : ...
1
vote
6answers
169 views
Will ANTLR Help? Different Suggestion?
Before I dive into ANTLR (because it is apparently not for the faint of heart), I just want to make sure I have made the right decision regarding its usage.
I want to create a grammar that will parse ...
1
vote
1answer
236 views
ANTLR: Parsing 2-digit numbers when other numeric literals are also possible
I'm writing a grammar for a moderately sized language, and I'm trying to implement time literals of the form hh:mm:ss.
However, whenever I try to parse, for example, 12:34:56 as a timeLiteral, I get ...
1
vote
2answers
231 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 ...