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

Side by Side Diff: pkg/analysis_server/lib/src/services/refactoring/convert_method_to_getter.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.convert_method_to_getter; 5 library services.src.refactoring.convert_method_to_getter;
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/source_range.dart'; 10 import 'package:analysis_server/src/services/correction/source_range.dart';
11 import 'package:analysis_server/src/services/correction/status.dart'; 11 import 'package:analysis_server/src/services/correction/status.dart';
12 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; 12 import 'package:analysis_server/src/services/refactoring/refactoring.dart';
13 import 'package:analysis_server/src/services/refactoring/refactoring_internal.da rt'; 13 import 'package:analysis_server/src/services/refactoring/refactoring_internal.da rt';
14 import 'package:analysis_server/src/services/search/hierarchy.dart'; 14 import 'package:analysis_server/src/services/search/hierarchy.dart';
15 import 'package:analysis_server/src/services/search/search_engine.dart'; 15 import 'package:analysis_server/src/services/search/search_engine.dart';
16 import 'package:analyzer/dart/element/element.dart';
16 import 'package:analyzer/src/generated/ast.dart'; 17 import 'package:analyzer/src/generated/ast.dart';
17 import 'package:analyzer/src/generated/element.dart';
18 import 'package:analyzer/src/generated/source.dart'; 18 import 'package:analyzer/src/generated/source.dart';
19 19
20 /** 20 /**
21 * [ConvertMethodToGetterRefactoring] implementation. 21 * [ConvertMethodToGetterRefactoring] implementation.
22 */ 22 */
23 class ConvertMethodToGetterRefactoringImpl extends RefactoringImpl 23 class ConvertMethodToGetterRefactoringImpl extends RefactoringImpl
24 implements ConvertMethodToGetterRefactoring { 24 implements ConvertMethodToGetterRefactoring {
25 final SearchEngine searchEngine; 25 final SearchEngine searchEngine;
26 final ExecutableElement element; 26 final ExecutableElement element;
27 27
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 } 129 }
130 // we need invocation 130 // we need invocation
131 if (invocation != null) { 131 if (invocation != null) {
132 SourceRange range = rangeEndEnd(refRange, invocation); 132 SourceRange range = rangeEndEnd(refRange, invocation);
133 SourceEdit edit = newSourceEdit_range(range, ''); 133 SourceEdit edit = newSourceEdit_range(range, '');
134 doSourceChange_addElementEdit(change, refElement, edit); 134 doSourceChange_addElementEdit(change, refElement, edit);
135 } 135 }
136 } 136 }
137 } 137 }
138 } 138 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698