2
votes
1answer
31 views
What’s JavaCC’s ADVANTAGE versus ANTLR
Too many people have told me about the disadvantages, but what is its advantage if any?
0
votes
3answers
37 views
How to use ANTLR to parse xml document
can anybody tell how to use ANTLR tool(in java) to create our own grammar for xml documents and how to parse those documents using ANTLR tool(in java)?
1
vote
6answers
51 views
Will ANTLR Help? Different Suggestion?
Before I dive into ANTLR (because it is apparently not for the faint of heart), I just want to make sure I have made the right decision regarding its usage.
I want to create a gra …
0
votes
3answers
67 views
JavaCC Problem - Generated code doesn’t find all parse errors
Just started with JavaCC. But I have a strange behaviour with it. I want to verify input int the form of tokens (letters and numbers) wich are concatenated with signs (+, -, /) and …
2
votes
1answer
29 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
2answers
87 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 perso …
0
votes
2answers
27 views
Problems with implicit “and” in query grammar build using Antlr
I have been building a google-like query syntax parser in ANTLR (C#).
I am finished except for one thing, which I have struggled with for a long time and failed to solve.
If the …
0
votes
2answers
42 views
ANTLR: “missing attribute access on rule scope” problem
I am trying to build an ANTLR grammar that parses tagged sentences such as:
DT The NP cat VB ate DT a NP rat
and have the grammar:
fragment TOKEN : (('A'..'Z') | ('a'..'z'))+; …
7
votes
4answers
309 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 …
0
votes
1answer
40 views
Tolerating malformed statements with ANTLR (e.g., for code-completion)
I have an ANTLR grammar for a simple DSL, and everything works swimmingly when there are no syntax errors. Now, however, I need to support an auto-completion mechanism, where I ne …
1
vote
4answers
99 views
What’s the matter with this Grammar?
grammar Test;
IDHEAD: ('a'..'z' | 'A'..'Z' | '_');
IDTAIL: (IDHEAD | '0'..'9');
ID: (IDHEAD IDTAIL*);
fragment
TYPE: ('text' | 'number' | 'bool');
define: 'define' ID 'as' …
0
votes
1answer
30 views
Antlr @header declaration for C++ generation
In ANTLR version 2.X you could specify something was to go before or after the ANTLR includes via the code below.
header "pre_include_hpp"
{
#pragma warning( push )
#prag …
1
vote
3answers
47 views
How do I manage optional whitespace in ANTLR?
I am trying to parse a data file in ANTLR - it has optional whitespace exemplified by
3 6
97 12
15 18
The following shows where the line starts and ends are. There is a ne …
0
votes
1answer
22 views
How to generate introductory recognizer using ANTLR3C?
The Definitive ANTLR Guide starts with a simple recognizer. Using grammar verbatim to target C-runtime fails because '%s' means something to ANTLR:
$ cat T.g
grammar T;
optio …
15
votes
3answers
1k 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 sup …
