@param {string} data
(data)
| 54 | |
| 55 | /** @param {string} data */ |
| 56 | addTextNode(data) { |
| 57 | data = trimRight(data); |
| 58 | data.length === 0 || this.addChildElement(new Text(data)); |
| 59 | } |
| 60 | |
| 61 | setSelfCloseElem() { |
| 62 | this.openElem.children = undefined; |
nothing calls this directly
no test coverage detected