(node)
| 3132 | } |
| 3133 | |
| 3134 | function track(node) { |
| 3135 | if (getTracker(node)) { |
| 3136 | return; |
| 3137 | } |
| 3138 | |
| 3139 | // TODO: Once it's just Fiber we can move this to node._wrapperState |
| 3140 | node._valueTracker = trackValueOnNode(node); |
| 3141 | } |
| 3142 | |
| 3143 | function updateValueIfChanged(node) { |
| 3144 | if (!node) { |
no test coverage detected