Resolves a [`Callee::FuncRef`] from a type index.
(&mut self, idx: TypeIndex)
| 179 | |
| 180 | /// Resolves a [`Callee::FuncRef`] from a type index. |
| 181 | pub(crate) fn funcref(&mut self, idx: TypeIndex) -> Callee { |
| 182 | Callee::FuncRef(idx) |
| 183 | } |
| 184 | |
| 185 | /// Resolves a function [`Callee`] from an index. |
| 186 | pub(crate) fn callee_from_index(&mut self, idx: FuncIndex) -> Callee { |
no test coverage detected