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