Tagged Questions

1
vote
1answer
476 views

Parse tree generation with Java CUP

I am using CUP with JFlex to validate expression syntax. I have the basic functionality working: I can tell if an expression is valid or not. Next step is to implement simple arithmetic operations, ...
0
votes
2answers
406 views

Is there a jflex specification of java string literals somewhere?

And by string literals I mean those containing \123-like characters too. I've written something but I don't know if it's perfect: <STRING> { \" { ...
0
votes
3answers
808 views

Matching Lua's “Long bracket” string syntax

I'm writing a jFlex lexer for Lua, and I'm having problems designing a regular expression to match one particular part of the language specification: Literal strings can also be defined using a ...