(node)
| 3901 | } |
| 3902 | |
| 3903 | function track(node) { |
| 3904 | if (getTracker(node)) { |
| 3905 | return; |
| 3906 | } |
| 3907 | |
| 3908 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3909 | node._valueTracker = trackValueOnNode(node); |
| 3910 | } |
| 3911 | |
| 3912 | function updateValueIfChanged(node) { |
| 3913 | if (!node) { |
no test coverage detected