Return the next byte from this Statement. @return the next byte
()
| 241 | * @return the next byte |
| 242 | */ |
| 243 | public byte readByte() { |
| 244 | if (index < size) |
| 245 | return buffer[index++]; |
| 246 | else |
| 247 | return 0; // XXX - how else to signal error? |
| 248 | } |
| 249 | |
| 250 | /** |
| 251 | * Extract an ATOM, starting at the current position. Updates |
no outgoing calls
no test coverage detected