Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: pkg/analysis_server/lib/src/services/refactoring/rename_local.dart

Issue 1527793003: Clean up imports in analysis_server and analyzer_cli (and one missed in analyzer) (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/element/element.dart';
17 import 'package:analyzer/src/generated/ast.dart'; 18 import 'package:analyzer/src/generated/ast.dart';
18 import 'package:analyzer/src/generated/element.dart';
19 import 'package:analyzer/src/generated/source.dart'; 19 import 'package:analyzer/src/generated/source.dart';
20 import 'package:analyzer/src/generated/utilities_dart.dart'; 20 import 'package:analyzer/src/generated/utilities_dart.dart';
21 21
22 /** 22 /**
23 * A [Refactoring] for renaming [LocalElement]s. 23 * A [Refactoring] for renaming [LocalElement]s.
24 */ 24 */
25 class RenameLocalRefactoringImpl extends RenameRefactoringImpl { 25 class RenameLocalRefactoringImpl extends RenameRefactoringImpl {
26 Set<LocalElement> elements = new Set<LocalElement>(); 26 Set<LocalElement> elements = new Set<LocalElement>();
27 27
28 RenameLocalRefactoringImpl(SearchEngine searchEngine, LocalElement element) 28 RenameLocalRefactoringImpl(SearchEngine searchEngine, LocalElement element)
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 '"$nameElementSourceName" will be shadowed by renamed $refKind.'; 162 '"$nameElementSourceName" will be shadowed by renamed $refKind.';
163 result.addError(message, newLocation_fromNode(node)); 163 result.addError(message, newLocation_fromNode(node));
164 } 164 }
165 } 165 }
166 } 166 }
167 167
168 static bool _isNamedExpressionName(SimpleIdentifier node) { 168 static bool _isNamedExpressionName(SimpleIdentifier node) {
169 return node.parent is Label && node.parent.parent is NamedExpression; 169 return node.parent is Label && node.parent.parent is NamedExpression;
170 } 170 }
171 } 171 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698