| 566 | } |
| 567 | |
| 568 | sonic_force_inline DNode* getObjChildrenFirst() const { |
| 569 | sonic_assert(this->IsObject()); |
| 570 | if (nullptr == children()) { |
| 571 | return nullptr; |
| 572 | } |
| 573 | return (DNode*)((char*)this->a.next.children + |
| 574 | sizeof(MetaNode) / sizeof(char)); |
| 575 | } |
| 576 | |
| 577 | sonic_force_inline DNode* getObjChildrenFirstUnsafe() const { |
| 578 | sonic_assert(this->IsObject()); |
no test coverage detected