| 88 | } |
| 89 | |
| 90 | bool AFCEntity::IsPrivate(const std::string& name) const |
| 91 | { |
| 92 | ARK_ASSERT_RET_VAL(class_meta_ != nullptr, false); |
| 93 | |
| 94 | auto index = class_meta_->GetIndex(name); |
| 95 | ARK_ASSERT_RET_VAL(index > 0, false); |
| 96 | |
| 97 | return IsPrivate(index); |
| 98 | } |
| 99 | |
| 100 | bool AFCEntity::IsPrivate(const uint32_t index) const |
| 101 | { |