| 4153 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 4154 | |
| 4155 | String Value::toStyledString() const |
| 4156 | { |
| 4157 | StreamWriterBuilder builder; |
| 4158 | |
| 4159 | String out = this->hasComment(commentBefore) ? "\n" : ""; |
| 4160 | out += Json::writeString(builder, *this); |
| 4161 | out += '\n'; |
| 4162 | |
| 4163 | return out; |
| 4164 | } |
| 4165 | |
| 4166 | Value::const_iterator Value::begin() const |
| 4167 | { |
nothing calls this directly
no test coverage detected