| 1135 | } |
| 1136 | |
| 1137 | bool Value::insert(ArrayIndex index, const Value& newValue) { |
| 1138 | return insert(index, Value(newValue)); |
| 1139 | } |
| 1140 | |
| 1141 | bool Value::insert(ArrayIndex index, Value&& newValue) { |
| 1142 | JSON_ASSERT_MESSAGE(type() == nullValue || type() == arrayValue, |
no test coverage detected