(node)
| 3041 | } |
| 3042 | |
| 3043 | function track(node) { |
| 3044 | if (getTracker(node)) { |
| 3045 | return; |
| 3046 | } |
| 3047 | |
| 3048 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3049 | node._valueTracker = trackValueOnNode(node); |
| 3050 | } |
| 3051 | |
| 3052 | function updateValueIfChanged(node) { |
| 3053 | if (!node) { |
no test coverage detected