(c: number)
| 853 | } |
| 854 | } |
| 855 | private stateInDeclaration(c: number): void { |
| 856 | if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) { |
| 857 | // this.cbs.ondeclaration(this.sectionStart, this.index) |
| 858 | this.state = State.Text |
| 859 | this.sectionStart = this.index + 1 |
| 860 | } |
| 861 | } |
| 862 | private stateInProcessingInstruction(c: number): void { |
| 863 | if (c === CharCodes.Gt || this.fastForwardTo(CharCodes.Gt)) { |
| 864 | this.cbs.onprocessinginstruction(this.sectionStart, this.index) |
no test coverage detected