(self: State)
| 26 | |
| 27 | const isActive = (self: State): boolean => self._tag === "Active" |
| 28 | const isChanged = (self: State): boolean => self._tag === "Changed" |
| 29 | const isClosed = (self: State): boolean => self._tag === "Closed" |
| 30 | |
| 31 | describe("SynchronizedRef", () => { |
no outgoing calls
no test coverage detected