| 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 3fe6567c7f4838bd714b2c68342161621fa2423c..c46fdd2292668c62ba5e9188601c2f683cd9c996 100644
|
| --- a/pkg/analysis_server/lib/src/services/correction/fix.dart
|
| +++ b/pkg/analysis_server/lib/src/services/correction/fix.dart
|
| @@ -187,6 +187,10 @@ class DartFixKind {
|
| 'REPLACE_RETURN_TYPE_FUTURE',
|
| 50,
|
| "Return 'Future' from 'async' function");
|
| + static const REPLACE_WITH_NULL_AWARE = const FixKind(
|
| + 'REPLACE_WITH_NULL_AWARE',
|
| + 50,
|
| + "Replace the '.' with a '?.' in the invocation");
|
| static const USE_CONST = const FixKind('USE_CONST', 50, "Change to constant");
|
| static const USE_EFFECTIVE_INTEGER_DIVISION = const FixKind(
|
| 'USE_EFFECTIVE_INTEGER_DIVISION',
|
|
|