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.
0
votes
0answers
27 views
Parsing reals and arrays for Pascal compiler
We're working on a Pascal Compiler and we've got stuck in the array declarations.
Our problem is than we don't know how to make the lexer figure out the difference between 1.3 as NUMBER DOT NUMBER ...
0
votes
0answers
12 views
ANTLRWorks 2 Run menu is dimmed
I have downloaded ANTLRWorks 2, created new file with File->New and pasted Hello sample into it
grammar Hello;
r : 'hello' ID ; // match keyword hello followed by an identifier
ID : [a-z]+ ; ...
-1
votes
2answers
25 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 ...
1
vote
1answer
32 views
Running AntlrWorks2 stand-alone on Windows 7
I must be missing something. After downloading AntlrWorks2 I found the executable bin/antlrworks2.exe and bin/antlrworks264.exe. Aren't these supposed to be the standalone version of the tool? Neither ...
2
votes
2answers
72 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 ...
0
votes
1answer
55 views
ANTLR Tree Grammar -> Generated java class has errors (getText)
When i generate my Tree Parser, i get errors which says the method getText() is undefined for the type object. Can't enter the whole class here since its about 500000 Characters.
But these are the ...
1
vote
1answer
24 views
antlr3 - read closure value to a variable
I would like to parse and read a closure value in a simple text line like this:
1 !something
line
: (NUMBER EXCLAMATION myText=~('\r\n')*)
{ myFunction($myText.text); }
NUMBER
: ...
1
vote
2answers
90 views
ANTLRWorks' classic example doesn't work (Debug's errors)
I am novice to Antlr and I am really lost at this point. Classic example for ANTLRWorks (my version is 1.5) seems not working.
Here, my main code in Expr.g:
grammar Expr;
@header {
package test;
...
2
votes
1answer
71 views
My ANTLR3 tree grammar never matches a particular pattern that is very similar to one that does get matched
I am working on my own language application which is heavily based on the Cymbol grammar from the Language Implementation Patterns book. I have been using ANTLRworks to develop my grammars, and then ...
0
votes
1answer
100 views
Accessing parsed data from Parser in ANTLR4
I am processing my input file through my custom grammar and extracting tokens and returning them in a HashMap. In ANTLR 3 I was able to parse the file by invoking rule() method on parser and getting ...
0
votes
1answer
52 views
Definitive Antlr Reference - Chapter 3 and AntlrWorks
I am new to Antlr and my setup is as follows: Windows 7, Java JDK 1.7.0_17, AntlrWorks 1.5, Antlr 3.5.
The AntlrWorks Help-About shows the following information:
ANTLRWorks 1.5
ANTLR 3.5
...
1
vote
1answer
93 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 ...
0
votes
1answer
69 views
How to parse and split alphabet characters and numbers from a string using ANTLR grammar
I have a grammar which parses alphabet characters and numbers separately:
grammar Demo;
options
{
language = C;
}
program : process+
;
process : Alphanumeric ...
2
votes
1answer
53 views
How to resolve “The following alternatives can never be matched”
I have been struggling to resolve a "multiple alternatives" error in my parser for a couple of days now but with no success. I have been converting Bart Kiers excellent Tiny Language(TL) tutorial code ...
1
vote
0answers
73 views
Left recursive ANTLR grammer
I am new to grammers and antlr. I have written a grammer but getting a left recursive error. Can any one help me with this ?
grammar Lang;
options
{
output = AST;
language = C;
...
0
votes
1answer
102 views
Lexer modes from imported grammar is not identified in combined grammar. Compilation error after clicking 'run in testRig' Antlrworks2
I am using Antlrworks2. There is lexer grammar which has 'lexical modes' defined in it.
I have combined grammar which imports lexer grammar. After generating the code from combined grammar it will ...
0
votes
1answer
53 views
code too large in specialStateTransition(int s, IntStream _input) method of Lexer.java in antlrworks
I am newbie to Antlrworks. I am writing combined grammar file to parse XML file. XML file is pretty big and complex.
There are many lexer rules defined in grammar.
Antlrworks 1.4.3 is generating ...
1
vote
1answer
62 views
Generating Custom JavaDoc In Antlr 3
I am implemented a grammar language in Antlr 3 for my company. Currently, when the code is generated there is no comments. I would like to code comments so that the custom comments appear. For ...
0
votes
1answer
219 views
Unable to install antlrworks2
I downloaded antlrworks2 from the tunnel vision labs website and tried to install it by running the antlrworks2.exe but getting the error "antlrworks2.exe is not a valid win32 application". I tried it ...
0
votes
1answer
58 views
ANTLR error when generating C file using ANTLRWorks
I am using ANTLRWorks 1.5 for C (ANTLR 3.5).
I created a lexer and parser file.
When trying to generate code, it returns as error <[18:52:50] error(100): Script.g:57:2: syntax error: antlr: ...
4
votes
1answer
183 views
ANTLR generating invalid java exceptions throws code
I've been using ANTLRwork 1.5 these days, together with antlr runtime 3.5. Here is a weird thing i found:
Antlr is generating this kind of java code for me:
public final ...
1
vote
3answers
334 views
How do I get ANTLRWorks working?
By following How do I install this damn thing? on www.antlr.org I have got ANTLR 3.5 to work:
$ java -version # I have Oracle`s Java JDK installed
java version "1.7.0_11"
Java(TM) SE Runtime ...
1
vote
1answer
235 views
ANTLRWorks generates Parser declaring throws but nothing else in java file
I just started looking into ANTLR, and noticed ANTLRWorks 1.5 generates the Java parser file, but with incomplete throws declaration.
Grammar file:
grammar ASTDemo;
options {
output=AST;
}
...
1
vote
1answer
52 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
99 views
Antlr works Syntax diagram not generated despite Of true grammar
I am trying to make a compiler like a C .I entered my grammar into antlrWorks IDE and it show no error and but when I want to see the syntax diagram of my rules it complained that " cannot display ...
2
votes
1answer
66 views
complex AST rewrite rule in ANTLR
After the problem about AST rewrite rule with devide group technique at AST rewrite rule with " * +" in antlr.
I have a trouble with AST generating in ANTLR, again :).Here is my antlr code ...
1
vote
1answer
38 views
Remove extra symbol from the repetitive ANTLR rule
Consider the following simple grammar.
grammar test;
options {
language = Java;
output = AST;
}
//imaginary tokens
tokens{
}
parse
: declaration
;
declaration
...
1
vote
1answer
41 views
define a terminal called 'message' to handle “\n” , nightmare ..
i use a definition so called
message : '"'.* '"';
that represents every little thing inside " " is message , terminals
it works well with "lkjaldjfa kajf " something common
but when i met "\n" ...
1
vote
1answer
60 views
only char 'a' cannot be recognized in ANTLR grammar
identification for ID :
ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')*
;
when I parse my rules it , only char 'a' cannot be recognised ,but 'A' or 'aa' or 'a0' or 'b' or ...
0
votes
1answer
27 views
How to format codes automatically in ANTLRWorks?
is there any way to autoformat the codes I've written inside ANTLRWorks IDE?
0
votes
1answer
32 views
Q&A: ANTLRWorks 3.0 mac os version some symbol (like vertical bar '|' ) disappear/not show correctly issue
Someone just like me found that it is hard to use ANTLRWorks 3.0 under Mac OS, some symbols typically vertical bar '|' is invisible . it is because default mac front is not compatible in this IDE,this ...
2
votes
1answer
74 views
Antlr ignoring characters such as ~,@,#,$,%,*,(,),{,},[,]
The Antlr somehow ignores the characters such as ~,@,#,$,%,*,(,),{,},[,] from the input string.
I tested the below grammar with input string's such as show~~~, show ~@#$% etc but the Antlr escapes ...
2
votes
2answers
204 views
ANTLR grammar for variables
Have a look at my grammar
grammar protocol;
options {
language = Java;
output = AST;
}
//imaginary tokens
tokens{
BOOL;
CHAR;
STRING;
}
parse
: declaration
;
...
1
vote
2answers
90 views
Combined grammar works but errors when lexer and parser grammar separated?
Original
this is my first time asking a question on stackoverflow so i hope the solution isn't too blazingly obvious. I am trying to use antlr to parse data from an xml file to generate usable tokens ...
-3
votes
1answer
163 views
ANTLR grammar tutorials [duplicate]
Possible Duplicate:
ANTLR 3.3 C# Tutorials?
I want to create grammar for C# application, but I don't know anything about ANTLR. Does anybody know any good tutorials about defining rules, ...
1
vote
1answer
129 views
How to Manipulate tree grammar
PARSER GRAMMAR
protocol.g
grammar protocol;
options {
language = Java;
output = AST;
ASTLabelType=CommonTree;
}
tokens{
TRANSITIONS;
PAIR;
}
@header {
package ...
2
votes
1answer
57 views
antlr parse xml lost token match or duplicated match
I'm new to ANTLR, and trying following grammar in ANTLRWorks1.4.3.
grammar TextGra;
element : starttag (element)* endtag
;
starttag: '<' TAGNAME '>';
endtag : '</' TAGNAME '>';
...
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 ...
1
vote
2answers
205 views
ANTLR java test file can't create object of tree grammar
I am creating a parser using ANTLR 3.x that targets java. I have written both parser grammar (for creating Abstract Syntax Tree, AST) and Tree Grammar (for performing operations on AST). Finally, to ...
1
vote
1answer
97 views
Why is my tree grammar ambiguous?
I'm a little confused. I have a grammar that works well and matches my language just as I want it to. Recently, I added a couple rules to the grammar and in the process of converting the new grammar ...
1
vote
1answer
56 views
How to get the Text of a Lexer Rule
I have a Antlr Grammar Lexer Rule Like this,
Letter
: '\u0024' | '\u005f'|
'\u0041'..'\u005a' | '\u0061'..'\u007a' |
'\u00c0'..'\u00d6' | '\u00d8'..'\u00f6' |
...
2
votes
1answer
115 views
How to throw an exception in Antlr grammar
I have this kind of a grammar,
locationPath returns [CustomParser xpathParser]
:^(LOCATION_PATH relativeLocationPath {**Want to throw a exception if this condition matches**})
...
1
vote
0answers
81 views
Debugging grammar with Antlworks
I recently discovered AntlrWorks and I'm trying to debug my grammar (edited with Xtext, Eclipse and MWE).
I configured javac path and classpath, but antlrworks is still complaining :
"cannot find ...
0
votes
1answer
66 views
Issues with ANTLR rewrite statement (simple?)
I keep getting MissingTokenException, NullPointerException, and if I remember correctly NoViableAlterativeException. The logfile / console output from ANTLRWorks is not helpful enough for me.
What ...
2
votes
1answer
49 views
ANTLR rule works on its own, but fails when included in another rule
I am trying to write an ANTLR grammar for a reparsed and retagged kconfig file (retagged to solve a couple of ambiguities). A simplified version of the grammar is:
grammar FailureExample;
options {
...
2
votes
2answers
162 views
Remove (absolute) paths in ANTLR generated java classes:
I am using ANTLRWorks 1.4.3 together with ANTLR 3.4 to generate a Java-based parser and lexer from a grammar file. The generated .java-files contain strings like
C:\\Users\\[path to the eclipse ...
1
vote
1answer
290 views
ANTLR lexer exclude string
Hej everyone
I'm trying to build a lexer used to parse a domain specific language.
I have a set of reserved token (fragment RESERVED) and an escape character. The lexer should split whenever a ...
2
votes
2answers
335 views
ANTLR making a grammer for parsing insert/update/delete SQL query
I am new to ANTLR & grammar writing. My requirement is to parse insert/update/delete SQL queries to get details like which table is being update/inserted/deleting a row, list of columns & ...
1
vote
1answer
192 views
ANTLR nested semantic predicates with wildcard operator
I created a grammar for a Scheme-like language interpreter. Initially, I had one semantic predicate for the if-then-else statement to control evaluation i.e. when the conditional is true only the ...
3
votes
1answer
87 views
Resolving a token conflict in antlr
I have a Token OR:'OR'; that I use for evaluating a boolean expression( a==b OR a==c) I have another rule for parsing state abbreviation that are in a char list AZ,AK,OR,GA...
What I am finding is ...

