| 1488 | |
| 1489 | Object GetObject() { RAPIDJSON_ASSERT(IsObject()); return Object(*this); } |
| 1490 | Object GetObj() { RAPIDJSON_ASSERT(IsObject()); return Object(*this); } |
| 1491 | ConstObject GetObject() const { RAPIDJSON_ASSERT(IsObject()); return ConstObject(*this); } |
| 1492 | ConstObject GetObj() const { RAPIDJSON_ASSERT(IsObject()); return ConstObject(*this); } |
| 1493 |
nothing calls this directly
no test coverage detected