| 530 | } |
| 531 | |
| 532 | void FormattedJsonBuilderStream::endArray() { |
| 533 | FormattedJson value = pop(); |
| 534 | if (m_stack.size() > 0) |
| 535 | current().appendElement(ValueElement{value}); |
| 536 | else |
| 537 | m_root = value; |
| 538 | } |
| 539 | |
| 540 | void FormattedJsonBuilderStream::putString(String::Char const* s, size_t len) { |
| 541 | putValue(String(s, len)); |
no test coverage detected