The input grammar uses YACC. This is not ideal, because it is newline sensitive: a newline that is not inside of a code block begins a new rule. This makes writing grammars rather annoying. A PEG parser for the PEG input would not start a new rule unless it looked ahead to an <-.
The input grammar uses YACC. This is not ideal, because it is newline sensitive: a newline that is not inside of a code block begins a new rule. This makes writing grammars rather annoying. A PEG parser for the PEG input would not start a new rule unless it looked ahead to an
<-.