-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
area-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.
Description
A follow-up on #48359.
If we have this code:
void f(List<int> l) => l[0];
class A {}
void f() {
var _ = A(0); // Generate constructor
var _ = A(0, named: 0); // Generate constructor
var a = A(named: 0); // Missing "Generate constructor"
}I'd also like to suggest we have this same fix for:
class B extends A {
B(super.x);
B.named({super.named});
}CC @srawlins
Metadata
Metadata
Assignees
Labels
area-devexpFor issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.For issues related to the analysis server, IDE support, linter, `dart fix`, and diagnostic messages.