MCPcopy Create free account
hub / github.com/Illumina/paragraph / readStringSingleQuote

Method readStringSingleQuote

external/jsoncpp/jsoncpp.cpp:1666–1676  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1664
1665
1666bool 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
1678bool OurReader::readObject(Token& tokenStart) {
1679 Token tokenName;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected