( expr: &LeanExpr, param_names: &[Name], intern: &mut InternTable<Meta>, name_to_ixon_addr: Option<&DashMap<Name, Address>>, aux_n2a: Option<&DashMap<Name, Address>>, )
| 2184 | IxonMutConst::Indc(ind) => { |
| 2185 | results.extend(ingress_muts_inductive( |
| 2186 | ind, |
| 2187 | &self_id, |
| 2188 | member_meta, |
| 2189 | ixon_env, |
| 2190 | names, |
| 2191 | name_to_addr, |
| 2192 | &block_constant, |
| 2193 | block_id.clone(), |
| 2194 | i as u64, |
| 2195 | intern, |
| 2196 | stats, |
| 2197 | )?); |
| 2198 | }, |
| 2199 | IxonMutConst::Recr(rec) => { |
| 2200 | results.extend(ingress_recursor( |
| 2201 | rec, |
| 2202 | self_id, |
| 2203 | member_meta, |
| 2204 | ixon_env, |
| 2205 | names, |
| 2206 | name_to_addr, |
| 2207 | &block_constant.sharing, |
| 2208 | &block_constant.refs, |
| 2209 | &block_constant.univs, |
| 2210 | block_id.clone(), |
no test coverage detected