(&self, s: impl Into<String>)
| 274 | } |
| 275 | |
| 276 | fn normalize(&self, s: impl Into<String>) -> String { |
| 277 | let mut s = s.into(); |
| 278 | for (from, to) in &self.replacements { |
| 279 | s = s.replace(from, to); |
| 280 | } |
| 281 | s |
| 282 | } |
| 283 | } |
| 284 | |
| 285 | /// Applies normalize_for_explain to every line |
no test coverage detected