-
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-refactoringIssues with analysis server refactoringsIssues with analysis server refactoringstype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
After #59954 I realized we should do a similar processing for static members:
class ClassName {
static final _a = 1;
void foo(int a) {
print(_a);
}
}
When refactoring _a
to a
, it should add ClassName.
:
class ClassName {
static final a = 1;
void foo(int a) {
print(a);
}
}
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-refactoringIssues with analysis server refactoringsIssues with analysis server refactoringstype-enhancementA request for a change that isn't a bugA request for a change that isn't a bug