(&self, idx: ModuleHandleIndex)
| 112 | } |
| 113 | |
| 114 | pub fn module_handle_at(&self, idx: ModuleHandleIndex) -> &ModuleHandle { |
| 115 | match self { |
| 116 | BinaryIndexedView::Module(module) => module.module_handle_at(idx), |
| 117 | BinaryIndexedView::Script(script) => script.module_handle_at(idx), |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | pub fn struct_handle_at(&self, idx: StructHandleIndex) -> &StructHandle { |
| 122 | match self { |
no outgoing calls
no test coverage detected