| 6 | import { Token, ValueListObserver, ValueListObserverDelegate } from "../mutation-observers" |
| 7 | |
| 8 | export interface BindingObserverDelegate extends ErrorHandler { |
| 9 | bindingConnected(binding: Binding): void |
| 10 | bindingDisconnected(binding: Binding, clearEventListeners?: boolean): void |
| 11 | } |
| 12 | |
| 13 | export class BindingObserver implements ValueListObserverDelegate<Action> { |
| 14 | readonly context: Context |
no outgoing calls
no test coverage detected
searching dependent graphs…