peg-go

implementation of a Packrat parser generator in Go
  https://github.com/pointlander/peg
  0
  no reviews



Peg, Parsing Expression Grammar, is an implementation of a Packrat parser generator. A Packrat parser is a descent recursive parser capable of backtracking. The generated parser searches for the correct parsing of the input.

This is the main package used to generate code.