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

Method readString

external/jsoncpp/jsoncpp.cpp:664–674  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

662}
663
664bool 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
676bool Reader::readObject(Token& tokenStart) {
677 Token tokenName;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected