(c: number)
| 769 | } |
| 770 | } |
| 771 | private stateInDeclaration(c: number): void { |
| 772 | if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) { |
| 773 | this.cbs.ondeclaration(this.sectionStart, this.index); |
| 774 | this.state = State.Text; |
| 775 | this.sectionStart = this.index + 1; |
| 776 | } |
| 777 | } |
| 778 | /** |
| 779 | * XML processing instructions (`<?...?>`). |
| 780 | * |
no test coverage detected