| 556 | } |
| 557 | |
| 558 | bool Reader::readCppStyleComment() { |
| 559 | while (current_ != end_) { |
| 560 | Char c = getNextChar(); |
| 561 | if (c == '\r' || c == '\n') |
| 562 | break; |
| 563 | } |
| 564 | return true; |
| 565 | } |
| 566 | |
| 567 | void Reader::readNumber() { |
| 568 | while (current_ != end_) { |
nothing calls this directly
no outgoing calls
no test coverage detected