| 574 | } |
| 575 | |
| 576 | bool Reader::readString() { |
| 577 | Char c = 0; |
| 578 | while (current_ != end_) { |
| 579 | c = getNextChar(); |
| 580 | if (c == '\\') |
| 581 | getNextChar(); |
| 582 | else if (c == '"') |
| 583 | break; |
| 584 | } |
| 585 | return c == '"'; |
| 586 | } |
| 587 | |
| 588 | bool Reader::readObject(Token &tokenStart) { |
| 589 | Token tokenName; |
nothing calls this directly
no outgoing calls
no test coverage detected