| 65 | } |
| 66 | |
| 67 | bool String(const char* str, SizeType length, bool) { |
| 68 | return |
| 69 | WriteStartElement("string") && |
| 70 | WriteEscapedText(str, length) && |
| 71 | WriteEndElement("string"); |
| 72 | } |
| 73 | |
| 74 | bool StartObject() { |
| 75 | return WriteStartElement("object"); |
nothing calls this directly
no outgoing calls
no test coverage detected