-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-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.devexp-uxtype-design
Description
After Dart-Code/Dart-Code#4454 was closed, we have a different behaviour than we had previously:
/// This is a doc for [MyClass] and [MyClass.new]
class MyClass {
MyClass(); // Constructor
MyClass myMethod<T extends MyClass>() {
return MyClass();
}
}IIRC, previously we had implicit new constructors highlighting the class name too.
But that may be hard to solve. Like, when you hover the explicit new, to only highlight the current cases but then when hovering the actual constructor, it would make both the class name and the explicit new to highlight without . (at least the way we have it currently). I'm not sure what to do here, WDYT?
HudsonAfonso
Metadata
Metadata
Assignees
Labels
P3A lower priority bug or feature requestA lower priority bug or feature requestarea-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.devexp-uxtype-design

