()
| 231 | } |
| 232 | |
| 233 | public int skipNext() { |
| 234 | for (int b; ; ) { |
| 235 | if ((b = buf[++pos] & 0xff) > ' ') { |
| 236 | if (b != '/') // check comment |
| 237 | return b; |
| 238 | skipComment(); |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | public int skipVar(int e) { // ']' or '}' |
| 244 | for (int b, c; ; ) { |
no test coverage detected