(
textInstance: TextInstance,
oldText: string,
newText: string,
)
| 762 | }, |
| 763 | |
| 764 | commitTextUpdate( |
| 765 | textInstance: TextInstance, |
| 766 | oldText: string, |
| 767 | newText: string, |
| 768 | ): void { |
| 769 | hostUpdateCounter++; |
| 770 | textInstance.text = computeText(newText, textInstance.context); |
| 771 | }, |
| 772 | |
| 773 | appendChild, |
| 774 | appendChildToContainer, |
nothing calls this directly
no test coverage detected