0
votes
0answers
39 views

Using astCUP and compiling the generated classes

I am currently working on a project compiler and language that is almost the same as Java. I was able to scan, parse and compile all the generated scanner,sym and parser classes from JFlex and ...
12
votes
3answers
700 views

Are C# and Java Grammars LALR(x)?

I wonder if C# and Java grammars are LALR(x)? If yes, what's the value of x? Edit: After accepting the true answer, I think it is better to change the Q in this way: Is there any LALR(x) parser ...
2
votes
3answers
2k views

How to write LALR parser for some grammar in Java?

I want to write Java code to build a LALR parser for my grammar. Can someone please suggest some books or some links where I can learn how to write Java code for a LALR parser? Thanks in advance
1
vote
1answer
171 views

Java CUP resources, is it still used?

I have recently been tasked to working on code that uses Java CUP. Does anybody still use it? I've found a couple small resources on it, but it looks like there isn't much documentation on the main ...