(node)
| 3843 | } |
| 3844 | |
| 3845 | function track(node) { |
| 3846 | if (getTracker(node)) { |
| 3847 | return; |
| 3848 | } |
| 3849 | |
| 3850 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3851 | node._valueTracker = trackValueOnNode(node); |
| 3852 | } |
| 3853 | |
| 3854 | function updateValueIfChanged(node) { |
| 3855 | if (!node) { |
no test coverage detected