-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestdevexp-assistIssues with analysis server assistsIssues with analysis server assistslegacy-area-analyzerUse area-devexp instead.Use area-devexp instead.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
Could we add the option to join inner if with else:
if (a) {
} else {
if (b) {
} else if (c) {
}
}Could become:
if (a) {
} else if (b) {
} else if (c) {
}Originally posted by @FMorschel in #56715 (comment)
I made a CL https://dart-review.googlesource.com/c/sdk/+/391021
tenhobi
Metadata
Metadata
Assignees
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestdevexp-assistIssues with analysis server assistsIssues with analysis server assistslegacy-area-analyzerUse area-devexp instead.Use area-devexp instead.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug