Tagged Questions
2
votes
0answers
97 views
Syntaxic analysis and parser
I want to parse something like that :
path.to.variable
"path" and "to" are object named "Instance" and variable reference a double.
I've got the following grammar :
expr ::= ...
1
vote
0answers
15 views
Negated pattern in JFlex
I am using JFlex to parse strings. I have state VARIABLE where I want to parse everything between <...>
For that I defined this in my .flex file:
<VARIABLE> {
[^>]+ { return ...
1
vote
1answer
232 views
Create abstract tree problem from parser
I need big help, I have two simple classes Tree and Node ( I put just interface to use less space on forum, I can easy modify those classes ), I also have flex file and parser file and need to create ...
1
vote
1answer
270 views
Building up a compiler with JFlex/CUP and with some questions
I am currently developing an easy compiler for the language BASIC and I have found some problems which I would like to ask you.
The first one is easy, where I should define my tokens? I mean, in the ...
1
vote
1answer
88 views
distinguishing a string with flex
I need to tokenize some strings which will be splitted of according to operators like = and !=. I was successful using regex until the string has != operator. In my case, string was seperated into two ...
0
votes
0answers
59 views
trial version of JFlashPlayer by VersaEdge Software, LLC. Error is showing in java application
"You are running the trial version of JFlashPlayer by VersaEdge Software, LLC.
Commercial use of this version is prohibited. Go to JPackages.com to register."
This Error is showing in my ...
0
votes
0answers
94 views
Problem installing JFlex
I have been trying to install jflex on ubuntu. I have downloaded both their rpm package and the tar.gz. The md5 checksum of both the packages is not right. I downloaded the same files a couple of ...
0
votes
1answer
168 views
Trouble setting up jFlex
I wanted to use jFlex. Tried to search online tutorials. But all points to the same link.
I could not successfully set up and use Flex on my machine.
It would be great if some one could point me to ...
0
votes
1answer
698 views
JFlex and Cup good book or tutorial
Can anybody give me a link or suggest good book or tutorial for JFlex and Cup ?
I know Flex and Bison, but I think this have some differences in syntax.
0
votes
1answer
76 views
[[:jletterdigit:]] to classical regex
What caracters are in [[:jletterdigit:]] in JFlex ?
I need to translate [[:jletterdigit:]] to classical regex.
0
votes
2answers
444 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
1answer
293 views
Keeping track of state in JFlex
I'm writing a custom flex file to generate a lexer for use with JSyntaxpane.
The custom language I need to lex has different states that can be embedded into each other in a kind of stack.
I.E you ...
0
votes
1answer
135 views
Is inheritance possible in JFlex?
I'm fairly new to JFlex and JSyntaxPane although I have managed to hack together a lexer for XPath.
The problem I find myself in is that I'm working on a project that supports a subset of XPath with ...
-1
votes
2answers
90 views
Regex for name problem
I need regex for recognizing names which can be [a-zA-Z_] then . (dot) then again [a-zA-Z_].
I ([a-zA-Z_]+) \.([a-zA-Z_]*) but it doesn't work. Help ?
Can anybody give me hoe to do that in JFlex ?