(&self, store: &StoreOpaque)
| 382 | } |
| 383 | |
| 384 | pub(crate) fn abi_async(&self, store: &StoreOpaque) -> bool { |
| 385 | let instance = self.instance.id().get(store); |
| 386 | let component = instance.component(); |
| 387 | let (_ty, _def, options) = component.export_lifted_function(self.index); |
| 388 | component.env_component().options[options].async_ |
| 389 | } |
| 390 | |
| 391 | pub(crate) fn abi_info<'a>( |
| 392 | &self, |
no test coverage detected