| 192 | func (pn *dotClass) Matches(ch int) bool { return true } |
| 193 | |
| 194 | type charClass struct { |
| 195 | Ch int |
| 196 | } |
| 197 | |
| 198 | func (pn *charClass) Matches(ch int) bool { return pn.Ch == ch } |
| 199 |
nothing calls this directly
no outgoing calls
no test coverage detected