Tagged Questions
1
vote
1answer
27 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
25 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
0answers
56 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
1answer
69 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 ...
2
votes
2answers
65 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 ...
1
vote
2answers
43 views
Precedence in Antlr using parentheses
We are developing a DSL, and we're facing some problems:
Problem 1:
In our DSL, it's allowed to do this:
A + B + C
but not this:
A + B - C
If the user needs to use two or more different operators, ...
0
votes
0answers
88 views
Can anyone convert this grammar written for a Perl parser generator to ANTLR specific grammar
I had a grammar file written for a Perl parser generator to parse expressions from given input string. There is a limitation that the end expression or goal/target should be a logical expression and ...
1
vote
1answer
124 views
How do I treat <script> tags differently in simple ANTLR lexer?
I'm writing a really simple lexer for doing syntax highlighting of arbitrary text, one of which is HTML. The goal of the lexer is just to provide a flat stream of tokens.
I started with the XML ...
3
votes
2answers
70 views
Lexer tokenises unexpectedly
The following extremely simple example grammar doesn't lex as I expected (at all).
Declaration : 'VAR';
Letter: ('A'..'Z');
message : Declaration Letter+;
what I expected as a result is that ...
-1
votes
1answer
117 views
How to use ANTLR3 lexer only, without parser?
I need to use lexer only in ANTLR3, i don't need parser. How can i do it ? I use the following code (in main.c), which i found somehwere in the internet.
#include <CLexer.h>
#include ...
2
votes
1answer
225 views
ANTLR: Lexer does not recognize token
Given the following Lexer grammar:
lexer grammar CodeTableLexer;
CodeTabHeader : '[code table 1.0]';
Code : 'code';
Table : 'table';
End : 'end';
Row : ...
3
votes
1answer
377 views
ANTLR lexer can't lookahead at all
I have the following grammar:
rule: 'aaa' | 'a' 'a';
It can successfully parse the string 'aaa', but it fails to parse 'aa' with the following error:
line 1:2 mismatched character '<EOF>' ...
1
vote
1answer
290 views
ANTLR lexer exclude string
Hej everyone
I'm trying to build a lexer used to parse a domain specific language.
I have a set of reserved token (fragment RESERVED) and an escape character. The lexer should split whenever a ...
1
vote
1answer
267 views
Forcing an alternative in ANTLR lexer rule
I'm trying to code a context-sensitive lexer rule using ANTLR but can't get it to do what I need. The rule needs to match 1 of 2 alternatives based on characters found in the beginning of the rule. ...
2
votes
1answer
106 views
Antlr v3 error with parser/lexer rules
I am having problems with my Antlr grammar. I'm trying to write a parser rule for 'typedident' which can accept the following inputs:
'int a' or 'char a'
The variable name 'a' is from my lexer rule ...
2
votes
1answer
630 views
Different lexer rules in different state
I've been working on a parser for some template language embeded in HTML (FreeMarker), piece of example here:
${abc}
<html>
<head>
<title>Welcome!</title>
</head>
...
3
votes
2answers
483 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 ...
0
votes
2answers
735 views
Scanner (Lexing keywords with ANTLR)
I have been working on writing a scanner for my program and most of the tutorials online include a parser along with the scanner. It doesn't seem possible to write a lexer without writing a parser at ...
2
votes
1answer
56 views
antlr3 NOT rule
negExpression : (NOT^)* primitiveElement ;
Is the rule I have. I now have this code:
!!(1==1)
I expected I would end up with this tree:
NOT
|
NOT
|
==
/ \
1 1
However, in Antlr3, ...
2
votes
2answers
1k views
Antlr Lexer rules
I've got a rule to match a string that looks like so:
STRING
: '"' ( ~( '"' | '\\' ) | '\\' . )* '"'
;
I dont want the quotes to be part of the tokens text. In Antlr2 I would just put '!' ...
6
votes
2answers
985 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 ...
1
vote
1answer
630 views
ANTLR Lua long string grammar rules
I'm trying to create ANTLR parser for Lua. So i took grammar produced by Nicolai Mainero(available at ANTLR's site, Lua 5.1 grammar) and begin to work.
Grammar is good. One thing not working: LONG ...
4
votes
1answer
502 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,
...
2
votes
1answer
218 views
why does 'a'..'z' in ANTLR match wildcards like $ or £
When I run the following grammer:
test : WORD+;
WORD : ('a'..'z')+;
WS : ' '+ {$channel = HIDDEN;};
and I give the input "?test" why does antlr accept this as valid input? I thought the ('a'..'z') ...
7
votes
3answers
812 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 ...
1
vote
2answers
2k views
How can I modify the text of tokens in a CommonTokenStream with ANTLR?
I'm trying to learn ANTLR and at the same time use it for a current project.
I've gotten to the point where I can run the lexer on a chunk of code and output it to a CommonTokenStream. This is ...
7
votes
2answers
5k 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: ...