(int length)
| 368 | } |
| 369 | |
| 370 | public short[] readShortArray(int length) { |
| 371 | if (length == 0) { |
| 372 | return EMPTY_SHORT_ARRAY; |
| 373 | } |
| 374 | short[] result = new short[length]; |
| 375 | for (int i = 0; i < length; i++) { |
| 376 | result[i] = readShort(); |
| 377 | } |
| 378 | return result; |
| 379 | } |
| 380 | |
| 381 | public int readUleb128() { |
| 382 | return Leb128.readUnsignedLeb128(this); |
no test coverage detected