| 3874 | ptrdiff_t Value::getOffsetLimit() const { return limit_; } |
| 3875 | |
| 3876 | String Value::toStyledString() const { |
| 3877 | StreamWriterBuilder builder; |
| 3878 | |
| 3879 | String out = this->hasComment(commentBefore) ? "\n" : ""; |
| 3880 | out += Json::writeString(builder, *this); |
| 3881 | out += '\n'; |
| 3882 | |
| 3883 | return out; |
| 3884 | } |
| 3885 | |
| 3886 | Value::const_iterator Value::begin() const { |
| 3887 | switch (type()) { |
nothing calls this directly
no test coverage detected