()
| 505 | } |
| 506 | |
| 507 | private CatchHandler[] readCatchHandlers() { |
| 508 | int baseOffset = data.position(); |
| 509 | int catchHandlersSize = readUleb128(); |
| 510 | CatchHandler[] result = new CatchHandler[catchHandlersSize]; |
| 511 | for (int i = 0; i < catchHandlersSize; i++) { |
| 512 | int offset = data.position() - baseOffset; |
| 513 | result[i] = readCatchHandler(offset); |
| 514 | } |
| 515 | return result; |
| 516 | } |
| 517 | |
| 518 | private Try[] readTries(int triesSize, CatchHandler[] catchHandlers) { |
| 519 | Try[] result = new Try[triesSize]; |
no test coverage detected