Starts an object with {. If you need a named object you must call begin_member() first.
| 217 | // Starts an object with {. |
| 218 | // If you need a named object you must call begin_member() first. |
| 219 | void JSONencoder::begin_object() { |
| 220 | comma_line(); |
| 221 | add('{'); |
| 222 | inc_level(); |
| 223 | } |
| 224 | |
| 225 | // Ends an object with }. |
| 226 | void JSONencoder::end_object() { |
no outgoing calls
no test coverage detected