ANTLR, ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages.

learn more… | top users | synonyms

1
vote
1answer
54 views

Caused by: java.lang.NoSuchFieldError: ruleMemo

I am getting this exception - sadly, i'm trying to enhance a project to use ivy instead of ant, and while normally I do a process of "add new library file" "run program" "check what library file ...
0
votes
1answer
29 views

How to code grammar or lexer rule to describe JSP/EL identifier or string literal in ANTLR?

How to code grammar or lexer rule to describe JSP/EL identifier or string literal in ANTLR? Remember, that JSP/EL is Unicode and you cannot list all possible symbols in a rule. Also remember, that ...
0
votes
1answer
21 views

How to syntactically ignore a part of an expression in an Antlr BNF?

I would like to use Antlr to parse SQL table DDL statements. But I need only the column identifiers and column types. I do not care about any constraints and I would like to avoid to write the whole ...
0
votes
2answers
41 views

How to match any symbol in ANTLR parser (not lexer)?

How to match any symbol in ANTLR parser (not lexer)? Where is the complete language description for ANTLR4 parsers? UPDATE Is the answer is "impossible"?
0
votes
0answers
29 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
1answer
28 views

delete node in AST base on condition

I am new to use the ANTLR. I have the ANTLR grammar which creates an AST. I want to check that if ComparisonExpr contains the FuzzyExpr then I want to delete this ComparisonExpr node and conjunction ...
0
votes
1answer
22 views

greedy block ()* contains wildcard

I am building a grammar in ANTLR4, and I am getting this warning TL4.g4:224:12: greedy block ()* contains wildcard; the non-greedy syntax ()*? may be preferred Here is the line of code it is ...
0
votes
0answers
48 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 ...
1
vote
3answers
98 views

Reasons for using lex/yacc alternatives?

About once a year I have to develop or at least design a grammar and a parser - that appears a constant of my working life. Every time I'm facing this task, thus about once year, I, quite a lex/yacc ...
1
vote
1answer
43 views

EBNF grammar (ANTLR)

I've got a problem with EBNF grammar in ANTLRWorks: line 37: upper_lower_case : LOWER_CASE | UPPER_CASE ; line 42: CLASSNAME : UPPER_CASE (DIGITS | upper_lower_case )* ; line 51: UPPER_CASE ...
0
votes
1answer
68 views

ANTLR for commercial compilers, Why not?

I was reading Why do we need ANTLR v4?, and I came across this Q: What do you think are the problems people will try to solve with ANTLR4? A: In my experience, almost no one uses parser ...
6
votes
2answers
124 views

Matching arbitrary text (both symbols and spaces) with ANTLR?

How to match any text in ANTLRv4? I mean text, which is unknown at the time of grammar writing? My grammar is follows: grammar Anytext; line : comment; comment : '#' anytext; anytext: ANY*; ...
0
votes
1answer
23 views

Concatenating root text to subnodes in ANTLR

In part of my grammar I can put parts in common of some paths in evidence and in parenthesis put the rest of the path that is different between them, like: foo.bar(A;B;woo.C) is the representation of ...
0
votes
1answer
26 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
24 views

An explanation of an ANTLR syntax required for JSON grammar

At the moment I'm investigating the JSON ANTLR grammar from ANTLR project wiki: http://www.antlr.org/wiki/display/ANTLR3/JSON+Interpreter String : '"' ( EscapeSequence | ~('\u0000'..'\u001f' | ...
0
votes
2answers
38 views

StringTemplate vs. StringTemplateGroup

I'm successfully using StringTemplate 4 to do some code generation in Visual Studio. I've installed the extensions for StringTemplate and ANTLR and they are really great. In testing, I can figure out ...
1
vote
1answer
20 views

antlr left recursion for nesting boolean expressions

I am writing an antlr grammar in which I'd like to be able to have nested expressions, which can be either "simple" expressions or boolean expressions (with optional parentheses). A simple expression ...
0
votes
2answers
54 views

Implementing free form query language in Java

I am working on an api which will take a search string like "(A < 5) & (B = xyz*)" and respond with the correct result. This custom query language is predefined and I can't change it. I know ...
0
votes
0answers
33 views

Building a Sentence Tree

I have gone through OpenNLP, NLTK and few other less famous libraries of natural language processing. I realize, this is not what I need, I mean level of complexity is too high. I just need to ...
0
votes
1answer
16 views

ANTLR rewrite rules in grammar file

I have a rule that looks like this: a : (b | c) d; b : 'B'; c : 'C'; d : 'D'; With this grammar ANTLR builds a flat parse tree. How can I rewrite the first rule (and leave the other two ...
0
votes
1answer
39 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 ...
1
vote
2answers
73 views

Is it possible to parse big file with ANTLR?

Is it possible to instruct ANTLR not to load entire file into memory? Can it apply rules one by one and generate topmost list of nodes sequentially, along with reading file? Also may be it is possible ...
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
24 views

Migrating Antlr v3 grammar to antllr v4

We have a grammar written for antlr V3 and I would like to migrate to antlr v4. Is there any migration Guide. and also I would like to know modifications of existing V3 grammar so that we utilize v4 ...
0
votes
1answer
44 views

How to parse dynamic delimiter using antlr?

I am trying to parse the following command from Cisco IOS config: banner exec <d> <message> <d> where <d> is the delimiting character of user's choice—a pound sign (#), for ...
0
votes
1answer
20 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
23 views

org.antlr.v4.runtime.misc.TestRig hangs

I am trying to execute ANTLRv4 example from here http://www.antlr.org/wiki/display/ANTLR4/Getting+Started+with+ANTLR+v4. I have downloaded antlr-4.0-complete.jar and placed it into some directory. I ...
0
votes
0answers
14 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]+ ; ...
0
votes
1answer
21 views

ANTLR:non-LL(*) decision due to recursive rule

I have tried to resolve this problem(removing the backtrack in my grammar) but i did not succeed,this is my grammar code: i have the problem in the "condition" rule grammar Sample3; options { ...
0
votes
1answer
38 views

Query language translators

Can anyone share some references or, even better, examples of how to define a simple custom query language and then create a translator for queries in this language to SQL queries? I think antlr can ...
0
votes
1answer
51 views

Compiler: what is the best way to fill the symbol table?

I'd like to build my own compiler for tiny C language: I've already make my grammar, build an AST (abstract syntax tree) using ANTLR, and implement my symbol table (following GRosemberg code) I have ...
0
votes
1answer
41 views

“Human-readable” ANTLR-generated code?

I've been learning ANTLR for a few days now. My goal in learning it was that I would be able to generate parsers and lexers, and then personally hand-translate them from Java into my target language ...
0
votes
1answer
12 views

How to modify the parser rule return text in a one-liner action

Let's say I have the following grammar: rule1 : sub1 sub2 sub3 ; Suppose I only want to return rule sub2's text and my target language is C. I tried: rule1 : sub1 sub2 sub3 {$text = ...
0
votes
1answer
27 views

How do I get the original text that an antlr4 rule matched?

Using the Java 7 grammar https://github.com/antlr/grammars-v4/blob/master/java7/Java7.g4 I want to find methods with a specific name and then just print out that method. I see that I can use the ...
0
votes
1answer
24 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
0answers
43 views

Verify if a word is correct according to grammar

I know this must be pretty simple but I just can't figure it out! I have a grammar gramgram.g that's supposed to accept any combination of letters followed by a digit '0'..'9', and when I test it in ...
0
votes
1answer
27 views

(Android) ANTLRStringStream throwing exception

I've been trying to get ANTLR-3.5-complete.jar to work on an Android app, but I can't get it to work! Bart Kiers's answer HERE has helped me a lot, but I still can't get it to work. I'm trying to ...
0
votes
1answer
36 views

Is there a parser generator for ruby that can generate a parser with no gem dependencies?

In an effort to make a DSL I have written backwards-compatible with ruby 1.8 I need to do some (relatively straightforward) parsing on the source strings. I could probably do directly with string ...
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 ...
0
votes
1answer
34 views

How to handle left associative grammar in ANTLR

I am using antlr to generate parser that produces abstract syntax tree. I got some problem about left associative operators. My grammar is like the following: add_expr returns [ASTNode value] ...
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 ...
1
vote
1answer
23 views

ANTLR version2 grammar syntax?

My professor gave us an assignment about ANTLR, but I found that the given grammar file does not work with current ANTLR versions. Actually, it is an example code included in ANTLR v2, which there ...
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
18 views

Modifying values of terminals on run-time in ANTLR

Suppose I have a simple grammar that looks like this: name -> girl_name | boy_name; girl_name -> 'Matilda' | 'Vicky' | 'Alice'; boy_name -> 'Spike' | 'Athos' | 'Mike'; and am modelling it ...
0
votes
0answers
23 views

Parsing tokens from a stream with ANTLR in C#

I am trying to use ANTLR to write a parser for a stream of tokens. The tokens represent words from the English language. When a new word is added at the end of the sentence, I would like to send that ...
0
votes
0answers
16 views

ANTRL pretty error message in case of unbalanced brackits

My problem is if there is an unclosed parenthesis at the end of a document I got the error message: unexpected EOF. This is a bad message and I tried to avoid it. My grammar has a global ...
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 ...
0
votes
0answers
47 views

How to use semantic predicates?

I'm trying to write a grammar that checks a condition and upon the condition it decides whether it goes for the then part or jump to the else part. The Grammar is as follows: grammar test; @members ...

1 2 3 4 5 31