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 panic on GAT #11957

Merged
merged 1 commit into from
Apr 11, 2022
Merged

fix panic on GAT #11957

merged 1 commit into from
Apr 11, 2022

Conversation

skyzh
Copy link
Contributor

@skyzh skyzh commented Apr 11, 2022

Signed-off-by: Alex Chi iskyzh@gmail.com

This is still a workaround on GAT panic, and didn't solve the full problem. But at least we won't panic now. False positive is better than panicking and letting VSCode constantly pop out the warning 🤣

This PR is simple -- only apply the #11878 fix on const generics. For normal GATs, just follow the previous approach.

This PR fixes #11939, I've added it as a test case.

This PR didn't fully fix / #11923. But at least it won't panic now -- will only give a type mismatch error.

Not sure if it fixes / #11921, I'll test it later.

cc @flodiebold for review, thanks!

@skyzh skyzh force-pushed the skyzh/gat-panic branch from bf0d25a to fc41ea1 Compare April 11, 2022 05:51
Signed-off-by: Alex Chi <iskyzh@gmail.com>
@skyzh skyzh force-pushed the skyzh/gat-panic branch from fc41ea1 to 51d6671 Compare April 11, 2022 05:52
@flodiebold
Copy link
Member

bors r+

@bors
Copy link
Contributor

bors bot commented Apr 11, 2022

@bors bors bot merged commit b1c9a6b into rust-lang:master Apr 11, 2022
@lnicola
Copy link
Member

lnicola commented Apr 11, 2022

changelog fix (first contribution) fix GAT panics

@skyzh skyzh deleted the skyzh/gat-panic branch April 11, 2022 08:13
bors added a commit that referenced this pull request Oct 3, 2022
internal: change generic parameter order

tl;dr: This PR changes the `Substitution` for trait items and methods like so:

```rust
trait Trait<TP, const CP: usize> { // note the implicit Self as first parameter
  type Type<TC, const CC: usize>;
  fn f<TC, const CC: usize>() {}
}
impl<TP, const CP: usize> S {
  fn f<TC, const CC: usize>() {}
}
```

- before this PR: `[Self, TP, CP, TC, CC]` for each trait item, `[TP, CP, TC, CC]` for `S::f`
- after this PR: `[TC, CC, Self, TP, CP]` for each trait item, `[TC, CC, TP, CP]` for `S::f`

---

This PR "inverts" the generic parameters/arguments of an item and its parent. This is to fulfill [chalk's expectation](https://github.com/rust-lang/chalk/blob/d875af0ff196dd6430b5f5fd87a640fa5ab59d1e/chalk-solve/src/rust_ir.rs#L498-L502) on the order of generic arguments in `Substitution`s for generic associated types and it's one step forward for GATs support (hopefully). Although chalk doesn't put any constraint for other items, it feels more natural to get everything aligned than special casing GATs.

One complication is that `TyBuilder` now demands its users to pass in parent's `Substitution` upon construction unless it's obvious that the the item has no parent (e.g. an ADT never has parent). All users *should* already know the parent of the item in question, and without this, it cannot be easily reasoned about whether we're pushing the argument for the item or for its parent.

Some additional notes:
- f8f5a5e: This isn't related to the change, but I felt it's nicer.

- 78977cd: There's one major change here other than the generic param order: Default arguments are now bound by the same `Binder` as the item in question rather than a `Binder` limited to parameters they can refer to (i.e. arguments that syntactically appear before them). Now that the order of generic parameters is changed, it would be somewhat complicated to make such `Binder`s as before, and the "full" `Binder`s shouldn't be a problem because we already make sure that the default arguments don't refer to the generic arguments after them with `fallback_bound_vars()`.

- 7556f74: This is split from 4385d3d to make it easy to revert if it turns out that the GATs with const generics panic is actually not resolved with this PR. cc #11878 #11957
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.

fn() -> GAT causes Request textDocument/semanticTokens/full to fail
3 participants