| 34 | } |
| 35 | |
| 36 | void CJsonWriter::EndObject() |
| 37 | { |
| 38 | dbg_assert(TopState()->m_Kind == STATE_OBJECT, "Cannot end object here"); |
| 39 | PopState(); |
| 40 | CompleteDataType(); |
| 41 | WriteIndent(true); |
| 42 | WriteInternal("}"); |
| 43 | } |
| 44 | |
| 45 | void CJsonWriter::BeginArray() |
| 46 | { |
no outgoing calls