(node)
| 4059 | } |
| 4060 | |
| 4061 | function track(node) { |
| 4062 | if (getTracker(node)) { |
| 4063 | return; |
| 4064 | } |
| 4065 | |
| 4066 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 4067 | node._valueTracker = trackValueOnNode(node); |
| 4068 | } |
| 4069 | |
| 4070 | function updateValueIfChanged(node) { |
| 4071 | if (!node) { |
no test coverage detected