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 services.src.refactoring.rename_library; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 | 6 |
9 import 'package:analysis_server/src/services/correction/status.dart'; | 7 import 'package:analysis_server/src/services/correction/status.dart'; |
10 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; | 8 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; |
11 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 9 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
12 import 'package:analysis_server/src/services/refactoring/rename.dart'; | 10 import 'package:analysis_server/src/services/refactoring/rename.dart'; |
13 import 'package:analysis_server/src/services/search/search_engine.dart'; | 11 import 'package:analysis_server/src/services/search/search_engine.dart'; |
14 import 'package:analyzer/dart/element/element.dart'; | 12 import 'package:analyzer/dart/element/element.dart'; |
15 | 13 |
16 /** | 14 /** |
(...skipping 24 matching lines...) Expand all Loading... |
41 result.addStatus(validateLibraryName(newName)); | 39 result.addStatus(validateLibraryName(newName)); |
42 return result; | 40 return result; |
43 } | 41 } |
44 | 42 |
45 @override | 43 @override |
46 Future fillChange() { | 44 Future fillChange() { |
47 addDeclarationEdit(element); | 45 addDeclarationEdit(element); |
48 return searchEngine.searchReferences(element).then(addReferenceEdits); | 46 return searchEngine.searchReferences(element).then(addReferenceEdits); |
49 } | 47 } |
50 } | 48 } |
OLD | NEW |