Version 3 of ANTLR (ANother Tool for Language Recognition) created and written by Dr. Terrence Parr

learn more… | top users | synonyms

0
votes
0answers
10 views

Antlr3- Implement “for loop”

I am writing a DSL using ANTLR but stuck in implementing "for loops", "if statements". This is my first shot with ANTLR and implementing a DSL so please bear with me. My tree walker (partial code) ...
0
votes
1answer
21 views

Parsing ANTLRv3 tree doent not produce full tree

I'm using ANTLRv3. I've defined a grammar. Now I want to display Parse Tree (like in ANTLRWorks Parse Tree or STACK). I've tried http://www.antlr.org/wiki/display/ANTLR3/Interfacing+AST+with+Java ...
0
votes
0answers
49 views

ANTLR 3.5 throwing OutofMemory (OOM) Error

We are using ANTLR 3.5 for grammar generation. When we are parsing our large data files, ANTLR is throwing Out of memory error. As one of post suggested (using ANTLR in java cause OOM) I tried using ...
0
votes
1answer
27 views

Building a parse tree in ANTLR with python target

I have a grammar for parsing SQL scripts. The lexer for the grammar works fine with the following code: with open("/path/to/sql/script.sql") as f: query = f.read().upper() tokenStream = ...
0
votes
1answer
40 views

copy nodes of trees using ANTLR tree grammars

I need some guidance on trying to solve a problem I ran across using tree grammars. Basically, I want to be able to do is replace/copy statements around that may be found in the tree. It is probably ...
0
votes
0answers
24 views

manually create AST subtree and associated tokens without reference to token stream

I need to construct new AST subtrees including tokens that do not refer to the input token stream. I need to know how to construct non-root AST tree nodes and the tokens to attach to them. Is the ...
1
vote
2answers
33 views

move subtree from one part of AST to another

I am working on a tool to convert Oracle SQL to ANSI SQL. I have a grammar that will parse both Oracle SQL and ANSI SQL. I want to extract the Oracle outer join expressions from the where clause part ...
0
votes
1answer
18 views

Parsing issues in Antlr3 for Linux and Windows

I am trying to parse a piece of trigger code using antlr. While I was able to parse it successfully on Windows, it results in an exception in Linux for the function MATCHT() (which is in turn calling ...
0
votes
1answer
21 views

Custom initialization/cleanup in ANTLR3

I need to do custom initialization & cleanup in most of my rules. Is there any way to avoid duplication in @init/finally blocks? Currently my rules look like: rule @init { int mark = init(); } ...
0
votes
1answer
21 views

init_declarator is a non-unique reference Antlr?

I am starting my symbol table, still new to it but facing some errors given by antlr in reference to my init_declarator rule. Any tips please declaration : declaration_specifiers ...
0
votes
1answer
25 views

The following sets of rules are mutually left-recursive TREE GRAMMAR

I have a complete parser grammer than generates an AST which i could say is correct using the rewrite rules and tree operators. At the moment i am stuck at the phase of creating a tree grammar.I have ...
0
votes
1answer
25 views

What does cause Antlr to create a large tokenstream resulting in out of memory

One of our web applications regulary dies because its out of memory. The sparse data we gathered from memory dumps suggests there is an issue in our antlr parsing implementation. What we see is a ...
0
votes
0answers
16 views

ANTLR3 (ANTLRWorks 1.5) does not generate (Java) code

I'm trying to generate a Java Lexer/Parser from an ANTLR 3.5 grammar file. I don't get any errors, but only two warnings: [00:21:39] warning(200): soap.g:11:6: Decision can match input such as ...
0
votes
1answer
36 views

Parse and Tree as much of the input as possible?

I'm looking to get antlr to parse/tree as much of the input as possible so that the information can be used for intellisense. Maybe this is the wrong approach but seems like the only way to get decent ...
1
vote
1answer
59 views

Antlr Tree Grammar to Generate Pmachine code?

I am presently working on a project to build a small c compiler to run on a pmachine. Presently, i started off using a stripped version of a full c grammar. Parsing looks okay at the moment and i used ...
0
votes
1answer
27 views

How to use ANTLR to parse “vector<int>(10)”?

I'm trying to use ANTLR3 to parse some C++ codes. I want to parse template in C++. But I got some troubles when I am trying to parse this: vector<int>(10) I found this is a legal input ...
0
votes
0answers
29 views

The interpreter is disabled

I wanted to create a simple compiler using ANTLR 3.5 and java 1.6 + I added jar files but I am getting this error and "Reason could not create a grammar" but I don't understand why any help? It is not ...
0
votes
0answers
27 views

how to improve antlr cpp generated lexer size

I noticed the generated XXXLexer.cpp file size increases quite rapidly for each new case insensitive lexer rule in a grammar targeting Cpp. (the same grammar targeting Java generates much more ...
0
votes
1answer
29 views

ANTLR3 String Literals and Disallowing Nested Comments

I've recently been tasked with writing an ANTLR3 grammar for a fictional language. Everything else seems fine, but I've a couple of minor issues which I could do with some help with: 1) Comments are ...
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
0answers
15 views

antlr3 match any text until keyword

I have following grammar: javadoc returns [String doc="";] :'javadocStart' (.)* 'javadocEnd'; which works (doc is currently not modified the code is commented out ) in antlworks interpreter ...
0
votes
1answer
47 views

NetBeans platform language and ANTLR lexer

How to adapt the NetBeans LexerInput to a CharStream of ANTLR. I have the next implementation, but don't work well. I want to add a new language to the NetBeans platform throught ANTLR lexer. The ...
1
vote
1answer
28 views

ANTLR: match tokens with whitespace

I want to match an expression with white space as single token. Following are my lexer rules: HOUR : (INTEGER) ('hour'|'hours') ; MINUTE : (INTEGER) ('min'|'minute'|'minutes') ; INTEGER : '0' 'x' ...
0
votes
0answers
27 views

Antlr parsing hexadecimal number

I have following grammar for parsing time expressions like '1 day 2 hour'. time : timeLiteral | FLOAT | INTEGER ; timeLiteral : dayExpr hourExpr? minuteExpr? ; dayExpr : timeVal ...
0
votes
1answer
58 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 ...
0
votes
0answers
37 views

ANTLR3 Reduce memory usage

I have written a parser in ANTLR3. Targets are both Java and CSharp3. Both are using a lot of memory at parse time. The files I am parsing have a size between 5 and 40 MB. Memory Usage is far beyond ...
0
votes
1answer
30 views

ANTLR grammar matches incompatible rule instead of throwing NoViableAltException

I have the following ANTLR grammar that forms part of a larger expression parser: grammar ProblemTest; atom : constant | propertyname; constant: (INT+ | BOOL | STRING | DATETIME); ...
1
vote
2answers
47 views

Parsing floating-point number and ranges separated by two periods with ANTLR 3

I am working on a parser for a DSL that has two currently 'conflicting' features: Floating-point numbers like 123.4. Ranges specified like ID[2..5] (ID is defined as 'a'..'z'+ and doesn't matter ...
0
votes
1answer
31 views

How to allow an identifer which can start with a digit without causing MismatchedTokenException

I want to match the following input: statement span=1m 0_dur=12 with the following grammar: options { language = Java; output=AST; ASTLabelType=CommonTree; } statement :'statement' 'span' '=' ...
0
votes
1answer
54 views

VS2012 ANTLR Language Support generated parser does not compile

I am using VS2012 with the ANTLR Language Support and ANTLR C# files version 3.5.0.2 to generate the C# code for the lexer and parser. My Grammar contains the following (only sections given here) ...
1
vote
1answer
25 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 : ...
0
votes
1answer
66 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;} ; ...
1
vote
1answer
46 views

Compiling ANTLR 3C for AIX

I'm not too familiar with compiling for C, so if I don't give enough information, let me know what you need me to post! Here's the summary: I need to run ANTLR in the target language of C on a ...
1
vote
2answers
97 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; ...
0
votes
0answers
58 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 ...
1
vote
0answers
29 views

ANTLR3 Kleene star and tree traversal

I'm an experienced yacc/bison abuser. I'm used to building my own trees and then traversing them. So, now, switching to ANTLR3 (why 3? Because 4 doesn't support Python, that's why!)... I have the ...
0
votes
1answer
27 views

ANTLR3 grammar works with spaces but gives NoViableAltException when I omit spaces

I need to parse user input that defines queries to a system. The heart of such queries are triplets which can also be combined to form complex queries (the idea is to restrict a result set to only ...
0
votes
1answer
50 views

Antlr parser for custom requirement

I have a very peculiar requirement to parse inputs using ANTLR. I would like to be able to parse expressions like; Correct Inputs user name user_name user-name | EATALL any thing could come ...
0
votes
1answer
47 views

How can I limit the length of a token in antlr3?

I am trying to build a compiler using antlr and for now I want to limit the length of the identifiers in my language to less than 9. My code now look like this: IDENTIFIER: CHAR(CHAR|INT)*; where ...
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
2answers
60 views

How to get access to current tree node inside grammar?

The question is about how to get access to current tree node inside {"action"} block in the grammar. I'm talking about Java target, so inside generated rule-method I'd like to gain access to object ...
0
votes
1answer
79 views

Using Tree Walker with Boolean checks + capturing the whole expression

I have actually two questions that I hope can be answered as they are semi-dependent on my work. Below is the grammar + tree grammar + Java test file. What I am actually trying to achieve is the ...
1
vote
0answers
31 views

Basic Antlr 3.1 Error Handling Issue (Python)

I created an Antlr 3.1 grammar I am using to parse an sql like language. The parsing is fine, but I am trying to make it spit out useful Exceptions. I have a set number of 'functions' that can be ...
1
vote
1answer
20 views

ANTLR How to get specific error message when using 2 alternatives in a start rule

I am trying to parse a file that can contain either a table creation script or index creation script. Below is the grammar. When I run scripts rule with some junk input create xyz table I get an error ...
1
vote
1answer
70 views

How do you add imaginary tokens for a separated ANTLR lexer & parser?

I'm building an AST using ANTLR and based on the separated Java6 lexer & grammar. The lexer definition is contained in Java6Lex.g and produces tokens the grammar consumes. The parser consumes ...
0
votes
2answers
154 views

numerous template errors generating OracleSQL grammar using Antlr-3.5-complete.jar

The same oracle SQL grammar generates without errors using Antlr-3.3-complete.jar and compiles successfully using Netbeans/GCC or Visual Studio. Generating the grammar with Antlr-3.5-complete.jar ...
2
votes
1answer
29 views

AST rewrite rule for OR lexer expressions

I have the following ANTLR rule: procedure : ('int' | 'char') IDENT '(' args ')' body -> ^(PROCEDURE IDENT (args)* body) ; I want to capture the ('int' | 'char') portion in the AST. As you can ...
2
votes
2answers
66 views

ANTLR3 Syntax Highlighting the Hidden Channel in a ICSharpCode.TextEditor

I have been making some progress in the development of our little DSL but have run into a problem when trying to highlight the comments in the TextEditorControl we are using. The ICSharpCode control ...
2
votes
1answer
72 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
0answers
21 views

ANTLR: bug in setUnknownTokenBoundaries()?

CommonTree#setUnknownTokenBoundaries() updates token boundaries of an AST node by using the boundaries of the node's first and last child. This seems to assume that the children of the AST are ...

1 2 3 4 5 11