(int index)
| 779 | |
| 780 | private final class MethodIdTable extends AbstractList<MethodId> implements RandomAccess { |
| 781 | @Override |
| 782 | public MethodId get(int index) { |
| 783 | checkBounds(index, tableOfContents.methodIds.size); |
| 784 | return open(tableOfContents.methodIds.off + (SizeOf.MEMBER_ID_ITEM * index)) |
| 785 | .readMethodId(); |
| 786 | } |
| 787 | @Override |
| 788 | public int size() { |
| 789 | return tableOfContents.methodIds.size; |
nothing calls this directly
no test coverage detected