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

Fix #[derive] for empty structs with braces #31822

Merged
merged 2 commits into from
Feb 23, 2016
Merged

Conversation

petrochenkov
Copy link
Contributor

Fixes #29548

@rust-highfive
Copy link
Contributor

r? @aturon

(rust_highfive has picked a reviewer for you, use r? to override)

Struct(vdata, _) => vdata,
EnumMatching(_, v, _) => &v.node.data,
_ => unreachable!()
}.is_struct();
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could this be extracted at the same time that ident is extracted above?

@alexcrichton
Copy link
Member

Looks good to me, thanks @petrochenkov! Just one small nit but otherwise r=me

@petrochenkov
Copy link
Contributor Author

Updated.

@alexcrichton
Copy link
Member

@bors: r+ a3f3c4a

bors added a commit that referenced this pull request Feb 23, 2016
@bors
Copy link
Collaborator

bors commented Feb 23, 2016

⌛ Testing commit a3f3c4a with merge 3263316...

@bors bors merged commit a3f3c4a into rust-lang:master Feb 23, 2016
@durka
Copy link
Contributor

durka commented Mar 3, 2016

Should we back out this complexity now that braced_empty_structs is stable?

@petrochenkov
Copy link
Contributor Author

Yeah, I think derive can be cleaned up a bit now. Tuple structs/variants still need to generate Pat::TupleStruct/ExprCall, but everything else can generate braced forms.

@Manishearth
Copy link
Member

Please [breaking-batch] future changes to the derive machinery.

@durka
Copy link
Contributor

durka commented Mar 6, 2016

@Manishearth what kind of changes? Changes to the public API (?) of libsyntax_ext? Or any changes at all to the expansion of #[derive(...)]?

@Manishearth
Copy link
Member

The API. We're trying to avoid libsyntax breakages that go on and break large swaths of the ecosystem. The derive machinery and the AST are both things that do this.

@petrochenkov petrochenkov deleted the derive branch September 21, 2016 19:51
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.

7 participants