ed-cooper / Ebnf.Compiler

Compiles EBNF statements to C# DLLs
MIT License
2 stars 0 forks source link

recognize left recursion and convert to non recursion terminal #10

Open furesoft opened 5 years ago

furesoft commented 5 years ago

like x = x | "1" convert to x = {"1"}