| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.edit.fix; | 5 library test.edit.fix; |
| 6 | 6 |
| 7 import 'package:analysis_server/src/computer/element.dart'; | |
| 8 import 'package:analysis_server/src/computer/error.dart'; | 7 import 'package:analysis_server/src/computer/error.dart'; |
| 9 import 'package:analysis_server/src/edit/fix.dart'; | 8 import 'package:analysis_server/src/edit/fix.dart'; |
| 10 import 'package:analysis_services/constants.dart'; | 9 import 'package:analysis_services/constants.dart'; |
| 11 import 'package:analysis_services/correction/change.dart'; | |
| 12 import 'package:analysis_services/correction/fix.dart' as services; | 10 import 'package:analysis_services/correction/fix.dart' as services; |
| 13 import 'package:analysis_services/index/index.dart' hide Location; | 11 import 'package:analysis_services/index/index.dart' hide Location; |
| 14 import 'package:analysis_services/index/local_memory_index.dart'; | 12 import 'package:analysis_services/index/local_memory_index.dart'; |
| 15 import 'package:analysis_services/src/search/search_engine.dart'; | 13 import 'package:analysis_services/src/search/search_engine.dart'; |
| 16 import 'package:analysis_testing/abstract_single_unit.dart'; | 14 import 'package:analysis_testing/abstract_single_unit.dart'; |
| 17 import 'package:analysis_testing/reflective_tests.dart'; | 15 import 'package:analysis_testing/reflective_tests.dart'; |
| 18 import 'package:analyzer/src/generated/element.dart' as engine; | 16 import 'package:analyzer/src/generated/element.dart' as engine; |
| 19 import 'package:analyzer/src/generated/engine.dart' as engine; | 17 import 'package:analyzer/src/generated/engine.dart' as engine; |
| 20 import 'package:analyzer/src/generated/error.dart' as engine; | 18 import 'package:analyzer/src/generated/error.dart' as engine; |
| 21 import 'package:analyzer/src/generated/utilities_dart.dart' as engine; | 19 import 'package:analyzer/src/generated/utilities_dart.dart' as engine; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 OFFSET: 20, | 75 OFFSET: 20, |
| 78 LENGTH: 0, | 76 LENGTH: 0, |
| 79 REPLACEMENT: ';' | 77 REPLACEMENT: ';' |
| 80 }] | 78 }] |
| 81 }], | 79 }], |
| 82 LINKED_EDIT_GROUPS: [] | 80 LINKED_EDIT_GROUPS: [] |
| 83 }] | 81 }] |
| 84 }); | 82 }); |
| 85 } | 83 } |
| 86 } | 84 } |
| OLD | NEW |