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

Method skipNameValuePair

base/base/JSON.cpp:308–319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

306
307
308JSON::Pos JSON::skipNameValuePair() const
309{
310 Pos pos = skipString();
311 checkPos(pos);
312
313 if (*pos != ':')
314 throw JSONException("JSON: expected :.");
315 ++pos;
316
317 return JSON(pos, ptr_end, level + 1).skipElement();
318
319}
320
321
322JSON::Pos JSON::skipArray() const

Callers 1

skipObjectMethod · 0.80

Calls 2

skipElementMethod · 0.80
JSONClass · 0.70

Tested by

no test coverage detected