(node, text)
| 375 | setTextNodeValue(node, '') |
| 376 | }, |
| 377 | unhideTextInstance(node, text) { |
| 378 | setTextNodeValue(node, text) |
| 379 | }, |
| 380 | getPublicInstance: (instance): DOMElement => instance as DOMElement, |
| 381 | hideInstance(node) { |
| 382 | node.isHidden = true |
nothing calls this directly
no test coverage detected