pub fn parse_file_with_line(
input: &str,
allow_tests: bool,
) -> Vec<(PathBuf, Option<usize>, Option<usize>, Option<String>, Option<HashSet<usize>>)>Expand description
Parse a file path with optional line number or range (e.g., “file.rs:10” or “file.rs:1-60”)
If allow_tests is false, test files will be filtered out.