Tell our children about our new value
(value: T, idle = false)
| 84 | |
| 85 | /** Tell our children about our new value */ |
| 86 | protected _onChange(value: T, idle = false) { |
| 87 | callFluidObservers(this, { |
| 88 | type: 'change', |
| 89 | parent: this, |
| 90 | value, |
| 91 | idle, |
| 92 | }) |
| 93 | } |
| 94 | |
| 95 | /** Tell our children about our new priority */ |
| 96 | protected _onPriorityChange(priority: number) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…