(&mut self, binding: BindingId, is_ref: bool)
| 150 | } |
| 151 | |
| 152 | fn set_ref(&mut self, binding: BindingId, is_ref: bool) { |
| 153 | if is_ref { |
| 154 | self.is_ref.insert(binding); |
| 155 | } else { |
| 156 | debug_assert!(!self.is_ref.contains(&binding)); |
| 157 | } |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | impl<'a> Codegen<'a> { |
no test coverage detected