(&self, t: Self::Type, u: u128)
| 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 | } |
| 143 | fn const_bool(&self, val: bool) -> Self::Value { |
| 144 | self.constant_bool(DUMMY_SP, val) |
| 145 | } |
no test coverage detected