| 64 | } |
| 65 | |
| 66 | MdfBlock* Dg4Block::Find(int64_t index) const { |
| 67 | for (auto& cg : cg_list_) { |
| 68 | if (!cg) { |
| 69 | continue; |
| 70 | } |
| 71 | auto* p = cg->Find(index); |
| 72 | if (p != nullptr) { |
| 73 | return p; |
| 74 | } |
| 75 | } |
| 76 | return DataListBlock::Find(index); |
| 77 | } |
| 78 | |
| 79 | void Dg4Block::GetBlockProperty(BlockPropertyList& dest) const { |
| 80 | MdfBlock::GetBlockProperty(dest); |
no outgoing calls
no test coverage detected