-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
Allow proc macro to initialize a private field with a def_site value #47311
Labels
A-macros-2.0
Area: Declarative macros 2.0 (#39412)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
31 tasks
Found a workaround: wrap the def_site value in a set of call_site parentheses. It should work without this workaround. TokenTree {
span: Span::call_site(),
kind: TokenNode::Group(Delimiter::Parenthesis, vec![
TokenTree {
span: Span::def_site(),
kind: TokenNode::Group(Delimiter::Parenthesis, TokenStream::empty()),
},
].into_iter().collect()),
}, |
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 2, 2018
This was fairly recently rewritten, so it should in theory be the most straightforward derive to port. Unfortunately, due to rust-lang/rust#47311, it's obnoxiously hard to actually construct a struct in a derive right now. We have to do hacky workarounds until that is fixed.
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 3, 2018
This was fairly recently rewritten, so it should in theory be the most straightforward derive to port. Unfortunately, due to rust-lang/rust#47311, it's obnoxiously hard to actually construct a struct in a derive right now. We have to do hacky workarounds until that is fixed.
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 3, 2018
Since `QueryableByName` is one of the more recently written derives, it should have been a really straightforward port. Unfortunately, the tests for this derive hit multiple rustc bugs - rust-lang/rust#47983 - rust-lang/rust#47311 I love what we were able to do with the error message here. We could even go so far as to have the `help` lines point at the struct itself for the `table_name` annotation if we want to. I also much prefer the workaround for rust-lang/rust#47311 in this PR to the one I did in #1529. I'll need to update that PR if this is merged first.
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 3, 2018
Since `QueryableByName` is one of the more recently written derives, it should have been a really straightforward port. Unfortunately, the tests for this derive hit multiple rustc bugs - rust-lang/rust#47983 - rust-lang/rust#47311 I love what we were able to do with the error message here. We could even go so far as to have the `help` lines point at the struct itself for the `table_name` annotation if we want to. I also much prefer the workaround for rust-lang/rust#47311 in this PR to the one I did in #1529. I'll need to update that PR if this is merged first.
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 3, 2018
Since `QueryableByName` is one of the more recently written derives, it should have been a really straightforward port. Unfortunately, the tests for this derive hit multiple rustc bugs - rust-lang/rust#47983 - rust-lang/rust#47311 I love what we were able to do with the error message here. We could even go so far as to have the `help` lines point at the struct itself for the `table_name` annotation if we want to. I also much prefer the workaround for rust-lang/rust#47311 in this PR to the one I did in #1529. I'll need to update that PR if this is merged first.
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 3, 2018
Since `QueryableByName` is one of the more recently written derives, it should have been a really straightforward port. Unfortunately, the tests for this derive hit multiple rustc bugs - rust-lang/rust#47983 - rust-lang/rust#47311 I love what we were able to do with the error message here. We could even go so far as to have the `help` lines point at the struct itself for the `table_name` annotation if we want to. I also much prefer the workaround for rust-lang/rust#47311 in this PR to the one I did in #1529. I'll need to update that PR if this is merged first.
sgrif
added a commit
to diesel-rs/diesel
that referenced
this issue
Feb 4, 2018
Since `QueryableByName` is one of the more recently written derives, it should have been a really straightforward port. Unfortunately, the tests for this derive hit multiple rustc bugs - rust-lang/rust#47983 - rust-lang/rust#47311 I love what we were able to do with the error message here. We could even go so far as to have the `help` lines point at the struct itself for the `table_name` annotation if we want to. I also much prefer the workaround for rust-lang/rust#47311 in this PR to the one I did in #1529. I'll need to update that PR if this is merged first.
pietroalbini
added
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
A-macros-2.0
Area: Declarative macros 2.0 (#39412)
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
labels
Feb 6, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Feb 19, 2018
…ene, r=jseyfried macros: improve struct constructor field hygiene, fix span bug Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
…rochenkov Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
…=alexcrichton Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
…haelwoerister Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
… r=petrochenkov Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
…o-duration, r=sfackler Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
…rochenkov Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Mar 3, 2018
…haelwoerister Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Oct 10, 2018
… r=nikomatsakis Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Oct 10, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Oct 10, 2018
…nishearth Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Oct 10, 2018
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Oct 10, 2018
…, r=Centril Fixes rust-lang#47311. r? @nrc
Manishearth
added a commit
to Manishearth/rust
that referenced
this issue
Oct 10, 2018
9 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-macros-2.0
Area: Declarative macros 2.0 (#39412)
C-enhancement
Category: An issue proposing an enhancement or a PR with one.
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
In a struct initializer expression
S { k: v }
generated by a procedural macro where the fieldk
is private, it seems bothk
andv
need to be spanned with call_site in order for the generated code to compile. I believe onlyk
should be required to be call_site, andv
should be allowed to be def_site or anything else.This currently blocks a correct implementation of derive(Deserialize).
@jseyfried
The text was updated successfully, but these errors were encountered: