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 import 'package:analysis_server/protocol/protocol_generated.dart'; | |
6 import 'package:analysis_server/src/services/correction/status.dart'; | 5 import 'package:analysis_server/src/services/correction/status.dart'; |
7 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 6 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
8 import 'package:analyzer/dart/ast/ast.dart'; | 7 import 'package:analyzer/dart/ast/ast.dart'; |
9 import 'package:analyzer/dart/element/element.dart'; | 8 import 'package:analyzer/dart/element/element.dart'; |
| 9 import 'package:analyzer_plugin/protocol/protocol_common.dart'; |
10 import 'package:test/test.dart'; | 10 import 'package:test/test.dart'; |
11 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 11 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
12 | 12 |
13 import 'abstract_rename.dart'; | 13 import 'abstract_rename.dart'; |
14 | 14 |
15 main() { | 15 main() { |
16 defineReflectiveSuite(() { | 16 defineReflectiveSuite(() { |
17 defineReflectiveTests(RenameConstructorTest); | 17 defineReflectiveTests(RenameConstructorTest); |
18 }); | 18 }); |
19 } | 19 } |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 search, (node) => node is ConstructorDeclaration); | 242 search, (node) => node is ConstructorDeclaration); |
243 createRenameRefactoringForElement(element); | 243 createRenameRefactoringForElement(element); |
244 } | 244 } |
245 | 245 |
246 void _createConstructorInvocationRefactoring(String search) { | 246 void _createConstructorInvocationRefactoring(String search) { |
247 ConstructorElement element = findNodeElementAtString( | 247 ConstructorElement element = findNodeElementAtString( |
248 search, (node) => node is InstanceCreationExpression); | 248 search, (node) => node is InstanceCreationExpression); |
249 createRenameRefactoringForElement(element); | 249 createRenameRefactoringForElement(element); |
250 } | 250 } |
251 } | 251 } |
OLD | NEW |