(int pos)
| 183 | } |
| 184 | |
| 185 | @Override |
| 186 | int step(int pos) { |
| 187 | pos += start; |
| 188 | if (pos < end) { |
| 189 | int rune = Character.codePointAt(str, pos); |
| 190 | return rune << 3 | Character.charCount(rune); |
| 191 | } else { |
| 192 | return EOF; |
| 193 | } |
| 194 | } |
| 195 | |
| 196 | @Override |
| 197 | boolean canCheckPrefix() { |
nothing calls this directly
no outgoing calls
no test coverage detected