rust-lexer 0.2.0

A compiler that generates a Lexer using DFAs (inspired by flex)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<AND>
  <STAR>
    <AND>
      <STAR>
        <BAR>
          <BAR>
            <"a"> </"a">
            <"b"> </"b">
          </BAR>
          <"c"> </"c">
        </BAR>
      </STAR>
      <"a"> </"a">
    </AND>
  </STAR>
  <"b"> </"b">
</AND>