Return the code item for a provided offset.
| 682 | |
| 683 | // Return the code item for a provided offset. |
| 684 | const CodeItem* GetCodeItem(const uint32_t code_off) const { |
| 685 | // May be null for native or abstract methods. |
| 686 | return DataPointer<CodeItem>(code_off); |
| 687 | } |
| 688 | |
| 689 | const char* GetReturnTypeDescriptor(const ProtoId& proto_id) const; |
| 690 |