Matthias Krüger
89ee41cc4c
Rollup merge of #136847 - nnethercote:simplify-intra-crate-quals, r=oli-obk
...
Simplify intra-crate qualifiers.
The following is a weird pattern for a file within `rustc_middle`:
```
use rustc_middle::aaa;
use crate::bbb;
```
More sensible and standard would be this:
```
use crate::{aaa, bbb};
```
I.e. we generally prefer using `crate::` to using a crate's own name. (Exceptions are things like in macros where `crate::` doesn't work because the macro is used in multiple crates.)
This commit fixes a bunch of these weird qualifiers.
r? `@jieyouxu`
2025-02-11 18:04:49 +01:00
..
2025-02-09 20:45:47 -08:00
2025-02-10 16:38:23 +01:00
2025-02-11 18:04:34 +01:00
2025-02-09 20:45:47 -08:00
2025-02-06 10:50:05 +00:00
2025-02-02 12:36:12 +01:00
2025-02-08 22:12:13 +00:00
2025-02-08 22:12:13 +00:00
2025-02-11 10:17:02 +00:00
2025-02-10 16:38:26 +01:00
2025-02-10 11:19:02 -08:00
2025-02-11 01:02:41 -05:00
2025-02-11 02:53:44 +01:00
2025-02-11 18:04:44 +01:00
2025-02-08 22:12:13 +00:00
2025-02-09 20:45:47 -08:00
2025-02-10 04:36:49 +08:00
2025-02-03 13:25:57 +03:00
2025-02-11 18:04:49 +01:00
2025-02-11 02:53:42 +01:00
2025-02-11 02:53:44 +01:00
2025-02-08 22:12:13 +00:00
2025-02-11 02:53:42 +01:00
2025-02-11 02:53:42 +01:00
2025-02-08 22:12:13 +00:00
2025-02-11 02:53:43 +01:00
2025-02-08 22:12:13 +00:00
2025-02-08 22:12:13 +00:00
2025-02-08 22:12:13 +00:00
2025-02-09 15:44:16 +00:00
2025-02-08 22:12:13 +00:00
2025-02-09 19:44:53 +01:00
2025-02-05 19:09:33 +08:00
2025-02-10 16:38:23 +01:00
2025-02-08 22:12:13 +00:00
2025-02-08 22:12:13 +00:00
2025-02-11 18:04:49 +01:00
2025-02-08 22:12:13 +00:00
2025-02-08 22:12:13 +00:00
2025-02-11 18:04:42 +01:00
2025-02-09 15:44:16 +00:00
2025-02-08 22:12:13 +00:00
2025-02-10 19:51:26 +00:00
2025-02-08 22:12:13 +00:00
2025-02-11 18:04:44 +01:00
2025-01-31 20:36:44 +00:00
2025-02-05 17:56:06 +01:00
2025-02-06 10:50:05 +00:00
2025-02-11 18:04:28 +01:00
2025-01-30 18:13:16 +01:00
2025-02-11 18:04:22 +01:00
2025-02-08 22:12:13 +00:00
2025-02-11 02:53:44 +01:00
2025-02-03 18:33:27 +01:00
2025-02-11 18:04:44 +01:00
2025-02-11 02:53:44 +01:00
2025-01-29 02:12:12 +00:00
2025-02-08 05:44:29 +01:00
2025-02-10 11:04:31 -08:00
2025-02-11 14:59:13 +11:00
2025-02-08 22:12:13 +00:00
2025-02-08 22:28:21 +00:00