(line: &str)
| 1300 | } |
| 1301 | |
| 1302 | fn is_comment_line(line: &str) -> bool { |
| 1303 | let line = line.trim_start(); |
| 1304 | line.starts_with('#') || line.starts_with("--") |
| 1305 | } |
| 1306 | |
| 1307 | fn is_blank_or_comment_line(line: &str) -> bool { |
| 1308 | is_blank_line(line) || is_comment_line(line) |
no outgoing calls
no test coverage detected
searching dependent graphs…