(path: &str)
| 1808 | } |
| 1809 | |
| 1810 | fn is_excluded_file(path: &str) -> bool { |
| 1811 | EXCLUDED_FILES |
| 1812 | .iter() |
| 1813 | .any(|excluded| path.ends_with(excluded)) |
| 1814 | } |
| 1815 | |
| 1816 | fn split_line_comment(line: &str) -> &str { |
| 1817 | line.split("//").next().unwrap_or(line) |
no test coverage detected