(&self, idx: FunctionHandleIndex)
| 126 | } |
| 127 | |
| 128 | pub fn function_handle_at(&self, idx: FunctionHandleIndex) -> &FunctionHandle { |
| 129 | match self { |
| 130 | BinaryIndexedView::Module(module) => module.function_handle_at(idx), |
| 131 | BinaryIndexedView::Script(script) => script.function_handle_at(idx), |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | pub fn function_instantiations(&self) -> &[FunctionInstantiation] { |
| 136 | match self { |
no outgoing calls