(node)
| 3808 | } |
| 3809 | |
| 3810 | function track(node) { |
| 3811 | if (getTracker(node)) { |
| 3812 | return; |
| 3813 | } |
| 3814 | |
| 3815 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3816 | node._valueTracker = trackValueOnNode(node); |
| 3817 | } |
| 3818 | |
| 3819 | function updateValueIfChanged(node) { |
| 3820 | if (!node) { |
no test coverage detected