| 271 | } |
| 272 | |
| 273 | bool StartObject() { |
| 274 | if (Access(S.top()).IsArray()) { |
| 275 | S.emplace(&Access(S.top()).AppendValue(NJson::JSON_MAP)); |
| 276 | if (!IsWithinStackBounds()) { |
| 277 | return false; |
| 278 | } |
| 279 | } else { |
| 280 | Access(S.top()).SetType(NJson::JSON_MAP); |
| 281 | } |
| 282 | return true; |
| 283 | } |
| 284 | |
| 285 | bool Key(const char* str, rapidjson::SizeType length, bool copy) { |
| 286 | Y_ASSERT(copy); |
nothing calls this directly
no test coverage detected