Tagged Questions

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

46
votes
4answers
8k views

Advantages of Antlr (versus say, lex/yacc/bison)

I've used lex and yacc (more usually bison) in the past for various projects, usually translators (such as a subset of EDIF streamed into an EDA app). Additionally, I've had to support code based on ...
40
votes
9answers
11k views

ANTLR Tutorials

Are there any good tutorials for ANTLR, targeting v3.x? (The ANTLR website is not friendly to new users.)
26
votes
3answers
7k views

How to convert a String to its equivalent Expression Tree?

This is a simplified version of the original problem. I have a class called Person: public class Person { public string Name { get; set; } public int Age { get; set; } public int Weight ...
21
votes
2answers
3k views

What is a 'semantic predicate' in ANTLR?

What is a semantic predicate in ANTLR?
21
votes
2answers
7k views

antlr: is there a simple example?

I'd like to get started with antlr, but after spending a few hours reviewing the examples at the antlr.org site, I still cant get a clear understanding of the grammar to java process. is there some ...
18
votes
2answers
3k views

lexers vs parsers

Are lexers and parsers really that different in theory ? It seems fashionable to hate regular expressions: coding horror, another blog post. However, popular lexing based tools: pygments, geshi, ...
17
votes
4answers
1k views

Where can I find C# 3.0 grammar?

I'm planning to write a C# 3.0 compiler in C#. Where can I get the grammar for parser generation? Preferably one that works with ANTLR v3 without modification.
14
votes
7answers
6k views

What's better, ANTLR or JavaCC?

Concerns are documentation/learnability, eclipse integration, tooling, community support and performance (in roughly that order).
12
votes
5answers
2k views

ANTLR 3.3 C# Tutorials?

I'm trying to get started with ANTLR and C# but I'm finding it extraordinarily difficult due to the lack of documentation/tutorials. I've found a couple half-hearted tutorials for older versions, but ...
10
votes
3answers
331 views

Parsing Objective-C code for static analysis

I love static analysis and compile-time checks, almost to a fault, but most of my day job is in Objective-C. To resolve this tension, I'd like to be able to write my own analysis tools that I can run ...
9
votes
3answers
2k views

Building own C# compiler using ANTLR: Compilation Unit

// Create a scanner that reads from the input stream passed to us CSLexer lexer = new CSLexer(new ANTLRFileStream(f)); tokens.TokenSource = lexer; // Create a parser that reads from the scanner ...
9
votes
5answers
3k views

Good parser generator (think lex/yacc or antlr) for .NET? Build time only?

Is there a good parser generator (think lex/yacc or antlr) for .NET? Any that have a license that would not scare lawyers? Lot’s of LGPL but I am working on embedded components and some organizations ...
9
votes
4answers
6k views

Tutorial for walking ANTLR ASTs in C#?

Is anyone aware of tutorials for walking ANTLR-generated ASTs in C#? The closest I was able to find is this, but it's not terribly helpful. My goal is to walk through trees that I'm generating based ...
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 ...
8
votes
3answers
303 views

Source of parsers for programming languages?

I'm dusting off an old project of mine which calculates a number of simple metrics about large software projects. One of the metrics is the length of files/classes/methods. Currently my code ...
8
votes
3answers
1k views

Running/Interpreting C on top of the JVM?

Is there a way to run plain c code on top of the JVM? Not connect via JNI, running, like you can run ruby code via JRuby, or javascript via Rhino. If there is no current solution, what would you ...
7
votes
3answers
606 views

ANTLR (or alternative): decoupling parsing from evaluation

I have a relatively simple DSL that I would like to handle more robustly than a bunch of manually-coded java.util.regex.Pattern statements + parsing logic. The most-quoted tool seems to be ANTLR. I'm ...
7
votes
1answer
923 views

How to specify a target package for ANTLR?

If I call: java org.antlr.Tool -o outdir sources/com/example/Java5.g ...with antlr-3.1.3 the parser and lexer code will be generated in the directory outdir/sources/com/example. But the generated ...
7
votes
4answers
941 views

Parsing wikimedia markup - are EBNF-based parsers poorly suited?

I am attempting to parse (in Java) Wikimedia markup as found on Wikipedia. There are a number of existing packages out there for this task, but I have not found any to fit my needs particularly well. ...
7
votes
1answer
1k views

What current tutorials exist for c/c++ for antrl 3.1?

I have written a parser in boost:spirit and now I wish to write the same stuff in antlr 3.1.1 to see if there are any performance gains or if it might be a better way to go about it as it also exports ...
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
306 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 ...
6
votes
1answer
103 views

The following alternatives can never be reached: 2

I'm trying to create a very simple grammar to learn to use ANTLR but I get the following message: "The following alternatives can never be reached: 2" This is my grammar attempt: grammar Robot; ...
6
votes
2answers
437 views

VBScript Partial Parser

I am trying to create a VBScript parser. I was wondering what is the best way to go about it. I have researched and researched. The most popular way seems to be going for something like Gold Parser or ...
6
votes
4answers
172 views

An interesting project to implement to learn Antlr

I am learning Antlr from the book 'The Definitive Antlr reference'. I am still in the beginning stages. I like to do hands on stuff, so I was thinking it would be a great learning experience to do a ...
6
votes
2answers
5k views

How to handle escape sequences in string literals in ANTLR 3?

I've been looking through the ANTLR v3 documentation (and my trusty copy of "The Definitive ANTLR reference"), and I can't seem to find a clean way to implement escape sequences in string literals ...
5
votes
1answer
119 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
502 views

ANTLR ClassCastException

Why do I get this error while generating code in ANTLR? [16:06:38] error(10): internal error: C:\Users\user\Desktop\test.g : java.lang.ClassCastException: org.antlr.runtime.tree.CommonTree cannot be ...
5
votes
1answer
232 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
230 views

ANTLR rule to consume fixed number of characters

I am trying to write an ANTLR grammar for the PHP serialize() format, and everything seems to work fine, except for strings. The problem is that the format of serialized strings is : s:6:"length"; ...
5
votes
2answers
119 views

Is there a utility which given an ANTLR grammar will produce matching strings?

I have an ANTLR grammar and I would like to fuzz my parser.
5
votes
2answers
239 views

When is it practical to use a parser generator?

I'm writing a simple text-template language for a web application I'm writing (think google's ctemplate). When finished, it'll feature only a small number of possible actions, simple stuff like ...
5
votes
4answers
1k views

Removing Left Recursion in ANTLR

As is explained in http://stackoverflow.com/questions/2652060/removing-left-recursion , there are two ways to remove the left recursion. Modify the original grammar to remove the left recursion ...
5
votes
6answers
629 views

Java static source analysis/parsing (possibly with antlr), what is a good tool to do this?

I need to perform static source analysis on Java code. Ideally, I want the system to work out of the box without much modification from me. For example, I have used Antlr in the past, but I spent a ...
5
votes
2answers
643 views

ANTLR AST rules fail with RewriteEmptyStreamException

I have a simple grammar: grammar sample; options { output = AST; } assignment : IDENT ':=' expr ';' ; expr : factor ('*' factor)* ; factor : primary ('+' primary)* ; ...
5
votes
3answers
1k views

Is there a working C++ grammar file for ANTLR?

Are there any existing C++ grammar files for ANTLR? I'm looking to lex, not parse some C++ source code files. I've looked on the ANTLR grammar page and it looks like there is one listed created by ...
5
votes
4answers
569 views

Improving ANTLR DSL parse-error messages

I'm working on a domain-specific language (DSL) for non-programmers. Non-programmers make a lot of grammar mistakes: they misspell keywords, they don't close parentheses, they don't terminate blocks, ...
5
votes
3answers
484 views

Erlang and Antlr

Is it possible to write an Antlr code generation target for Erlang?
5
votes
2answers
2k views

ANTLR “unexpected end of subtree”

Hey. I'm new to ANTLR. ANTLRWorks wizard wrrited for me the following code: grammar test; ID : ('a'..'z'|'A'..'Z'|'_') ('a'..'z'|'A'..'Z'|'0'..'9'|'_')* ; INT : '0'..'9'+ ; FLOAT ...
5
votes
3answers
900 views

What are the disadvantages of using Antlr?

I've worked on Flex, Bison few years ago during my undergraduate studies. However, I don't remember much about it now. Recently, I have come to hear about Antlr. Would you recommend that I learn ...
5
votes
2answers
778 views

What's JavaCC's ADVANTAGE versus ANTLR

Too many people have told me about the disadvantages, but what is its advantage if any?
5
votes
3answers
1k views

Getting started with ANTLR and avoiding common mistakes

I have started to learn ANTLR and have both the 2007 book "The Definitive ANTLR Reference" and ANTLRWorks (an interactive tool for creating grammars). And, being that sort of person, I started at ...
5
votes
2answers
1k views

How to write an ANTLR parser for JSP/ASP/PHP like languages?

I am new to parser generators and I am wondering how the ANTLR grammar for an embedded language like JSP/ASP/PHP might look like, but unfortunately the ANTLR site doesn't provide any such grammar ...
5
votes
2answers
615 views

Parsing CSS with ANTLR - edge cases

I'm trying to parse CSS, or at least the basics, using ANTLR. I'm running into a few problems with my lexer rules though. The problem lies in the ambiguity between an ID selectors and hexadecimal ...
5
votes
8answers
3k views

Which Java oriented lexer parser for simple project (ANTLR, DIY, etc)

I am working on a small text editor project and want to add basic syntax highlighting for a couple of languages (Java, XML..just to name a few). As a learning experience I wanted to add one of the ...
5
votes
3answers
2k views

C# ANTLR grammar?

I'm looking for turn-key ANTLR grammar for C# that generates a usable Abstract Syntax Tree (AST) and is either back-end language agnostic or targets C#, C, C++ or D. It doesn't need to support error ...
4
votes
1answer
214 views

What does “fragment” means in ANTLR?

What does fragment means in ANTLR? I've seen both rules: fragment DIGIT : '0'..'9'; and DIGIT : '0'..'9'; What is the difference?
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
408 views

What are features of ANTLR that XText Does not provide?

I just came across very nice tool Xtext to creat DSL as well as IDE for there editing. I did some search on the web and found people saying it dows not provide all the features of ANTLR. I am using ...
4
votes
1answer
237 views

Is there an existing ANTLR or IRONY grammar for R?

Does anyone know if there is an existing existing ANTLR or IRONY grammar for R? Many thanks.

1 2 3 4 5 17