| Index: pkg/analysis_server/test/services/correction/fix_test.dart
|
| diff --git a/pkg/analysis_server/test/services/correction/fix_test.dart b/pkg/analysis_server/test/services/correction/fix_test.dart
|
| index aa12e4d5c48bb934a56f42a81bd286bb5fc16a30..1136a5e828e297573c22beb8e4ee914633acfc9d 100644
|
| --- a/pkg/analysis_server/test/services/correction/fix_test.dart
|
| +++ b/pkg/analysis_server/test/services/correction/fix_test.dart
|
| @@ -2396,6 +2396,17 @@ abstract class B extends A {
|
| ''');
|
| }
|
|
|
| + void test_noException_1() {
|
| + resolveTestUnit('''
|
| +main(p) {
|
| + p i s Null;
|
| +}''');
|
| + List<AnalysisError> errors = context.computeErrors(testSource);
|
| + for (var error in errors) {
|
| + computeFixes(testUnit, error);
|
| + }
|
| + }
|
| +
|
| void test_removeParentheses_inGetterDeclaration() {
|
| resolveTestUnit('''
|
| class A {
|
|
|