Ends an array with ]
| 199 | |
| 200 | // Ends an array with ] |
| 201 | void JSONencoder::end_array() { |
| 202 | dec_level(); |
| 203 | line(); |
| 204 | add(']'); |
| 205 | } |
| 206 | |
| 207 | // Begins the creation of a member whose value is an object. |
| 208 | // Call end_object() to close the member |
no outgoing calls
no test coverage detected