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_unit_member; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 | 6 |
9 import 'package:analysis_server/src/protocol_server.dart' | 7 import 'package:analysis_server/src/protocol_server.dart' |
10 show newLocation_fromElement, newLocation_fromMatch; | 8 show newLocation_fromElement, newLocation_fromMatch; |
11 import 'package:analysis_server/src/services/correction/status.dart'; | 9 import 'package:analysis_server/src/services/correction/status.dart'; |
12 import 'package:analysis_server/src/services/correction/util.dart'; | 10 import 'package:analysis_server/src/services/correction/util.dart'; |
13 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; | 11 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; |
14 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 12 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
15 import 'package:analysis_server/src/services/refactoring/rename.dart'; | 13 import 'package:analysis_server/src/services/refactoring/rename.dart'; |
16 import 'package:analysis_server/src/services/search/element_visitors.dart'; | 14 import 'package:analysis_server/src/services/search/element_visitors.dart'; |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 ? "Renamed {0} will shadow {1} '{2}'." | 254 ? "Renamed {0} will shadow {1} '{2}'." |
257 : "Created {0} will shadow {1} '{2}'.", | 255 : "Created {0} will shadow {1} '{2}'.", |
258 elementKind.displayName, | 256 elementKind.displayName, |
259 getElementKindName(member), | 257 getElementKindName(member), |
260 getElementQualifiedName(member)); | 258 getElementQualifiedName(member)); |
261 result.addError(message, newLocation_fromMatch(memberReference)); | 259 result.addError(message, newLocation_fromMatch(memberReference)); |
262 } | 260 } |
263 } | 261 } |
264 } | 262 } |
265 } | 263 } |
OLD | NEW |