(&self, t: Self::Type, i: u64)
| 135 | self.constant_int(t, i as u64) |
| 136 | } |
| 137 | fn const_uint(&self, t: Self::Type, i: u64) -> Self::Value { |
| 138 | self.constant_int(t, i) |
| 139 | } |
| 140 | fn const_uint_big(&self, t: Self::Type, u: u128) -> Self::Value { |
| 141 | self.constant_int(t, u as u64) |
| 142 | } |
no test coverage detected