()
| 263 | } |
| 264 | |
| 265 | private consumeCDC(): '-->' | null { |
| 266 | if (this.text.substr(this.nextInputCodePointIndex, 3) === '-->') { |
| 267 | this.nextInputCodePointIndex += 3; |
| 268 | |
| 269 | return '-->'; |
| 270 | } |
| 271 | |
| 272 | return null; |
| 273 | } |
| 274 | |
| 275 | private consumeAMatchToken(): '*=' | '$=' | '|=' | '~=' | '^=' | null { |
| 276 | if (this.text[this.nextInputCodePointIndex + 1] === '=') { |