| 6807 | } |
| 6808 | |
| 6809 | bool key(string_t& val) |
| 6810 | { |
| 6811 | JSON_ASSERT(!ref_stack.empty()); |
| 6812 | JSON_ASSERT(ref_stack.back()->is_object()); |
| 6813 | |
| 6814 | // add null at given key and store the reference for later |
| 6815 | object_element = &(ref_stack.back()->m_value.object->operator[](val)); |
| 6816 | return true; |
| 6817 | } |
| 6818 | |
| 6819 | bool end_object() |
| 6820 | { |
nothing calls this directly
no test coverage detected