()
| 2113 | // Resolve displayed names → addresses through the full env's `named` |
| 2114 | // metadata (the anon view discards it). Keys and requests both go |
| 2115 | // through `normalize_displayed_name` (Lean `«»`-escaped ↔ Rust bare). |
| 2116 | let by_name: FxHashMap<String, Address> = full |
| 2117 | .named |
| 2118 | .iter() |
| 2119 | .map(|e| { |
| 2120 | (normalize_displayed_name(&e.key().to_string()), e.value().addr.clone()) |
no test coverage detected