table data
| 635 | |
| 636 | // table data |
| 637 | AFITable* AFCEntity::FindTable(const std::string& name) |
| 638 | { |
| 639 | ARK_ASSERT_RET_VAL(class_meta_ != nullptr, nullptr); |
| 640 | |
| 641 | auto index = class_meta_->GetIndex(name); |
| 642 | ARK_ASSERT_RET_VAL(index > 0, nullptr); |
| 643 | |
| 644 | return FindTable(index); |
| 645 | } |
| 646 | |
| 647 | AFITable* AFCEntity::FindTable(const uint32_t index) |
| 648 | { |
no test coverage detected