Parser generator

BlitzMax Forums/BlitzMax Programming/Parser generator

Azathoth(Posted 2011) [#1]
Are there any other parser generators for BlitzMax besides grables? Preferably with more than a one character look ahead?


Tommo(Posted 2011) [#2]
I was writing a compiler in BMX weeks ago. The parser was made with a PEG parser generator (https://github.com/nddrylliog/greg), it generates C source which is very easy to combine with BMX through callbacks.