| 1664 | |
| 1665 | |
| 1666 | bool OurReader::readStringSingleQuote() { |
| 1667 | Char c = 0; |
| 1668 | while (current_ != end_) { |
| 1669 | c = getNextChar(); |
| 1670 | if (c == '\\') |
| 1671 | getNextChar(); |
| 1672 | else if (c == '\'') |
| 1673 | break; |
| 1674 | } |
| 1675 | return c == '\''; |
| 1676 | } |
| 1677 | |
| 1678 | bool OurReader::readObject(Token& tokenStart) { |
| 1679 | Token tokenName; |
nothing calls this directly
no outgoing calls
no test coverage detected