ebnf 0.1.4

A successor bnf parsing library of bnf parsing library, for parsing Extended Backus–Naur form context-free grammars
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
source: src/parser.rs
expression: result
---
- "\n             filter ::= a | b ;\n             a ::= 'a';\n             b ::= 'b';\n        "
- - lhs: filter
    rhs:
      Symbol:
        - Terminal: a
        - Alternation
        - Terminal: b
  - lhs: a
    rhs:
      String: a
  - lhs: b
    rhs:
      String: b