(line: &str)
| 1814 | } |
| 1815 | |
| 1816 | fn split_line_comment(line: &str) -> &str { |
| 1817 | line.split("//").next().unwrap_or(line) |
| 1818 | } |
| 1819 | |
| 1820 | fn strip_block_comments_from_line(line: &str, in_block_comment: &mut bool) -> String { |
| 1821 | let mut visible = String::new(); |
no test coverage detected