(node: TextNode, _oldText: string, newText: string)
| 458 | } |
| 459 | }, |
| 460 | commitTextUpdate(node: TextNode, _oldText: string, newText: string): void { |
| 461 | setTextNodeValue(node, newText) |
| 462 | }, |
| 463 | removeChild(node, removeNode) { |
| 464 | removeChildNode(node, removeNode) |
| 465 | cleanupYogaNode(removeNode) |
nothing calls this directly
no test coverage detected