(count: number)
| 63 | } |
| 64 | |
| 65 | protected observerAdded(count: number) { |
| 66 | if (count == 1) this._attach() |
| 67 | } |
| 68 | |
| 69 | protected observerRemoved(count: number) { |
| 70 | if (count == 0) this._detach() |
nothing calls this directly
no test coverage detected
searching dependent graphs…