()
| 115 | } |
| 116 | |
| 117 | func init() { |
| 118 | var z nstate |
| 119 | dmatch.enc = z.enc() |
| 120 | for i := range dmatch.next { |
| 121 | if i != '\n' { |
| 122 | dmatch.next[i] = &dmatch |
| 123 | } |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | // init initializes the matcher. |
| 128 | func (m *matcher) init(prog *syntax.Prog) error { |
nothing calls this directly
no test coverage detected
searching dependent graphs…