warburec / GenCompilation

A project providing an easy-to-use and extensible framework for creating and prototyping languages and grammars.
https://warburec.github.io/GenCompilation/
GNU General Public License v3.0
3 stars 2 forks source link

Formatting for BNF ORs #39

Closed warburec closed 1 day ago

warburec commented 2 days ago

BNF should allow formatting of production rule alternatives as follows.

A -> b
    | c
    | B d
B -> e
    | f
warburec commented 1 day ago

41