| 513 | } |
| 514 | |
| 515 | void FormattedJsonBuilderStream::objectKey(String::Char const* s, size_t len) { |
| 516 | current().appendElement(ObjectKeyElement{String(s, len)}); |
| 517 | } |
| 518 | |
| 519 | void FormattedJsonBuilderStream::endObject() { |
| 520 | FormattedJson value = pop(); |
no test coverage detected