(node)
| 3859 | } |
| 3860 | |
| 3861 | function track(node) { |
| 3862 | if (getTracker(node)) { |
| 3863 | return; |
| 3864 | } |
| 3865 | |
| 3866 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3867 | node._valueTracker = trackValueOnNode(node); |
| 3868 | } |
| 3869 | |
| 3870 | function updateValueIfChanged(node) { |
| 3871 | if (!node) { |
no test coverage detected