Tagged Questions
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
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
1answer
284 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 ...