| 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_local; | 5 library services.src.refactoring.rename_local; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/src/protocol_server.dart' hide Element; | 9 import 'package:analysis_server/src/protocol_server.dart' hide Element; |
| 10 import 'package:analysis_server/src/services/correction/status.dart'; | 10 import 'package:analysis_server/src/services/correction/status.dart'; |
| 11 import 'package:analysis_server/src/services/correction/util.dart'; | 11 import 'package:analysis_server/src/services/correction/util.dart'; |
| 12 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; | 12 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; |
| 13 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 13 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
| 14 import 'package:analysis_server/src/services/refactoring/rename.dart'; | 14 import 'package:analysis_server/src/services/refactoring/rename.dart'; |
| 15 import 'package:analysis_server/src/services/search/hierarchy.dart'; | 15 import 'package:analysis_server/src/services/search/hierarchy.dart'; |
| 16 import 'package:analysis_server/src/services/search/search_engine.dart'; | 16 import 'package:analysis_server/src/services/search/search_engine.dart'; |
| 17 import 'package:analyzer/dart/ast/ast.dart'; |
| 18 import 'package:analyzer/dart/ast/visitor.dart'; |
| 17 import 'package:analyzer/dart/element/element.dart'; | 19 import 'package:analyzer/dart/element/element.dart'; |
| 18 import 'package:analyzer/src/generated/ast.dart'; | |
| 19 import 'package:analyzer/src/generated/source.dart'; | 20 import 'package:analyzer/src/generated/source.dart'; |
| 20 import 'package:analyzer/src/generated/utilities_dart.dart'; | 21 import 'package:analyzer/src/generated/utilities_dart.dart'; |
| 21 | 22 |
| 22 /** | 23 /** |
| 23 * A [Refactoring] for renaming [LocalElement]s. | 24 * A [Refactoring] for renaming [LocalElement]s. |
| 24 */ | 25 */ |
| 25 class RenameLocalRefactoringImpl extends RenameRefactoringImpl { | 26 class RenameLocalRefactoringImpl extends RenameRefactoringImpl { |
| 26 Set<LocalElement> elements = new Set<LocalElement>(); | 27 Set<LocalElement> elements = new Set<LocalElement>(); |
| 27 | 28 |
| 28 RenameLocalRefactoringImpl(SearchEngine searchEngine, LocalElement element) | 29 RenameLocalRefactoringImpl(SearchEngine searchEngine, LocalElement element) |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 '"$nameElementSourceName" will be shadowed by renamed $refKind.'; | 164 '"$nameElementSourceName" will be shadowed by renamed $refKind.'; |
| 164 result.addError(message, newLocation_fromNode(node)); | 165 result.addError(message, newLocation_fromNode(node)); |
| 165 } | 166 } |
| 166 } | 167 } |
| 167 } | 168 } |
| 168 | 169 |
| 169 static bool _isNamedExpressionName(SimpleIdentifier node) { | 170 static bool _isNamedExpressionName(SimpleIdentifier node) { |
| 170 return node.parent is Label && node.parent.parent is NamedExpression; | 171 return node.parent is Label && node.parent.parent is NamedExpression; |
| 171 } | 172 } |
| 172 } | 173 } |
| OLD | NEW |