[vfs] Don't confuse paths with source roots that have the same prefix

This commit is contained in:
Wilfred Hughes 2024-04-05 15:40:43 -07:00
parent 7a8374c162
commit b03844d786
2 changed files with 27 additions and 0 deletions

View file

@ -132,6 +132,10 @@ impl FileSetConfig {
///
/// `scratch_space` is used as a buffer and will be entirely replaced.
fn classify(&self, path: &VfsPath, scratch_space: &mut Vec<u8>) -> usize {
// `path` is a file, but r-a only cares about the containing directory. We don't
// want `/foo/bar_baz.rs` to be attributed to source root directory `/foo/bar`.
let path = path.parent().unwrap_or_else(|| path.clone());
scratch_space.clear();
path.encode(scratch_space);
let automaton = PrefixOf::new(scratch_space.as_slice());