Tagged Questions

0
votes
1answer
26 views

Character Consumption Question

If i have a subrule like the following: .. (~']' ~']')* ... will it only match an even number of characters?
0
votes
1answer
27 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
28 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 …
0
votes
2answers
21 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
13 views

Comment lexer rule

I'm new to ANTLR and i've come up with this lexer rule to parse out comments, will it work? COMMENT_LINE : (COMMENT (. - LINE_ENDING)* LINE_ENDING){$channel=hidden}; (I couldn't find anything …
1
vote
2answers
118 views

Generate Objective-C parser from BNF grammar

I have looked at the following software tools: Ragel http://www.complang.org/ragel/ ANTLR http://www.antlr.org/ ANTLR seems the most straight-forward, however its documentation is lacking. Ragel …
2
votes
2answers
110 views

Python3.0 - tokenize and untokenize

I am using something similar to the following simplified script to parse snippets of python from a larger file: import io import tokenize src = 'foo="bar"' src = bytes(src.encode()) src = …
1
vote
3answers
285 views

Expression parsing: how to tokenize

I'm looking to tokenize Java/Javascript-like expressions in javascript code. My input will be a string containing the expression, and the output needs to be an array of tokens. What's the best …