()
| 253 | } |
| 254 | |
| 255 | private consumeCDO(): '<!--' | null { |
| 256 | if (this.text.substr(this.nextInputCodePointIndex, 4) === '<!--') { |
| 257 | this.nextInputCodePointIndex += 4; |
| 258 | |
| 259 | return '<!--'; |
| 260 | } |
| 261 | |
| 262 | return null; |
| 263 | } |
| 264 | |
| 265 | private consumeCDC(): '-->' | null { |
| 266 | if (this.text.substr(this.nextInputCodePointIndex, 3) === '-->') { |