| 459 | } |
| 460 | |
| 461 | void Reader::skipCommentTokens(Token& token) { |
| 462 | if (features_.allowComments_) { |
| 463 | do { |
| 464 | readToken(token); |
| 465 | } while (token.type_ == tokenComment); |
| 466 | } else { |
| 467 | readToken(token); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | bool Reader::readToken(Token& token) { |
| 472 | skipSpaces(); |
nothing calls this directly
no outgoing calls
no test coverage detected