(&self, store: &StoreOpaque)
| 449 | } |
| 450 | |
| 451 | fn is_valid_impl(&self, store: &StoreOpaque) -> bool { |
| 452 | let id = store.id(); |
| 453 | let version = store.vm_store_context().execution_version; |
| 454 | self.store_id == id && self.store_version == version |
| 455 | } |
| 456 | |
| 457 | /// Get a handle to the next frame up the activation (the one that |
| 458 | /// called this frame), if any. |
no test coverage detected