(value: unknown)
| 138 | // Observe animations scheduled for next frame. |
| 139 | const values: FrameValue[] = [] |
| 140 | const observe = (value: unknown) => { |
| 141 | if (value instanceof FrameValue && !value.idle) { |
| 142 | getFluidObservers(value)?.forEach(observe) |
| 143 | addFluidObserver(value, frameObserver) |
| 144 | values.push(value) |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | Globals.assign({ |
| 149 | willAdvance: observe, |
nothing calls this directly
no test coverage detected
searching dependent graphs…