LR-Parser icon indicating copy to clipboard operation
LR-Parser copied to clipboard

LR Parser (LR(0), SLR(1), CLR(1) and LALR(1))

Results 5 LR-Parser issues
Sort by recently updated
recently updated
newest added

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...