(&self, path: &Path)
| 112 | } |
| 113 | |
| 114 | fn canonicalize_uncached(&self, path: &Path) -> Result<PathBuf> { |
| 115 | fs::canonicalize(path) |
| 116 | .with_context(|| format!("Failed to canonicalize path: {}", path.display())) |
| 117 | } |
| 118 | |
| 119 | /// Get or compute the canonical project root path, using cache. |
| 120 | fn get_canonical_project_root(&self) -> Result<PathBuf> { |
no outgoing calls
no test coverage detected