Tagged Questions

1
vote
1answer
309 views

Practical difference between parser rules and lexer rules in ANTLR?

I understand the theory behind separating parser rules and lexer rules in theory, but what are the practical differences between these two statements in ANTLR: my_rule: ... ; MY_RULE: ... ; Do ...
1
vote
1answer
666 views

How to get ANTLR to output hierarchical ASTs?

I have a Lua grammar, (minor modifications to get it to output for C#, just namespace directives and a couple of option changes) and when I run it on some sample input, it gives me back a tree with a ...
0
votes
1answer
95 views

Lexing space seperated words in ANTLR3 where some words are keywords

I am working on a project that involves transforming part of speech tagged text into an ANTLR3 AST with phrases as nodes of the AST. The input to ANTLR looks like: DT-THE The NN dog VBD sat IN-ON on ...
0
votes
1answer
59 views

How to exclude more than one character in rule?

I'm trying to write a string matching rule in ANTLRWorks, and i need to match either escaped quotes or any non quote character. I can match escaped quotes but I'm having trouble with the other part: ...
0
votes
2answers
85 views

How do i add parens to this rule?

I have a left-recursive rule like the following: EXPRESSION : EXPRESSION BINARYOP EXPRESSION | UNARYOP EXPRESSION | NUMBER; I need to add parens to it but i'm not sure how to make a left parens ...
0
votes
1answer
43 views

Character Consumption Question

If i have a subrule like the following: .. (~']' ~']')* ... will it only match an even number of characters?
0
votes
2answers
149 views

ANTLRWorks error compiling grammar: “syntax error: invalid char literal: INVALID”

I wrote a stub for a grammar (only matches comments so far), and it's giving me the error "syntax error: invalid char literal: <INVALID>". Moreover, i've tracked down the error to being in the ...