rust/compiler/rustc_driver_impl/src
许杰友 Jieyou Xu (Joe) 099faa8beb
Rollup merge of #134420 - Integral-Tech:pathbuf-refactor, r=compiler-errors
refactor: replace &PathBuf with &Path to enhance generality

- According to [style.md](https://github.com/rust-lang/rust/blob/master/src/tools/rust-analyzer/docs/dev/style.md#useless-types):

> More generally, always prefer types on the left
```rust
// GOOD      BAD
&[T]         &Vec<T>
&str         &String
Option<&T>   &Option<T>
&Path        &PathBuf
```
2024-12-18 22:56:56 +08:00
..
args.rs Remove all threading through of ErrorGuaranteed from the driver 2024-12-06 18:42:31 +00:00
lib.rs Rollup merge of #134420 - Integral-Tech:pathbuf-refactor, r=compiler-errors 2024-12-18 22:56:56 +08:00
pretty.rs Re-export more rustc_span::symbol things from rustc_span. 2024-12-18 13:38:53 +11:00
print.rs Fix ICE on --print=... i/o errors 2023-04-25 08:17:18 -07:00
session_diagnostics.rs unstable feature usage metrics 2024-11-20 11:31:40 -08:00
signal_handler.rs Reformat using the new identifier sorting from rustfmt 2024-09-22 19:11:29 -04:00