| 2399 | bool StartObject() { new (stack_.template Push<ValueType>()) ValueType(kObjectType); return true; } |
| 2400 | |
| 2401 | bool Key(const Ch* str, SizeType length, bool copy) { return String(str, length, copy); } |
| 2402 | |
| 2403 | bool EndObject(SizeType memberCount) { |
| 2404 | typename ValueType::Member* members = stack_.template Pop<typename ValueType::Member>(memberCount); |