| 31 | /** In JSON5 mode, dictionary keys that are JavaScript identifiers will be unquoted. */ |
| 32 | void setJSON5(bool j5) {_json5 = j5;} |
| 33 | void setCanonical(bool canonical) {_canonical = canonical;} |
| 34 | |
| 35 | bool isEmpty() const {return _out.length() == 0;} |
| 36 | size_t bytesWritten() const {return _out.length();} |
no outgoing calls
no test coverage detected