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