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 labeled loops as value expressions for break #87026

Merged
merged 2 commits into from
Aug 4, 2021

Conversation

FabianWolff
Copy link
Contributor

Fixes #86948. This is currently allowed:

return 'label: loop { break 'label 42; };
break ('label: loop { break 'label 42; });
break 1 + 'label: loop { break 'label 42; };
break 'outer 'inner: loop { break 'inner 42; };

But not this:

break 'label: loop { break 'label 42; };

I have fixed this, so that the above now parses as an unlabeled break with a labeled loop as its value expression.

@rust-highfive
Copy link
Collaborator

r? @davidtwco

(rust-highfive has picked a reviewer for you, use r? to override)

@rust-highfive rust-highfive added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 10, 2021
Copy link
Contributor

@estebank estebank left a comment

Choose a reason for hiding this comment

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

I'm r+ with the code changes, but I want confirmation from @rust-lang/lang that this is something we want to support going forward (it technically changes the grammar).

compiler/rustc_parse/src/parser/expr.rs Outdated Show resolved Hide resolved
src/test/ui/parser/break-with-labeled-loop.rs Outdated Show resolved Hide resolved
@nikomatsakis nikomatsakis added I-nominated T-lang Relevant to the language team, which will review and decide on the PR/issue. labels Jul 11, 2021
@nikomatsakis
Copy link
Contributor

Nominated for @rust-lang/lang. I believe what is being proposed here is a change to the grammar. I believe the grammar would be something like this:

BreakExpr :=
  'break' 
  'break' lifetime Expr
  'break' Expr

Expr :=
  lifetime: 'loop' 
  ...

In other words, you can write break 'foo: loop { .. }. I would sort of expect this to work but I guess it didn't, presumably because of a parser bug. (I've not read the code closely.)

Does this sound correct?

@FabianWolff
Copy link
Contributor Author

In other words, you can write break 'foo: loop { .. }. I would sort of expect this to work but I guess it didn't, presumably because of a parser bug. (I've not read the code closely.)

Does this sound correct?

Yes, that sounds correct, thanks for having a look! I believe that this was a simple oversight in the parser, which currently accepts a label/lifetime for break greedily, while it should actually check whether the label might be part of the expression, which is what I have implemented here.

@scottmcm
Copy link
Member

Given that this works with return already, I'd personally consider this a bug, and that it was probably expected to work this way the whole time.

(It seems like it's an easy mistake to make, since return try { ... } didn't use to work either, #76274.)

@davidtwco
Copy link
Member

r? @estebank

@rust-highfive rust-highfive assigned estebank and unassigned davidtwco Jul 15, 2021
@estebank estebank added S-waiting-on-team Status: Awaiting decision from the relevant subteam (see the T-<team> label). and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 15, 2021
@joshtriplett
Copy link
Member

This seems a little confusing to me, and I think I would have expected parentheses as a disambiguator.

@cramertj
Copy link
Member

cramertj commented Jul 15, 2021

+1 to @joshtriplett's comment. I think this ambiguous to both human and computer parsers. That is, it's very unclear to me whether the 'label in break 'label loop { ... } acts as a break target or as a loop label. return does not have this problem, because return does not take a target label.

@estebank
Copy link
Contributor

This PR could easily be changed to properly parse this while emitting an error suggesting surrounding with parentheses.

@scottmcm
Copy link
Member

I think this ambiguous to both human and computer parsers.

I don't think it's ambiguous to computers, because of break 'foo (no colon) vs break 'foo:.

return does not have this problem, because return does not take a target label.

But I do think this is a good point.


This seems like one of those places where it'd be great to have the grammar WG.

Do we have conventions for where we force parens, vs just encouraging them with a lint of some sort? It feels a bit off, in terms of BNF structure, to need a different production to go after break vs after return...

@joshtriplett
Copy link
Member

We discussed this in the @rust-lang/lang meeting, and most people expressed that they'd prefer to require parentheses here (and the remaining people felt that we should at least recommend parens).

As @estebank suggested, we'd like to see the parser improved to handle this, but to emit an error message rather than accepting it.

Note that either variation should require parentheses: break 'foo (loop { ... }); or break ('foo: loop { ... });.

@joshtriplett joshtriplett added S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. and removed I-nominated S-waiting-on-team Status: Awaiting decision from the relevant subteam (see the T-<team> label). labels Jul 20, 2021
@FabianWolff
Copy link
Contributor Author

Note that either variation should require parentheses: break 'foo (loop { ... }); or break ('foo: loop { ... });.

But that's a breaking change, because the following is allowed today:

fn main() {
    let x = 'lbl: loop {
        break 'lbl loop { break 42; };
    };
    println!("{}", x);
}
42

So should I emit a warning for break 'foo loop { ... }; and a hard error for break 'foo: loop { ... };?

@joshtriplett
Copy link
Member

@FabianWolff Yes, the variant that's currently accepted should get a warning, and the variant that isn't should get a hard error.

@FabianWolff
Copy link
Contributor Author

@FabianWolff Yes, the variant that's currently accepted should get a warning, and the variant that isn't should get a hard error.

This is now implemented, so this PR is ready for re-review @estebank.

@rustbot label: +S-waiting-on-review -S-waiting-on-author

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Jul 25, 2021
Comment on lines 1424 to 1428
.struct_span_warn(
lo.to(expr.span),
"this labeled break expression is easily confused with an \
unlabeled break with a labeled value expression",
)
Copy link
Contributor

Choose a reason for hiding this comment

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

@rust-lang/lang, are we ok with an unconditional warning here?

@FabianWolff we would ideally make this a lint, or a warning only on certain editions... Would you mind turning this into an error so that we can do a crater run to get an idea of what impact the unconditional warning will have in the ecosystem?

Besides that, I'm ok with the code as is (other than some wonky formatting above).

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I have now turned the warning into a warn-by-default lint. This is therefore ready for re-review @estebank.

@estebank
Copy link
Contributor

estebank commented Aug 3, 2021

r=me after addressing the last remaining nitpick

@estebank
Copy link
Contributor

estebank commented Aug 4, 2021

@bors r+

@bors
Copy link
Contributor

bors commented Aug 4, 2021

📌 Commit 7c81132 has been approved by estebank

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Aug 4, 2021
@bors
Copy link
Contributor

bors commented Aug 4, 2021

⌛ Testing commit 7c81132 with merge 49ca3d9...

@bors
Copy link
Contributor

bors commented Aug 4, 2021

☀️ Test successful - checks-actions
Approved by: estebank
Pushing 49ca3d9 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Aug 4, 2021
@bors bors merged commit 49ca3d9 into rust-lang:master Aug 4, 2021
@rustbot rustbot added this to the 1.56.0 milestone Aug 4, 2021
dtolnay added a commit to dtolnay/syn that referenced this pull request Nov 6, 2023
    warning: for loop over a single element
       --> tests/test_expr.rs:333:5
        |
    333 | /     for stmt in [
    334 | |         // Parentheses required. See rust-lang/rust#87026.
    335 | |         quote! {
    336 | |             break 'label: loop { break 'label 42; };
    ...   |
    339 | |         syn::parse2::<Stmt>(stmt).unwrap_err();
    340 | |     }
        | |_____^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_element_loop
        = note: `-W clippy::single-element-loop` implied by `-W clippy::all`
        = help: to override `-W clippy::all` add `#[allow(clippy::single_element_loop)]`
    help: try
        |
    333 ~     {
    334 +         let stmt = {
    335 +         let mut _s = $crate::__private::TokenStream::new();
    336 +         $crate::quote_each_token!{_s $($tt)*}
    337 +         _s
    338 +     };
    339 +         syn::parse2::<Stmt>(stmt).unwrap_err();
    340 +     }
        |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
merged-by-bors This PR was explicitly merged by bors. S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-lang Relevant to the language team, which will review and decide on the PR/issue.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Parse error on labeled loop after break
10 participants