| 490 | } |
| 491 | |
| 492 | void Reader::skipSpaces() { |
| 493 | while (current_ != end_) { |
| 494 | Char c = *current_; |
| 495 | if (c == ' ' || c == '\t' || c == '\r' || c == '\n') |
| 496 | ++current_; |
| 497 | else |
| 498 | break; |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | bool Reader::match(Location pattern, int patternLength) { |
| 503 | if (end_ - current_ < patternLength) |
nothing calls this directly
no outgoing calls
no test coverage detected