()
| 384 | } |
| 385 | |
| 386 | private _closeVoidElement(): void { |
| 387 | const el = this._getContainer(); |
| 388 | if (el !== null && this._getTagDefinition(el)?.isVoid) { |
| 389 | this._containerStack.pop(); |
| 390 | } |
| 391 | } |
| 392 | |
| 393 | private _consumeElementStartTag(startTagToken: TagOpenStartToken | IncompleteTagOpenToken) { |
| 394 | const attrs: html.Attribute[] = []; |
no test coverage detected