Ends an object with }.
| 224 | |
| 225 | // Ends an object with }. |
| 226 | void JSONencoder::end_object() { |
| 227 | dec_level(); |
| 228 | line(); |
| 229 | add('}'); |
| 230 | } |
| 231 | |
| 232 | // Creates a "tag":"value" member from a C-style string |
| 233 | void JSONencoder::member(const char* tag, const char* value) { |
no outgoing calls
no test coverage detected