Tagged Questions
Version 3 of ANTLR. ANTLR stands for ANother Tool for Language Recognition (ANTLR).
15
votes
5answers
577 views
Are there any LL Parser Generators for Functional Languages such as Haskell or Scala?
I've noticed a distinct lack of LL parsers that create parsers in functional languages. The ideal find for what I've been looking for without success is something to generate a Haskell parser for an ...
13
votes
3answers
583 views
Scala parser combinators vs ANTLR/Java generated parser?
I am writing an expression parser for an app written mostly in Scala. I have built AST objects in Scala, and now need to write the parser. I have heard of Scala's built-in parser combinators, and also ...
8
votes
5answers
1k views
Can Xtext be used for parsing general purpose programming languages?
I'm currently developing a general-purpose agent-based programming language (its syntaxt will be somewhat inspired by Java, and we are also using object in this language).
Since the beginning of the ...
6
votes
1answer
109 views
ANTLR: Syntax Errors are ignored when running parser programmatically
I am currently creating a more or less simple expression evaluator using ANTLR.
My grammar is straightforward (at least i hope so) and looks like this:
grammar SXLGrammar;
options {
language = ...
6
votes
1answer
304 views
if then else conditional evaluation
I have a language which basically is meant to map columns to a new structure in an array. The language is meant for product managers to define mappings without having to know a lot of programming ...
5
votes
1answer
118 views
ANTLR Decision can match input using multiple alternatives
I have this simple grammer:
expr: factor;
factor: atom (('*' ^ | '/'^) atom)*;
atom: INT
| ':' expr;
INT: ('0'..'9')+
when I run it it says :
Decision can match input such as '*' using ...
5
votes
1answer
231 views
Why are antlr3 c# parser methods private?
I'm building a parser in antlr which compiles to a working java target. When I retarget for c#2 it produces a parser in which all of the parse methods are private but marked with a ...
5
votes
1answer
3k views
Is C++ code generation in ANTLR 3.2 ready?
I was trying hard to make ANTLR 3.2 generate parser/lexer in C++. It was fruitless. Things went well with Java & C though.
I was using this tutorial to get started: ...
4
votes
1answer
128 views
Can I add Antlr tokens at runtime?
I have a situation where my language contains some words that aren't known at build time but will be known at run time causing the need to constantly rebuild / redeploy the program to take into ...
4
votes
1answer
244 views
Using @header in ANTLR
I'm having trouble getting the "@header" or any other @ rule to work in ANTLR. With a very basic grammer, like this:
grammar test;
options {
language = CSharp2;
}
@header {
using ...
4
votes
3answers
562 views
ANTLR grammar: parser- and lexer literals
What's the difference between this grammar:
...
if_statement : 'if' condition 'then' statement 'else' statement 'end_if';
...
and this:
...
if_statement : IF condition THEN statement ELSE ...
4
votes
2answers
1k views
Seeking very simple ANTLR error handling example when generating C code
I want to generate C code. I will not be reading from an input file, one line at a time (as, for instance, a compiler might). Rather, I will be parsing user input as it arrives, one line at a time.
I ...
3
votes
0answers
46 views
Parser and Lexer Files Not Auto Generated by Ecllipse
I'm using the antlr-3.4-complete-no-antlrv2.jar version of ANTLR on Eclipse Indigo. I've installed the ANTLR IDE plugin along with ZEST and GEF. When I generate a combined grammar file and add a ...
3
votes
2answers
52 views
Switching lexer state in antlr3 grammar
I'm trying to construct an antlr grammar to parse a templating language. that language can be embedded in any text and the boundaries are marked with opening/closing tags: {{ / }}. So a valid template ...
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
1answer
59 views
Can I remove ANTLR dependencies from generated code?
ANTLR generates java source from the grammar file. Generated source has dependency to ANTLR classes.
Can I generate 'clean' java sources using ANTLR, that do not have any antlr - dependecy?
If not, ...
3
votes
1answer
75 views
Get active Antlr rule
Is it possible to get the "active" ANTLR rule from which a action method was called?
Something like this log-function in Antlr-Pseudo-Code which should show the start and end position of some rules ...
3
votes
1answer
151 views
Multiple alternatives with the same label, only the last gets anything assigned to it
I have some non-reserved keywords I'm matching with rules like:
kFOO = {self.input.LT(1).text.lower() == 'FOO'}? ID;
Where the ID token is a standard alpha-numeric string. These kinds of rules work ...
3
votes
3answers
280 views
Why my antlr lexer java class is “code too large”?
This is the lexer in Antlr (sorry for a long file):
lexer grammar SqlServerDialectLexer;
/* T-SQL words */
AND: 'AND';
BIGINT: 'BIGINT';
BIT: 'BIT';
CASE: 'CASE';
CHAR: 'CHAR';
COUNT: 'COUNT';
...
3
votes
1answer
252 views
Editor generator for ANTLR grammars?
I'm using ANTLR for creating a new general purpose programming language and I'm quite happy with it.
Due to the fact that I would like to provide good tools for ease the development of programs ...
3
votes
2answers
86 views
How to make antlr3 parsing “forward?”
I'm trying to parse the following grammar with Antlr3:
String...
java.lang.String
java.lang.Object...
This is my .g file (part of it):
doc: name DOTS? EOF;
name: ATOM ('.' ATOM)*;
ATOM: ('a' .. ...
3
votes
1answer
258 views
Where Are All the Grammar Options in Antlr3?
In Antlr2 there were numerous grammar options that could be set (reference). Now in Antlr3 we have like 1/3 of the amount of options (reference).
So I have two questions concerning this:
Does ...
3
votes
1answer
250 views
ANTLR3 lexer precedence
I want to create a token from '..' in the ANTLR3 lexer which will be used to string together expressions like
a..b // [1]
c .. x // [2]
1..2 // [3]
3 .. 4 // [4]
So, I have added,
...
3
votes
2answers
345 views
Help with parsing a log file (ANTLR3)
I need a little guidance in writing a grammar to parse the log file of the game Aion. I've decided upon using Antlr3 (because it seems to be a tool that can do the job and I figured it's good for me ...
3
votes
2answers
1k views
Extending simple ANTLR grammer to support input variables
I'm still on my quest for a really simple language and I know now that there are none. So I'm writing one myself using ANTLR3.
I found a really great example in this answer:
Exp.g:
grammar Exp;
...
3
votes
6answers
457 views
Which Antlr book is “best”?
I am short on funds and can only afford one. I am a total novice.
Thanks in advance for any help.
3
votes
2answers
515 views
ANTLR parser hanging at proxy.handshake call
I am attempting to get a basic ECMAScript parser working, and found a complete ANTLR grammar for ECMAScript 3, which appears to compile ok and produces the appropriate Lexer/Parser/Walker Java files.
...
3
votes
2answers
406 views
How to serialise an antlr3 AST
Hiya,
I have just started using antlr3 and am trying to serialize the AST output of a .g grammar.
Thanks,
Lezan
2
votes
1answer
38 views
Antlr Tree traversing using Java
I have a question regarding Antlr, I am building a simple parser with it but I can't traverse the tree. I have found many online tutorials and they use a getAst(); function of the Parser class. Does ...
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
61 views
sbt and antlr, got simple example?
Does anyone have an example of how to set up sbt to build an ANTLR file (to scala) and then compile the resulting code.
My file layout
src/main/scala/Test.scala // scala test rig
...
2
votes
1answer
69 views
How to get line number in ANTLR3 tree-parser @init action
In ANTLR, version 3, how can the line number be obtained in the @init action of a high-level tree-parser rule?
For example, in the @init action below, I'd like to push the line number along with the ...
2
votes
1answer
73 views
ANTLR - allowing for incomplete grammar
I'm using ANTLR to parse strings of mathematical expressions and tag them using MathML.
Right now I have the grammar below. Now I have three questions:
The grammar allows for complete expressions ...
2
votes
1answer
68 views
How can I implement a parser rule in ANTLR that combines two nodes into one?
The second alternative ((1-9)(0-9)) of the following parser rule results in two nodes in the abstract syntax tree.
oneToHundred
: ('1'|'2'|'3'|'4'|'5'|'6'|'7'|'8'|'9')
| ...
2
votes
1answer
57 views
Negating inside lexer- and parser rules
How can the negation meta-character, ~, be used in ANTLR's lexer- and parser rules?
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
3answers
36 views
java Main < inputfile does not work (Main is a java Class to test an ANTLR grammar)
I am trying to test an ANTLR grammar with such a standard test rig
import org.antlr.runtime.*;
class Main {
public static void main(String[] args) throws Exception {
SampleLexer lexer = new ...
2
votes
1answer
61 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 ...
2
votes
1answer
69 views
ANTLR3 Hetero nodes are not created
I am trying to create a heterogeneous tree based on a sample provided here: http://www.antlr.org/wiki/display/ANTLR3/Tree+construction#Treeconstruction-Heterogeneoustreenodes
I have created a grammar ...
2
votes
1answer
90 views
How can I simplify token prediction DFA?
Lexer DFA results in "code too large" error
I'm trying to parse Java Server Pages using ANTLR 3.
Java has a limit of 64k for the byte code of a single method, and I keep running into a "code too ...
2
votes
1answer
45 views
ANTLR3 common values in 2 different domain values
I need to define a language-parser for the following search criteria:
CRITERIA_1=<values-set-#1> AND/OR CRITERIA_2=<values-set-#2>;
Where <values-set-#1> can have values from 1-50 ...
2
votes
3answers
109 views
Better way to map tokens to enum values?
I'm trying to have my parser rule select an enum value based on my DIR token. Is there a way I can do this without creating separate, full-fledged tokens for each direction? Or generally a cleaner ...
2
votes
1answer
78 views
ANTLR grammar for defining/calling multi-parameter functions
I have a grammar that I'd like to include multi-parameter functions in (like f(x,y)). I'm using AST output with my own tree parser. Right now my parameter list production is
paramdefs: (ID COMMA)* ID ...
2
votes
2answers
92 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 ...
2
votes
1answer
79 views
Whats the correct way to add new tokens (rewrite) to create AST nodes that are not on the input steam
I've a pretty basic math expression grammar for ANTLR here and what's of interest is handling the implied * operator between parentheses e.g. (2-3)(4+5)(6*7) should actually be (2-3)*(4+5)*(6*7).
...
2
votes
2answers
276 views
ANTLR grammar for reStructuredText (rule priorities)
First question stream
Hello everyone,
This could be a follow-up on this question: Antlr rule priorities
I'm trying to write an ANTLR grammar for the reStructuredText markup language.
The main ...
2
votes
1answer
204 views
Building a library using autotools from cmake
This is my first try with cmake and I would like to have, if possible, some feedbacks about what I did since some problems remain.
In the CMakeLists.txt of the library folder, I created two makefile ...
2
votes
2answers
193 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
1answer
314 views
How do I get an Antlr Parser rule to read from both default AND hidden channel
I use the normal whitespace separation into the hidden channel but I have one rule where I would like to include any whitespace for later processing but any example I have found requires some very ...
2
votes
1answer
372 views
ANTLR's AST tree grammar + lists
I've have read a lot trying to find a way to cleanly consume lists in ANTLR's tree grammar. Here is what I have tried and their results (I really hope I'm missing something trivial)...
Using += ...