()
| 229 | } |
| 230 | |
| 231 | public byte peekByte() { |
| 232 | if (index < size) |
| 233 | return buffer[index]; |
| 234 | else |
| 235 | return 0; // XXX - how else to signal error? |
| 236 | } |
| 237 | |
| 238 | /** |
| 239 | * Return the next byte from this Statement. |
no outgoing calls
no test coverage detected