All files / src/Observable Observable.ts

100% Statements 9/9
100% Branches 1/1
100% Functions 3/3
100% Lines 9/9

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 227x     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
  }
}