| 1434 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 1435 | |
| 1436 | String Value::toStyledString() const { |
| 1437 | StreamWriterBuilder builder; |
| 1438 | |
| 1439 | String out = this->hasComment(commentBefore) ? "\n" : ""; |
| 1440 | out += Json::writeString(builder, *this); |
| 1441 | out += '\n'; |
| 1442 | |
| 1443 | return out; |
| 1444 | } |
| 1445 | |
| 1446 | Value::const_iterator Value::begin() const { |
| 1447 | switch (type()) { |
nothing calls this directly
no test coverage detected