| 306 | |
| 307 | |
| 308 | JSON::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 | |
| 322 | JSON::Pos JSON::skipArray() const |
no test coverage detected