Get the type of this function.
(&self, store: impl AsContext)
| 179 | |
| 180 | /// Get the type of this function. |
| 181 | pub fn ty(&self, store: impl AsContext) -> ComponentFunc { |
| 182 | self.ty_(store.as_context().0) |
| 183 | } |
| 184 | |
| 185 | fn ty_(&self, store: &StoreOpaque) -> ComponentFunc { |
| 186 | let cx = InstanceType::new(self.instance.id().get(store)); |
no test coverage detected