(CharSequence str, int start, int end)
| 177 | final int end; |
| 178 | |
| 179 | public UTF16Input(CharSequence str, int start, int end) { |
| 180 | this.str = str; |
| 181 | this.start = start; |
| 182 | this.end = end; |
| 183 | } |
| 184 | |
| 185 | @Override |
| 186 | int step(int pos) { |
nothing calls this directly
no outgoing calls
no test coverage detected