Check whether an expression mentions any constant from a set of addresses.
( e: &KExpr<M>, addrs: &[Address], )
| 1101 | stack.push(ty); |
| 1102 | stack.push(body); |
| 1103 | }, |
| 1104 | ExprData::Let(_, ty, val, body, _, _) => { |
| 1105 | stack.push(ty); |
| 1106 | stack.push(val); |
| 1107 | stack.push(body); |
| 1108 | }, |
| 1109 | ExprData::Prj(id, _, val, _) => { |
| 1110 | if id.addr == *addr { |
| 1111 | return true; |
no test coverage detected