(addr: &Address, names: &FxHashMap<Address, Name>)
| 326 | /// hit. (Historically the probe key was a precomputed blake3 content |
| 327 | /// hash; the shallow key preserves the skip while removing the hash.) |
| 328 | #[inline] |
| 329 | fn timed_intern_or_build<M: KernelMode>( |
| 330 | intern: &mut InternTable<M>, |
| 331 | key: &super::env::ExprKey, |
| 332 | build: impl FnOnce() -> KExpr<M>, |
| 333 | stats: &mut ConvertStats, |
no test coverage detected