| 31 | JSONWriter::JSONWriter(ByteBuffer& output) : _output(output) {} |
| 32 | |
| 33 | void JSONWriter::writeNull() { |
| 34 | write("null"); |
| 35 | } |
| 36 | |
| 37 | void JSONWriter::writeString(std::string_view str) { |
| 38 | if (needsUnicodeEscaping(str)) { |
no outgoing calls
no test coverage detected