(&self, word: Word, reason: &str)
| 188 | ); |
| 189 | } |
| 190 | pub fn zombie_no_span(&self, word: Word, reason: &str) { |
| 191 | self.zombie_with_span(word, DUMMY_SP, reason); |
| 192 | } |
| 193 | |
| 194 | pub fn finalize_module(self) -> Module { |
| 195 | let mut result = self.builder.finalize(); |
no test coverage detected