| 662 | } |
| 663 | |
| 664 | bool Reader::readString() { |
| 665 | Char c = '\0'; |
| 666 | while (current_ != end_) { |
| 667 | c = getNextChar(); |
| 668 | if (c == '\\') |
| 669 | getNextChar(); |
| 670 | else if (c == '"') |
| 671 | break; |
| 672 | } |
| 673 | return c == '"'; |
| 674 | } |
| 675 | |
| 676 | bool Reader::readObject(Token& tokenStart) { |
| 677 | Token tokenName; |
nothing calls this directly
no outgoing calls
no test coverage detected