Re: Questions about PEG parsing

2021-11-02 Thread Matt Wette
On 10/23/21 4:25 PM, Vivien Kraus via General Guile related discussions wrote: Dear guile users, There are two ways to make a parser with guile: the undocumented LALR(1) parser generator, for which I don’t know how to reuse grammar elements, and the PEG parser. I'm not sure what your needs are

Re: Questions about PEG parsing

2021-11-01 Thread Robin Templeton
Vivien Kraus via General Guile related discussions writes: > There are two ways to make a parser with guile: the undocumented > LALR(1) parser generator, for which I don’t know how to reuse grammar > elements, and the PEG parser. The lalr module isn't documented in the Guile manual itself, but h

Questions about PEG parsing

2021-10-23 Thread Vivien Kraus via General Guile related discussions
Dear guile users, There are two ways to make a parser with guile: the undocumented LALR(1) parser generator, for which I don’t know how to reuse grammar elements, and the PEG parser. The manual shows an example for a PEG parser. According to wikipedia, which is cited in the manual itself, PEG can