()
| 234 | } |
| 235 | |
| 236 | private consumeAWhitespace(): InputToken { |
| 237 | whitespaceRegEx.lastIndex = this.nextInputCodePointIndex; |
| 238 | whitespaceRegEx.exec(this.text); |
| 239 | this.nextInputCodePointIndex = whitespaceRegEx.lastIndex; |
| 240 | |
| 241 | return ' '; |
| 242 | } |
| 243 | |
| 244 | private consumeAHashToken(): InputTokenObject { |
| 245 | this.nextInputCodePointIndex++; |
no outgoing calls
no test coverage detected