(text)
| 6688 | |
| 6689 | class TextNode { |
| 6690 | constructor(text) { |
| 6691 | this.text = void 0; |
| 6692 | this.text = text; |
| 6693 | } |
| 6694 | /** |
| 6695 | * Converts the text node into a DOM text node. |
| 6696 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected