()
| 221 | } |
| 222 | |
| 223 | public int next() { |
| 224 | for (int b; ; pos++) { |
| 225 | if ((b = buf[pos] & 0xff) > ' ') { |
| 226 | if (b != '/') // check comment |
| 227 | return b; |
| 228 | skipComment(); |
| 229 | } |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | public int skipNext() { |
| 234 | for (int b; ; ) { |
no test coverage detected