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

ANN: allow leading | in nested or patterns #9238

Merged
merged 1 commit into from
Sep 2, 2022
Merged

ANN: allow leading | in nested or patterns #9238

merged 1 commit into from
Sep 2, 2022

Conversation

afetisov
Copy link
Contributor

Fixes #9001

Nested or-patterns were stabilized in Rust 1.53. The final design allows leading vertical bar | in nested or-patterns, just like toplevel or-patterns. This was previously an explicit error, also implemented in the plugin.

This PR reverts the deprecated error on nested patterns.

changelog: allow leading | in nested or-patterns

@Undin Undin added the fix Pull requests that fix some bug(s) label Aug 25, 2022
@afetisov afetisov changed the title INSP: allow leading | in nested or patterns ANN: allow leading | in nested or patterns Aug 25, 2022
@vlad20012 vlad20012 self-assigned this Sep 2, 2022
@vlad20012
Copy link
Member

👍
bors r+

Comment on lines -200 to -210
if (parent is RsPat) {
val firstChild = orPat.firstChild
if (firstChild?.elementType == RsElementTypes.OR) {
holder.createErrorAnnotation(
firstChild,
"a leading `|` is only allowed in a top-level pattern",
RemoveElementFix(firstChild)
)
}
}

Copy link
Member

Choose a reason for hiding this comment

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

Actually, it would be nice to produce this error if or_patterns compiler feature is not available since we support old compiler versions

Copy link
Member

@vlad20012 vlad20012 Sep 2, 2022

Choose a reason for hiding this comment

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

I thought about it, but the compiler is so old that I decided it wasn't worth mentioning (and doesn't worth postponing this PR merging). But, well, yes, it would be nice

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Do we? I vaguely recall that somewhere in the docs there was something like "support last 6 compiler versions", but I couldn't find it now. Additionally, supporting old versions, particularly nightly versions, is problematic since the compiler changes a lot. Fundamental traits change, lang items change, semantics change (e.g. the new try trait v.2). Also the IDE is so severely lacking in error diagnostics (even the borrow checker isn't implemented) that it feels weird to track stabilized features.

Copy link
Member

Choose a reason for hiding this comment

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

I vaguely recall that somewhere in the docs there was something like "support last 6 compiler versions", but I couldn't find it now

We have never introduced such policies. Currently, we consider that 1.41 is the oldest compiler version the plugin supports - at least, we run tests with it. Of course, some features are not supported for old compilers for different reasons but anyway

Additionally, supporting old versions, particularly nightly versions, is problematic since the compiler changes a lot

I think the current approach (org.rust.lang.core.CompilerFeature#check) works well enough and it's quite easy to use. Yeah, it won't work with the feature which is just stabilized and the newest nightly compiler, but the main idea (in general) is to support old stable compilers since not all users update their compiler

it feels weird to track stabilized features.

I don't see any problem here since infrastructure for compiler features is already implemented, and it doesn't require a lot of effort to support all versions

even the borrow checker isn't implemented

Note, we consider it as one of the most complex compiler errors from implementation point of view, so it's not "even". But it's reasonable enough to say the same thing about "unresolved references" 😅

Copy link
Contributor Author

Choose a reason for hiding this comment

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

It's complex, yes. It's also the core feature of the language.

I think the current approach (org.rust.lang.core.CompilerFeature#check) works well enough and it's quite easy to use.

The change in the PR never had a feature gate. It was just a temporary restriction of the nightly compiler, and it landed on stable together with general or-patterns.

Tracking the nightly compiler implementation is infeasible, it changes all the time.

Also, false negative inspections are a much smaller issue than false positives, since the user will likely run Clippy or cargo check anyway.

@bors
Copy link
Contributor

bors bot commented Sep 2, 2022

Build succeeded:

@bors bors bot merged commit 81dc442 into intellij-rust:master Sep 2, 2022
@github-actions github-actions bot added this to the v178 milestone Sep 2, 2022
@mili-l mili-l self-assigned this Sep 7, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
fix Pull requests that fix some bug(s)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Leading | in nested patterns are incorrectly rejected
4 participants