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

libproc_macro: get crate for span or support $crate metavar in quote!{} #49797

Open
abonander opened this issue Apr 9, 2018 · 3 comments
Open
Labels
A-decl-macros-1-2 Area: Declarative macros 1.2 C-feature-request Category: A feature request, i.e: not implemented / a PR. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Comments

@abonander
Copy link
Contributor

abonander commented Apr 9, 2018

One Reddit user was asking how to reference the invoking crate in a proc-macro, suggesting that quote!{} should support the $crate metavar. I don't think this is too unreasonable since $ is already used for unquoting variables but crate couldn't be a user variable since it's a keyword.

Alternately, I think Span could have a method telling us what crate it comes from as a String.

cc @alexcrichton @dtolnay

@Badel2
Copy link
Contributor

Badel2 commented Apr 9, 2018

I don't know if my use case can be resolved this way: I have a crate enum-vec but when I want to use it I have to include 3 crates:

#[macro_use]
extern crate enum_like_derive;
extern crate enum_like;
extern crate enum_vec;

I thought that maybe if I reexport EnumLike from enum_vec (since enum_vec already depends on enum_like) I could do use enum_vec::EnumLike; instead of including the enum_like crate, saving one precious line of code. But my proc macro enum_like_derive is hardcoded to use ::enum_like::EnumLike, so I was wondering which is the correct way to refer to EnumLike.

I currently do impl ::enum_like::EnumLike on the proc macro, should I just do impl EnumLike if I want to support reexporting the EnumLike trait under other names? What if someone does extern crate enum_like as enl; or something like that? My proc macro is forced to fail?

@alexcrichton
Copy link
Member

Yes this definitely isn't great today unfortunately. The "real solution" is hygiene and until we get that a derive/macro basically needs to pick how it should be invoked and document that. For exampel @Badel2 you can use reexports yeah but you'd have to only do that effectively

@XAMPPRocky XAMPPRocky added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. C-feature-request Category: A feature request, i.e: not implemented / a PR. A-decl-macros-1-2 Area: Declarative macros 1.2 labels Jul 7, 2018
@safinaskar
Copy link
Contributor

This is duplicate of #54363

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-decl-macros-1-2 Area: Declarative macros 1.2 C-feature-request Category: A feature request, i.e: not implemented / a PR. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

5 participants