| 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_constructor; | 5 library services.src.refactoring.rename_constructor; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_services/correction/change.dart'; | 9 import 'package:analysis_server/src/services/correction/change.dart'; |
| 10 import 'package:analysis_services/correction/status.dart'; | 10 import 'package:analysis_server/src/services/correction/status.dart'; |
| 11 import 'package:analysis_services/refactoring/refactoring.dart'; | 11 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
| 12 import 'package:analysis_services/search/hierarchy.dart'; | 12 import 'package:analysis_server/src/services/search/hierarchy.dart'; |
| 13 import 'package:analysis_services/search/search_engine.dart'; | 13 import 'package:analysis_server/src/services/search/search_engine.dart'; |
| 14 import 'package:analysis_services/src/correction/util.dart'; | 14 import 'package:analysis_server/src/services/correction/util.dart'; |
| 15 import 'package:analysis_services/src/refactoring/naming_conventions.dart'; | 15 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; |
| 16 import 'package:analysis_services/src/refactoring/rename.dart'; | 16 import 'package:analysis_server/src/services/refactoring/rename.dart'; |
| 17 import 'package:analyzer/src/generated/element.dart'; | 17 import 'package:analyzer/src/generated/element.dart'; |
| 18 import 'package:analyzer/src/generated/java_core.dart'; | 18 import 'package:analyzer/src/generated/java_core.dart'; |
| 19 | 19 |
| 20 | 20 |
| 21 /** | 21 /** |
| 22 * A [Refactoring] for renaming [ConstructorElement]s. | 22 * A [Refactoring] for renaming [ConstructorElement]s. |
| 23 */ | 23 */ |
| 24 class RenameConstructorRefactoringImpl extends RenameRefactoringImpl { | 24 class RenameConstructorRefactoringImpl extends RenameRefactoringImpl { |
| 25 RenameConstructorRefactoringImpl(SearchEngine searchEngine, | 25 RenameConstructorRefactoringImpl(SearchEngine searchEngine, |
| 26 ConstructorElement element) | 26 ConstructorElement element) |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "Class '{0}' already declares {1} with name '{2}'.", | 74 "Class '{0}' already declares {1} with name '{2}'.", |
| 75 parentClass.displayName, | 75 parentClass.displayName, |
| 76 getElementKindName(newNameMember), | 76 getElementKindName(newNameMember), |
| 77 newName); | 77 newName); |
| 78 result.addError( | 78 result.addError( |
| 79 message, | 79 message, |
| 80 new RefactoringStatusContext.forElement(newNameMember)); | 80 new RefactoringStatusContext.forElement(newNameMember)); |
| 81 } | 81 } |
| 82 } | 82 } |
| 83 } | 83 } |
| OLD | NEW |