-
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.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
For flutter/flutter#123352 I would like to write a dart fix that changes all classes extending RootRenderObjectElement
to instead extend RenderObjectElement
and mix in RootElementMixin
.
Basically, I would like to write a fix that changes
class Foo extends RootRenderObjectElement { ... }
to
class Foo extends RenderObjectElement with RootElementMixin { ... }
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.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug