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

Allow expanding a tuple type T in a list of types with ..T. #10769

Closed
wants to merge 2 commits into from

Conversation

eddyb
Copy link
Member

@eddyb eddyb commented Dec 2, 2013

First part in implementing #10124, ..T with T a tuple type, with only one structural change to middle::ty.

cc @nikomatsakis @pnkfelix @pcwalton

@pnkfelix
Copy link
Member

pnkfelix commented Dec 2, 2013

You should add some tests for the success cases as well. (I only see failure case tests in your current sketches.)

Such tests would enable you to illustrate the use cases you have in mind.

Of course, you should put the tests into pull request. (I'd like them as a separate commit but I think different people have different tastes when it comes to that.)

@eddyb
Copy link
Member Author

eddyb commented Dec 3, 2013

@pnkfelix I've updated the tests gist since then, but I don't have many real use cases, because there is no way to express that a generic type parameter must be a tuple (so nothing function-related, like tuple structs or enum variants, works), that will come in the last step (the actual variadicity, <..T>).
I would prefer to split the implementation into 4 parts (..TupleType, ..tuple_value, ..tuple_binder in patterns and <..T>), but that's not fixed yet.

That said, there are a couple of problems I would like to address at this moment: the lack of a span for fn and impl errors (which come from TypeFolder) and the potential for mishandling ..T as T further in rustc::middle (I've added a couple of asserts, but I'm not sure they are the right thing).

@@ -311,7 +311,8 @@ fn enc_sty(w: @mut MemWriter, cx: @ctxt, st: &ty::sty) {
ty::ty_infer(_) => {
cx.diag.handler().bug("Cannot encode inference variable types");
}
ty::ty_param(param_ty {idx: id, def_id: did}) => {
ty::ty_param(expand, param_ty {idx: id, def_id: did}) => {
assert!(!expand); // FIXME(eddyb) #10769 what to do here?
Copy link
Member

Choose a reason for hiding this comment

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

These asserts at least have an error message (i.e. assert!(!expand, "encoding tuple expanding type parameter") or something), but would preferable call one of the .bug or .span_bug (or maybe even the unimpl ones?) methods on cx.tcx.sess rather than just having plain assert (so that users have some idea of what piece of code is causing the ICE).

Unless of course you can absolutely guarantee that it will never be hit.

Copy link
Member Author

Choose a reason for hiding this comment

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

How about this:

                if expand {
                    tcx.sess.bug(format!(
                        "found ty_param with expand=true `{}` in ty::hash_crate_independent",
                        ty_to_str(tcx, t)));
                }

Copy link
Member

Choose a reason for hiding this comment

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

I think it would be worth actually saying the .. bit, since this error message could be user facing and, also, describing the actual internal state/details isn't particularly useful: as long as the message is vaguely unique, it takes 15 seconds with git grep to find the source location, and the failure condition is super simple and obvious from the source (i.e. the fact that we're emitting this implies that expand is true, if the condition was something like some_integer % 2 == 0 then printing the value would be useful).

Copy link
Member

Choose a reason for hiding this comment

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

(@eddyb reminded me that ty_to_str includes the .. on IRC.)

@nikomatsakis
Copy link
Contributor

I want to read this over before it lands.

@alexcrichton
Copy link
Member

@eddyb, needs a rebase

@alexcrichton
Copy link
Member

Closing this due to inactivity, but feel free to reopen with an update!

@eddyb eddyb deleted the tuple-extensions branch February 6, 2016 11:46
flip1995 pushed a commit to flip1995/rust that referenced this pull request May 20, 2023
add lint `manual_next_back`

changelog: [`manual_next_back`]: checks for manual reverse iteration (`.rev().next()`) of a `DoubleEndedIterator`

fixes rust-lang#10274
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.

5 participants