| 72 | |
| 73 | |
| 74 | void JSONWriter::writePropertyName(const char* value) { |
| 75 | writeString(value,strlen(value)); |
| 76 | packet.write8(':'); |
| 77 | _first=true; |
| 78 | } |
| 79 | |
| 80 | void JSONWriter::writeString(const char* value, UInt32 size) { |
| 81 |
nothing calls this directly
no outgoing calls
no test coverage detected