(isOpenImplied: boolean)
| 532 | } |
| 533 | |
| 534 | private closeCurrentTag(isOpenImplied: boolean) { |
| 535 | const name = this.tagname; |
| 536 | this.endOpenTag(isOpenImplied); |
| 537 | |
| 538 | // Self-closing tags will be on the top of the stack |
| 539 | if (this.stack[0] === name) { |
| 540 | this.popElement(!isOpenImplied); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | /** |
| 545 | * @param start Start index for the current parser event. |
no test coverage detected