| 55 | } |
| 56 | |
| 57 | void startObjectWithName(const std::string &name) { |
| 58 | checkAddComma(); |
| 59 | _json += '\"'; |
| 60 | _json += name; |
| 61 | _json += "\": {"; |
| 62 | ++_objectStarted; |
| 63 | } |
| 64 | |
| 65 | void startObject() { |
| 66 | checkAddComma(); |
nothing calls this directly
no outgoing calls
no test coverage detected