Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
4k views

What is an example of a lexical error and is it possible that a language has no lexical errors?

for our compiler theory class, we are tasked with creating a simple interpreter for our own designed programming language. I am using jflex and cup as my generators but i'm a bit stuck with what a ...
2
votes
0answers
93 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
1answer
100 views

Java tool for matching multiple regular expressions with priorities to multiple strings

I have an unlimited sequence of strings and numerous regular expressions ordered by priorities. For each string in a sequence I have to to find the first matching regular expression and the matched ...
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, ...
1
vote
1answer
219 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
255 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
85 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
1answer
69 views

LookAhead not working in JFlex

I am trying to use JFlex to build a parser but encounter a very basic issue. I want to have this token [A-Za-z]+_N$ { System.out.println("Noun"); } and have it recognize "car_N" as a "Noun" and ...
0
votes
0answers
42 views

How to generate Actionscript classes from .jflex file?

Is there a way to generate actionscript classes from .jflex file? I know we can generate Java files but I need AS3 classes.
0
votes
1answer
88 views

jflex: Why does this regex match?

in my lexer I wrote the following regex: "///"\s*[^@\s].* I executed byacc/j in debug mode and it states that the following line matched the regex. But why does this regex match this line? /// ...
0
votes
0answers
46 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
81 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
141 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
616 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
71 views

[[:jletterdigit:]] to classical regex

What caracters are in [[:jletterdigit:]] in JFlex ? I need to translate [[:jletterdigit:]] to classical regex.
0
votes
1answer
242 views

How do I use regular expression capturing groups with JFlex?

Although this question is about JFlex, it probably applies to other scanner generators such as lex, gnu-flex as well. If I have some rule, how can I create a capturing group in part of that rule and ...
0
votes
1answer
277 views

using JFlex instead of Regex

I am new to JFlex. I have gathered that JFlex is a parser generator. However, I am still not clear about the following and need clarification around the same. How different this is from using regex ...
0
votes
2answers
407 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 ...
0
votes
1answer
286 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
134 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
87 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 ?