Tagged Questions
1
vote
1answer
28 views
ANTLR 3, what does LT!* mean?
I was looking at the code for a Javascript grammar written in ANTLR 3,
http://www.antlr3.org/grammar/1206736738015/JavaScript.g
In many instances I found
program
: LT!* sourceElements LT!* ...
0
votes
1answer
65 views
ANTLR won't parse this easy input for simple calculator grammar
grammar TestCSharpParser;
options {
language=CSharp3;
}
@parser::namespace { Demo.Antlr }
@lexer::namespace { Demo.Antlr }
parse returns [double value]
: exp EOF {$value = $exp.value;}
;
...
0
votes
0answers
56 views
Writing antlr grammar to parse a structured text file and store data
I have been trying to write a grammar for the following type of data.
I need to extract the function name with max no. of blocks in each and as well as store all the variable names (those declared ...
0
votes
0answers
93 views
how to use the generated parser from antlr with java
I am trying to generate an AST with Java, for that I used this code:
String src = "int k = 5;";
cAST3Lexer lexer = new cAST3Lexer(new ANTLRStringStream(src));
System.out.println("a");
...
0
votes
1answer
63 views
ANTLR grammar: already known token used within not known expressions
I have a combined ANTLR grammar, which shall be used for parsing several lines of information. It is possible that at the time of writing the grammar, not all lines are already completely known and ...
0
votes
3answers
81 views
manage the operation priority when building ast with c grammar
I am trying to build an AST with my C grammar, wich can be found here . However it does not consider the priority with the operations, for exemple when I input this code :
l = k*j*5 - 10;
I get ...
2
votes
1answer
58 views
ANTLR3: match everything until a specific keyword
I am using ANTLR 3 to do the below.
Assume I have an SQL query. I know that in general it's WHERE, ORDER BY and GROUP BY clauses are optional. In terms of ANTLR's grammar I would describe that like ...
3
votes
1answer
115 views
Invalid casting Issues with antlr grammar / parser in C#
I'm using Anlr 3.5 to generate a parser and lexer from the below included grammar. This grammar is to be used to read strings so as to convert them into an object graph for later evaluation. I however ...
3
votes
2answers
178 views
ANTLR Implicit Multiplication
I'm new to ANTLR, and I'm trying to expand upon the example of a simple calculator presented here. Specifically, I've tried adding some simple functions, negative numbers and so on, to familiarize ...
3
votes
2answers
211 views
boolean and arithmetic exression grammar in ANTLR
I'm trying to write a grammar for arithmetic and boolean expressions. I don't understand what I'm doing wrong. For my grammar, ANTLR says:
[fatal] rule logic_atom has non-LL(*) decision due to ...
1
vote
1answer
153 views
Antlr 3.4.0 mismatched input for generated parser and not in interpreter
I know that this has been discussed thousand times but I still cannot figure out why is following grammar failing. In interpreter everything works fine, without any errors or warnings. However when ...
2
votes
1answer
39 views
Create the same token for all possible increment expressions
I am developing a lexer grammar for C/C++ source code. The goal of the grammar is to fight plagiarism between students at university.
To improve the effectiveness of the grammar, I want ANTLR to ...
0
votes
1answer
138 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
1answer
188 views
I've written a ANTLR grammar, want to convert to JSON
I've created an ANTLR Grammar that properly makes trees of the file type associated with it.
Now what? I don't really get how I make this .g file now parse something. How do I make it do it in my ...
0
votes
0answers
18 views
In an ANTLR grammar, my CTRL + SPACE
Hey guys I'm having trouble making CTRL + SPACE or COMMAND + SPACE work on my eclipse INDIGO with an ANTLR version 3.4 grammar file. I know it has different options but in numerous tutorials I've seen ...
3
votes
3answers
640 views
Testing ANTLR Grammar
So I've been making a grammar in Eclipse with ANTLR v3.4 and I've made one that works and I want to make sure when I edit it everything still works. I can go into the interpretter everytime but that ...
0
votes
1answer
212 views
ANTLR Grammar for literal string with length prefix
How do I write following BNF Grammar in ANTLR?
literal = "{" number "}" CRLF *CHAR8
; Number represents the number of CHAR8s
For example {6}\r\nLENGTH should be mapped to "LENGTH" string.
...
1
vote
2answers
64 views
Optimal ambiguity resolving
I am trying to resolve how to handle ambiguities in ANTLR.
I need to parse identifiers or identifiers with size prefix correctly.
First I came up to this buggy grammar
grammar PrefixProblem;
options ...
0
votes
0answers
99 views
ANTLR3: Hide/Unhide certain tokens dynamically while parsing
I'm using ANTLR3 (C runtime) to parse a text file:
The problem is that I usually want to recognize newline characters, but at some points in the grammar I want to ignore them.
My first approach was ...
1
vote
2answers
235 views
Issues of Error handling with ANTLR3
I tried error reporting in following manner.
@members{
public String getErrorMessage(RecognitionException e,String[] tokenNames)
{
List ...
1
vote
1answer
388 views
How to remove ANTLR3 Warning 'multiple alternatives'
I found number of questions related to 'multiple alternatives'in stackoverflow but nothing was much helpful. Here is a part of my g file in antlr3.
statement:
selection_stmt
| ...
4
votes
2answers
401 views
ANTLR grammar error
I'm trying to built C-- compiler using ANTLR 3.4.
Full set of the grammar listed here,
program : (vardeclaration | fundeclaration)* ;
vardeclaration : INT ID (OPENSQ NUM ...
1
vote
1answer
136 views
Stripping actions from ANTLR grammar changes its parsing algorithm
I have a grammar Foo.xtext (too complex to include it here). Xtext generates InternalFoo.g from it. After some tweaking it also generates DebugInternalFoo.g which claims to be the same thing without ...
1
vote
1answer
85 views
ANTLR unclear multiple alternatives
I have this grammar to match simple logical predicates in ANTLR.
exp : or
;
or : and ('|' or)*
;
and : unit ('&' and)*
;
unit : '(' or ')' |
STRING
;
WS : ...
2
votes
1answer
242 views
How to transform postfix_expression in ANTLR C grammar to AST?
I'm learning ANTLR by modifying the C grammar and trying something interests myself. The C grammar I started with is from: http://www.antlr.org/grammar/1153358328744/C.g
Now I want to transform ...
1
vote
2answers
185 views
ANTLR: Define new channel in grammar
I know it is possible to switch between the default and hidden token channels in an ANTLR grammar, but lets say I want a third channel. How can I define a new token channel in the gramar? For ...
2
votes
2answers
278 views
ANTLR generating empty conditions
I'm trying to learn to use ANTLR, but I cannot figure out what's wrong with my code in this case. I hope this will be really easy for anyone with some experience with it. This is the grammar (really ...
0
votes
1answer
824 views
Is there a way to improve this ANTLR 3 Grammar for positive and negative integer and decimal numbers?
Is there a way to express this in a less repeative fashion with the optional positive and negative signs?
What I am trying to accomplish is how to express optionally provide positive + ( default ) ...
3
votes
2answers
629 views
How to match a fixed number of characters in ANTLR 3?
I want to parse ISO 8601 dates in my ANTLR grammar.
2001-05-03
I have the following entries in my grammar file:
date : FOUR_DIGIT ('-')? TWO_DIGIT ('-')? TWO_DIGIT ;
FOUR_DIGIT
: TWO_DIGIT ...
2
votes
3answers
280 views
Can CSP(Communicating sequential processes) parser be generated using ANTLR?
Can I write a parser for Communicating sequential processes(CSP) in ANTLR? I think it uses left recursion like in statement
VMS = (coin → (choc → VMS))
complete language specification can be found ...
0
votes
1answer
235 views
Xtext: Building type map while parsing
In Xtext, how can I build a type map (i.e. a Java map) from the type declarations in my model file? Say my model file looks like this:
type String { ...some definitions... }
type Foo { ...some ...
1
vote
3answers
103 views
antlr grammar for [Foo]-[Bar]-[Baz][X]-[Y][Z]
I am trying to define a grammar that allows for
[Foo]-[Bar]-[Baz][X]-[Y][Z]
I want to parse this as one set.
I currently have
grammar Sample;
items : (item association? item?)*;
item ...
3
votes
1answer
391 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
402 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
190 views
ANTLR grammar license
I'm planning to make an implementation of Lua for the DLR, and i would like to use the listed Lua 5.1 grammar here. However i can't see a license that it was released under, so can someone please ...
