(map: FxHashMap<K, V>)
| 3499 | } |
| 3500 | |
| 3501 | match &constant.info { |
| 3502 | IxonCI::Muts(_) => { |
| 3503 | let Some(block_entries) = lookups.muts_by_addr.get(&addr) else { |
| 3504 | return Err(format!("Muts block {} has no named entry", addr.hex())); |
| 3505 | }; |
| 3506 | for (entry_name, all) in block_entries { |
| 3507 | let block_id = |
| 3508 | KId::new(addr.clone(), M::meta_field(entry_name.clone())); |
| 3509 | if kenv.blocks.contains_key(&block_id) { |
no test coverage detected