(int pos)
| 206 | } |
| 207 | |
| 208 | @Override |
| 209 | int context(int pos) { |
| 210 | pos += start; |
| 211 | int r1 = pos > 0 && pos <= str.length() ? Character.codePointBefore(str, pos) : -1; |
| 212 | int r2 = pos < str.length() ? Character.codePointAt(str, pos) : -1; |
| 213 | return Utils.emptyOpContext(r1, r2); |
| 214 | } |
| 215 | |
| 216 | @Override |
| 217 | int endPos() { |
nothing calls this directly
no test coverage detected