0
votes
2answers
48 views

BASIC Lexer with regex written in Java

I have to code a Lexer in Java for a dialect of BASIC. I group all the TokenType in Enum public enum TokenType { INT("-?[0-9]+"), BOOLEAN("(TRUE|FALSE)"), PLUS("\\+"), MINUS("\\-"), ...
1
vote
1answer
30 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' ...
1
vote
1answer
75 views

Flex lexer output modification

How can I use flex lexer in C++ and modify a token's yytext value? Lets say, I have a rule like this: "/*" { char c; while(true) { c = yyinput(); ...
2
votes
2answers
116 views

How can I keep concatenated tokens separate during lexing when a more general token is availible

The language I'm working on allows certain tokens to be stuck together (eg "intfloat") and I'm looking for a way to have the lexer not turn them into an ID so they're available separately at parse ...
-3
votes
1answer
124 views

logical, Finite State Machine

I am trying to draw out a finite state machine (start, next state etc.) how can I draw this using only 7 states? I wrote out what the table looks like, this inputing characters into tokens Table: ...
1
vote
1answer
121 views

How can I change a token type int an ANTLR3 lexer rule?

I have a lexical rule (Integer) which uses some fragments. In a parser rule (parse) I want to rewrite my tree differently depending on which fragment generated the token in question. I have made a ...
1
vote
1answer
487 views

Should I use/write a template lexer

I'm using a PHP template engine I've written some time ago. It relies on regexes to create a cached PHP file. Some examples of the syntax: {$foo} - regular variable {$foo.bar} - variable foo that ...
1
vote
1answer
386 views

Antlr (lexer): matching the right token

In my Antlr3 grammar, I have several "overlapping" lexer rules, like this: NAT: ('0' .. '9')+ ; INT: ('+' | '-')? ('0' .. '9')+ ; BITVECTOR: ('0' | '1')* ; Although tokens like 100110 and 123 can ...
3
votes
4answers
935 views

Performance of tokenizing CSS in PHP

This is a noob question from someone who hasn't written a parser/lexer ever before. I'm writing a tokenizer/parser for CSS in PHP (please don't repeat with 'OMG, why in PHP?'). The syntax is written ...
2
votes
2answers
428 views

problem string recursion antlr lexer token

How do I build a token in lexer that can handle recursion inside as this string: ${*anythink*${*anything*}*anythink*} ? thanks
1
vote
1answer
618 views

Lexer antlr3 token problem

Can I construct a token ENDPLUS: '+' (options (greedy = false;):.) * '+' ; being considered by the lexer only if it is preceded by a token PREwithout including in ENDPLUS? PRE: '<<' ...
7
votes
3answers
827 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
1answer
100 views

Regular expression token antlrV3

Can I write a rule where the initial token is partly fixed and partly generic? rule: ID '=' NUMBER ; ID: (A.. Z | a.. Z) + NUMBER: (0 .. 9) + But only if the token ID is in the form var* ...
0
votes
2answers
400 views

Antlr3 - HIDDEN token in the parser

Can you use a token defined in the lexer in a hidden channel in a single rule of the parser as if it were a normal token? The generated code is Java... thanks