| 280 | } |
| 281 | |
| 282 | FormattedJson FormattedJson::set(String const& key, FormattedJson const& value) const { |
| 283 | return objectInsert(key, value, m_elements.size()); |
| 284 | } |
| 285 | |
| 286 | void removeValueFromArray(List<JsonElement>& elements, size_t loc) { |
| 287 | // Remove the value itself, the comma following and the whitespace up to the |
no test coverage detected