| 547 | } |
| 548 | |
| 549 | bool Reader::readCStyleComment() { |
| 550 | while (current_ != end_) { |
| 551 | Char c = getNextChar(); |
| 552 | if (c == '*' && *current_ == '/') |
| 553 | break; |
| 554 | } |
| 555 | return getNextChar() == '/'; |
| 556 | } |
| 557 | |
| 558 | bool Reader::readCppStyleComment() { |
| 559 | while (current_ != end_) { |
nothing calls this directly
no outgoing calls
no test coverage detected