| Index: pkg/analysis_server/lib/src/services/correction/fix.dart
|
| diff --git a/pkg/analysis_server/lib/src/services/correction/fix.dart b/pkg/analysis_server/lib/src/services/correction/fix.dart
|
| index da9f227c8872205f1df35600ea935f493188e91c..3ac901331a647e7e5e98551b274cf90316d4e242 100644
|
| --- a/pkg/analysis_server/lib/src/services/correction/fix.dart
|
| +++ b/pkg/analysis_server/lib/src/services/correction/fix.dart
|
| @@ -154,6 +154,8 @@ class DartFixKind {
|
| const FixKind('IMPORT_LIBRARY_SHOW', 45, "Update library '{0}' import");
|
| static const INSERT_SEMICOLON =
|
| const FixKind('INSERT_SEMICOLON', 50, "Insert ';'");
|
| + static const INVOKE_CONSTRUCTOR_USING_NEW = const FixKind(
|
| + 'INVOKE_CONSTRUCTOR_USING_NEW', 50, "Invoke constructor using 'new'");
|
| static const LINT_ADD_OVERRIDE =
|
| const FixKind('LINT_ADD_OVERRIDE', 50, "Add '@override' annotation");
|
| static const LINT_REMOVE_INTERPOLATION_BRACES = const FixKind(
|
|
|