MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / parse

Method parse

Source/JSON/jsoncpp.cpp:1871–1879  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1869 OurFeatures const& features)
1870 : collectComments_(collectComments), reader_(features) {}
1871 bool parse(
1872 char const* beginDoc, char const* endDoc,
1873 Value* root, std::string* errs) override {
1874 bool ok = reader_.parse(beginDoc, endDoc, *root, collectComments_);
1875 if (errs) {
1876 *errs = reader_.getFormattedErrorMessages();
1877 }
1878 return ok;
1879 }
1880};
1881
1882CharReaderBuilder::CharReaderBuilder() {

Callers

nothing calls this directly

Calls 2

parseMethod · 0.45

Tested by

no test coverage detected