| 59 | } |
| 60 | |
| 61 | ArkDataType AFTableMeta::GetColType(const uint32_t index) const |
| 62 | { |
| 63 | ARK_ASSERT_RET_VAL(class_meta_ != nullptr, ArkDataType::DT_EMPTY); |
| 64 | |
| 65 | auto pMeta = class_meta_->FindDataMeta(index); |
| 66 | ARK_ASSERT_RET_VAL(pMeta != nullptr, ArkDataType::DT_EMPTY); |
| 67 | |
| 68 | return pMeta->GetType(); |
| 69 | } |
| 70 | |
| 71 | const ArkMaskType AFTableMeta::GetMask() const |
| 72 | { |
nothing calls this directly
no test coverage detected