(node)
| 3946 | } |
| 3947 | |
| 3948 | function track(node) { |
| 3949 | if (getTracker(node)) { |
| 3950 | return; |
| 3951 | } |
| 3952 | |
| 3953 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3954 | node._valueTracker = trackValueOnNode(node); |
| 3955 | } |
| 3956 | |
| 3957 | function updateValueIfChanged(node) { |
| 3958 | if (!node) { |
no test coverage detected