(&self, idx: StructHandleIndex)
| 119 | } |
| 120 | |
| 121 | pub fn struct_handle_at(&self, idx: StructHandleIndex) -> &StructHandle { |
| 122 | match self { |
| 123 | BinaryIndexedView::Module(module) => module.struct_handle_at(idx), |
| 124 | BinaryIndexedView::Script(script) => script.struct_handle_at(idx), |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | pub fn function_handle_at(&self, idx: FunctionHandleIndex) -> &FunctionHandle { |
| 129 | match self { |
no outgoing calls
no test coverage detected