Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 7x 7x 67x 154x 154x 83x 83x 54x 154x | import { scope } from '../constants'
import { type Observer } from '../types'
export class Observable<V> {
readonly observers = new Set<Observer>()
rawValue: V
get value () {
const { activeWatcher } = scope
if (activeWatcher) {
this.observers.add(activeWatcher)
activeWatcher.destructors.add(() => {
this.observers.delete(activeWatcher)
})
}
return this.rawValue
}
}
|