| 426 | bool WriteEndArray() { os_->Put(']'); return true; } |
| 427 | |
| 428 | bool WriteRawValue(const Ch* json, size_t length) { |
| 429 | PutReserve(*os_, length); |
| 430 | for (size_t i = 0; i < length; i++) { |
| 431 | RAPIDJSON_ASSERT(json[i] != '\0'); |
| 432 | PutUnsafe(*os_, json[i]); |
| 433 | } |
| 434 | return true; |
| 435 | } |
| 436 | |
| 437 | void Prefix(Type type) { |
| 438 | (void)type; |
nothing calls this directly
no test coverage detected