(mutation: ChildSetMutation)
| 60 | } |
| 61 | |
| 62 | fireMutation(mutation: ChildSetMutation) { |
| 63 | this.mutationObservers.forEach((observer: ChildSetObserver) => { |
| 64 | observer.handleChildSetMutation(mutation) |
| 65 | }) |
| 66 | globalMutationDispatcher.handleChildSetMutation(mutation) |
| 67 | } |
| 68 | |
| 69 | registerObserver(observer: ChildSetObserver) { |
| 70 | this.mutationObservers.push(observer) |
no test coverage detected