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_label; | |
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 21 matching lines...) Expand all Loading... |
38 result.addStatus(validateLabelName(newName)); | 36 result.addStatus(validateLabelName(newName)); |
39 return result; | 37 return result; |
40 } | 38 } |
41 | 39 |
42 @override | 40 @override |
43 Future fillChange() { | 41 Future fillChange() { |
44 addDeclarationEdit(element); | 42 addDeclarationEdit(element); |
45 return searchEngine.searchReferences(element).then(addReferenceEdits); | 43 return searchEngine.searchReferences(element).then(addReferenceEdits); |
46 } | 44 } |
47 } | 45 } |
OLD | NEW |