-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
A-idegeneral IDE featuresgeneral IDE featuresC-featureCategory: feature requestCategory: feature requestS-blockedStatus: marked as blocked ❌ on something else such as an RFC or other implementation work.Status: marked as blocked ❌ on something else such as an RFC or other implementation work.
Description
Similar to lifetime elision hints, we should have label hints for control flow constructs.
That is for,
loop {
loop: {
break;
}
continue;
}
we should have the following hints
'0: loop {
'1: loop {
break '1;
}
continue '0;
}
For configs, enabled, disabled and a third option for only showing it in nested loop contexts would make sense I think
alibektas, SomeoneToIgnore and cardosoPatchMixolydic
Metadata
Metadata
Assignees
Labels
A-idegeneral IDE featuresgeneral IDE featuresC-featureCategory: feature requestCategory: feature requestS-blockedStatus: marked as blocked ❌ on something else such as an RFC or other implementation work.Status: marked as blocked ❌ on something else such as an RFC or other implementation work.