| 51 | } |
| 52 | |
| 53 | bool CompactDexFile::SupportsDefaultMethods() const { |
| 54 | return (GetHeader().GetFeatureFlags() & |
| 55 | static_cast<uint32_t>(FeatureFlags::kDefaultMethods)) != 0; |
| 56 | } |
| 57 | |
| 58 | uint32_t CompactDexFile::GetCodeItemSize(const DexFile::CodeItem& item) const { |
| 59 | DCHECK(IsInDataSection(&item)); |
no test coverage detected