| 1658 | } |
| 1659 | |
| 1660 | StringContainer Value::toStyledString() const { |
| 1661 | StreamWriterBuilder builder; |
| 1662 | |
| 1663 | StringContainer out = this->hasComment(commentBefore) ? "\n" : ""; |
| 1664 | out += Json::writeString(builder, *this); |
| 1665 | out += '\n'; |
| 1666 | |
| 1667 | return out; |
| 1668 | } |
| 1669 | |
| 1670 | Value::const_iterator Value::begin() const { |
| 1671 | switch (type()) { |
nothing calls this directly
no test coverage detected