(node)
| 3681 | } |
| 3682 | |
| 3683 | function track(node) { |
| 3684 | if (getTracker(node)) { |
| 3685 | return; |
| 3686 | } |
| 3687 | |
| 3688 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3689 | node._valueTracker = trackValueOnNode(node); |
| 3690 | } |
| 3691 | |
| 3692 | function updateValueIfChanged(node) { |
| 3693 | if (!node) { |
no test coverage detected