| 1452 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 1453 | |
| 1454 | JSONCPP_STRING Value::toStyledString() const { |
| 1455 | StreamWriterBuilder builder; |
| 1456 | |
| 1457 | JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : ""; |
| 1458 | out += Json::writeString(builder, *this); |
| 1459 | out += "\n"; |
| 1460 | |
| 1461 | return out; |
| 1462 | } |
| 1463 | |
| 1464 | Value::const_iterator Value::begin() const { |
| 1465 | switch (type_) { |
no test coverage detected