| 3949 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 3950 | |
| 3951 | JSONCPP_STRING Value::toStyledString() const { |
| 3952 | StreamWriterBuilder builder; |
| 3953 | |
| 3954 | JSONCPP_STRING out = this->hasComment(commentBefore) ? "\n" : ""; |
| 3955 | out += Json::writeString(builder, *this); |
| 3956 | out += '\n'; |
| 3957 | |
| 3958 | return out; |
| 3959 | } |
| 3960 | |
| 3961 | Value::const_iterator Value::begin() const { |
| 3962 | switch (type_) { |
no test coverage detected