forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rust: macros: add
concat_idents!
proc macro
This macro provides similar functionality to the unstable feature `concat_idents` without having to rely on it. For instance: let x_1 = 42; let x_2 = concat_idents!(x, _1); assert!(x_1 == x_2); It has different behavior with respect to macro hygiene. Unlike the unstable `concat_idents!` macro, it allows, for example, referring to local variables by taking the span of the second macro as span for the output identifier. Signed-off-by: Björn Roy Baron <[email protected]> Reviewed-by: Finn Behrens <[email protected]> Reviewed-by: Gary Guo <[email protected]> [Reworded, adapted for upstream and applied latest changes] Signed-off-by: Miguel Ojeda <[email protected]>
- Loading branch information
Showing
2 changed files
with
67 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
// SPDX-License-Identifier: GPL-2.0 | ||
|
||
use proc_macro::{token_stream, Ident, TokenStream, TokenTree}; | ||
|
||
use crate::helpers::expect_punct; | ||
|
||
fn expect_ident(it: &mut token_stream::IntoIter) -> Ident { | ||
if let Some(TokenTree::Ident(ident)) = it.next() { | ||
ident | ||
} else { | ||
panic!("Expected Ident") | ||
} | ||
} | ||
|
||
pub(crate) fn concat_idents(ts: TokenStream) -> TokenStream { | ||
let mut it = ts.into_iter(); | ||
let a = expect_ident(&mut it); | ||
assert_eq!(expect_punct(&mut it), ','); | ||
let b = expect_ident(&mut it); | ||
assert!(it.next().is_none(), "only two idents can be concatenated"); | ||
let res = Ident::new(&format!("{a}{b}"), b.span()); | ||
TokenStream::from_iter([TokenTree::Ident(res)]) | ||
} |
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