LR-Parser
LR-Parser copied to clipboard
LR Parser (LR(0), SLR(1), CLR(1) and LALR(1))
I hope you will find refactoring useful and interesting, if you have test grammars with particular cases let me have them and I will gladly try them, the ones I...
Hello! Can you add to existing project release binary, please? Thank you!
When processing left recursion, the function computeFirst will be in endless loop
The following test problem shows a missing reduce on $ (EOF) for state 0. Grammar: S -> a S -> epsilon I'll create a pull request with fix. ```java import...
There are some issues in the Action Table. It doesn't accept the grammar and throws Null Pointer Exception while giving `S -> A` `A -> a` this grammar as input...