Skip to content
Advertisement

Tag: parser-generator

Who is faster: PEG or GLR?

I’m trying to create some kind of lint tool for the C/AL programming language. So basically I need to perform syntax and lexical analysis against the source code. I’ve planned to write parser from the scratch, but then discovered that there are a lots of tools helping generate these parsers automatically. I need performance, since checking 20 megabytes of code

Advertisement