(c: number)
| 771 | } |
| 772 | } |
| 773 | private handleAttrNameEnd(c: number): void { |
| 774 | this.sectionStart = this.index |
| 775 | this.state = State.AfterAttrName |
| 776 | this.cbs.onattribnameend(this.index) |
| 777 | this.stateAfterAttrName(c) |
| 778 | } |
| 779 | private stateAfterAttrName(c: number): void { |
| 780 | if (c === CharCodes.Eq) { |
| 781 | this.state = State.BeforeAttrValue |
no test coverage detected