(node)
| 3169 | } |
| 3170 | |
| 3171 | function track(node) { |
| 3172 | if (getTracker(node)) { |
| 3173 | return; |
| 3174 | } |
| 3175 | |
| 3176 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3177 | node._valueTracker = trackValueOnNode(node); |
| 3178 | } |
| 3179 | |
| 3180 | function updateValueIfChanged(node) { |
| 3181 | if (!node) { |
no test coverage detected