Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proc: use quote! instead of string-based formatting. #71

Merged
merged 1 commit into from
Feb 18, 2025

Conversation

Dirbaio
Copy link
Member

@Dirbaio Dirbaio commented Feb 8, 2025

This is a prerequisite for #70

The $crate token is "special", you can't convert it to a string and
back, you have to keep its identity. Using quote! everywhere will allow this.

@jannic
Copy link
Member

jannic commented Feb 8, 2025

I don't get in what sense $crate is special or why there is a difference between code: TokenStream = "$crate".parse().unwrap() and code: TokenStream = quote!($crate). (Which doesn't mean that you are wrong. It only shows that I don't understand rust macros.)

Anyway, the suggested code using quote! is easier to read, so I'd say it is an improvement, even if it's not strictly necessary.

@Dirbaio
Copy link
Member Author

Dirbaio commented Feb 9, 2025

(rebased)

@Dirbaio
Copy link
Member Author

Dirbaio commented Feb 9, 2025

see #72.

$crate in decl macros expands to a magic Ident token that refers to the crate that produced it, no matter where it ends up. This works even if that crate is not a dep of the current crate. That's something you can't do with regular program text, you simply can't name the crate because it's not in the current namespace.

This "which crate produced this token" is some "metadata" that rustc attaches to the token. $crate from crate foo and $crate from crate bar are not the same. They both stringify to "$crate" but this metadata is different. If you try to parse "$crate" from a string it doesn't work because it can't know what crate to put in the metadata.

@Dirbaio Dirbaio merged commit ec4fb13 into rp-rs:main Feb 18, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants