(self, store)
| 52 | ) |
| 53 | |
| 54 | def run(self, store): |
| 55 | store.set_capture_target(self.read_slots) |
| 56 | for s in self.reads: |
| 57 | store.read(s) |
| 58 | store.set_capture_target(None) |
| 59 | self.last_run_clock = store.write_clock |
| 60 | self.runs += 1 |
| 61 | |
| 62 | |
| 63 | def frame(store, datasets): |
no test coverage detected