-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #57155 - petrochenkov:dcrate3, r=dtolnay
Resolve `$crate`s for pretty-printing at more appropriate time Doing it in `BuildReducedGraphVisitor` wasn't a good idea, identifiers wasn't actually visited half of the time. As a result some `$crate`s weren't resolved and were therefore pretty-printed as `$crate` literally, which turns into two tokens during re-parsing of the pretty-printed text. Now we are visiting and resolving `$crate` identifiers in an item right before sending that item to a proc macro attribute or derive. Fixes #57089
- Loading branch information
Showing
7 changed files
with
154 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// compile-pass | ||
// edition:2018 | ||
// aux-build:dollar-crate.rs | ||
|
||
// Anonymize unstable non-dummy spans while still showing dummy spans `0..0`. | ||
// normalize-stdout-test "bytes\([^0]\w*\.\.(\w+)\)" -> "bytes(LO..$1)" | ||
// normalize-stdout-test "bytes\((\w+)\.\.[^0]\w*\)" -> "bytes($1..HI)" | ||
|
||
extern crate dollar_crate; | ||
|
||
type S = u8; | ||
|
||
macro_rules! m { | ||
() => { | ||
dollar_crate::m_empty! { | ||
struct M($crate::S); | ||
} | ||
|
||
#[dollar_crate::a] | ||
struct A($crate::S); | ||
}; | ||
} | ||
|
||
m!(); | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
PROC MACRO INPUT (PRETTY-PRINTED): struct M ( $crate :: S ) ; | ||
PROC MACRO INPUT: TokenStream [ | ||
Ident { | ||
ident: "struct", | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Ident { | ||
ident: "M", | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Group { | ||
delimiter: Parenthesis, | ||
stream: TokenStream [ | ||
Ident { | ||
ident: "$crate", | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Punct { | ||
ch: ':', | ||
spacing: Joint, | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Punct { | ||
ch: ':', | ||
spacing: Alone, | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Ident { | ||
ident: "S", | ||
span: #2 bytes(LO..HI) | ||
} | ||
], | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Punct { | ||
ch: ';', | ||
spacing: Alone, | ||
span: #2 bytes(LO..HI) | ||
} | ||
] | ||
ATTRIBUTE INPUT (PRETTY-PRINTED): struct A(crate::S); | ||
ATTRIBUTE INPUT: TokenStream [ | ||
Ident { | ||
ident: "struct", | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Ident { | ||
ident: "A", | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Group { | ||
delimiter: Parenthesis, | ||
stream: TokenStream [ | ||
Ident { | ||
ident: "$crate", | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Punct { | ||
ch: ':', | ||
spacing: Joint, | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Punct { | ||
ch: ':', | ||
spacing: Alone, | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Ident { | ||
ident: "S", | ||
span: #2 bytes(LO..HI) | ||
} | ||
], | ||
span: #2 bytes(LO..HI) | ||
}, | ||
Punct { | ||
ch: ';', | ||
spacing: Alone, | ||
span: #2 bytes(LO..HI) | ||
} | ||
] |