MCPcopy Create free account
hub / github.com/ClickHouse/ClickHouse / parseImpl

Method parseImpl

base/poco/JSON/src/ParserImpl.cpp:85–96  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83
84
85Dynamic::Var ParserImpl::parseImpl(const std::string& json)
86{
87 if (_allowComments)
88 {
89 std::string str = json;
90 stripComments(str);
91 handle(str);
92 }
93 else handle(json);
94
95 return asVarImpl();
96}
97
98
99Dynamic::Var ParserImpl::parseImpl(std::istream& in)

Callers

nothing calls this directly

Calls 2

handleFunction · 0.85
strMethod · 0.45

Tested by

no test coverage detected