Stuart Cook
bc4e7ad248
Rollup merge of #139671 - m-ou-se:proc-macro-span, r=dtolnay
Proc macro span API redesign: Replace proc_macro::SourceFile by Span::{file, local_file}
Simplification/redesign of the unstable proc macro span API, tracked in https://github.com/rust-lang/rust/issues/54725:
Before:
```rust
impl Span {
pub fn line(&self) -> usize;
pub fn column(&self) -> usize;
pub fn source_file(&self) -> SourceFile;
}
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct SourceFile { .. }
impl !Send for SourceFile {}
impl !Sync for SourceFile {}
impl SourceFile {
pub fn path(&self) -> PathBuf;
pub fn is_real(&self) -> bool;
}
```
After:
```rust
impl Span {
pub fn line(&self) -> usize;
pub fn column(&self) -> usize;
pub fn file(&self) -> String; // Mapped file name, for display purposes.
pub fn local_file(&self) -> Option<PathBuf>; // Real file name as it exists on disk.
}
```
This resolves the last blocker for stabilizing these methods. (Stabilizing will be a separate PR with FCP.)
2025-04-15 15:47:27 +10:00
..
2025-04-11 15:07:08 +02:00
2024-11-27 07:18:25 -08:00
2025-03-14 19:50:03 +00:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-10-28 14:12:45 +11:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-01-06 17:58:30 +00:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-03-26 15:30:12 +03:00
2025-03-26 15:30:12 +03:00
2024-11-27 07:18:25 -08:00
2024-07-24 21:03:52 +10:00
2024-11-27 07:18:25 -08:00
2024-07-24 21:03:52 +10:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-02-24 17:49:20 +03:00
2025-02-24 17:49:20 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-02-10 20:21:39 +00:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-10-28 14:12:45 +11:00
2024-11-27 07:18:25 -08:00
2025-03-07 14:51:07 +11:00
2024-11-27 07:18:25 -08:00
2024-11-03 13:55:52 -08:00
2024-11-27 07:18:25 -08:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-03-25 17:33:09 +03:00
2025-03-25 17:33:09 +03:00
2025-03-25 17:33:09 +03:00
2025-04-13 21:48:53 +03:00
2025-04-13 21:48:53 +03:00
2025-04-13 21:48:53 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-04-08 23:06:31 +03:00
2024-11-27 07:18:25 -08:00
2025-04-03 11:08:55 +03:00
2025-02-21 17:37:03 +00:00
2025-01-07 16:04:14 +01:00
2025-02-10 20:21:39 +00:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-07-24 21:03:52 +10:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-02-10 20:21:39 +00:00
2025-04-07 19:13:30 +03:00
2025-04-07 19:13:30 +03:00
2024-11-27 07:18:25 -08:00
2025-03-14 19:50:03 +00:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-12-27 19:58:16 +11:00
2025-01-01 15:58:29 +01:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-28 14:32:45 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-04-02 06:20:35 +11:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-12-27 19:58:16 +11:00
2025-02-21 17:37:03 +00:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-10-11 21:21:32 +02:00
2024-11-27 07:18:25 -08:00
2025-03-30 01:32:21 +03:00
2025-03-30 01:32:21 +03:00
2025-03-07 14:51:08 +11:00
2025-03-07 14:51:08 +11:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-12-27 19:58:16 +11:00
2025-03-30 11:14:33 +02:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-04-03 11:08:55 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-03-25 17:33:09 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-01-19 08:53:02 -07:00
2025-01-19 08:53:02 -07:00
2025-04-08 23:06:31 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-04-11 15:07:08 +02:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-04-03 11:08:55 +03:00
2025-04-03 11:08:55 +03:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00
2025-02-22 13:30:41 +08:00
2025-02-22 13:30:41 +08:00
2024-11-27 07:18:25 -08:00
2024-11-27 07:18:25 -08:00