Forcibly loads the type of this function from the `Engine`. Note that this is a somewhat expensive method since it requires taking a lock as well as cloning a type.
(&self, store: &StoreOpaque)
| 878 | /// Note that this is a somewhat expensive method since it requires taking a |
| 879 | /// lock as well as cloning a type. |
| 880 | pub(crate) fn load_ty(&self, store: &StoreOpaque) -> FuncType { |
| 881 | FuncType::from_shared_type_index(store.engine(), self.type_index(store)) |
| 882 | } |
| 883 | |
| 884 | /// Does this function match the given type? |
| 885 | /// |
no test coverage detected