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 'dart:async'; | 5 import 'dart:async'; |
6 import 'dart:convert'; | 6 import 'dart:convert'; |
7 | 7 |
8 import 'package:analysis_server/protocol/protocol_generated.dart'; | |
9 import 'package:analysis_server/src/services/correction/status.dart'; | 8 import 'package:analysis_server/src/services/correction/status.dart'; |
10 import 'package:analysis_server/src/services/refactoring/extract_local.dart'; | 9 import 'package:analysis_server/src/services/refactoring/extract_local.dart'; |
11 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 10 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
| 11 import 'package:analyzer_plugin/protocol/protocol_common.dart'; |
12 import 'package:test/test.dart'; | 12 import 'package:test/test.dart'; |
13 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
14 | 14 |
15 import 'abstract_refactoring.dart'; | 15 import 'abstract_refactoring.dart'; |
16 | 16 |
17 main() { | 17 main() { |
18 defineReflectiveSuite(() { | 18 defineReflectiveSuite(() { |
19 defineReflectiveTests(ExtractLocalTest); | 19 defineReflectiveTests(ExtractLocalTest); |
20 }); | 20 }); |
21 } | 21 } |
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1337 List<String> _getCoveringExpressions() { | 1337 List<String> _getCoveringExpressions() { |
1338 List<String> subExpressions = <String>[]; | 1338 List<String> subExpressions = <String>[]; |
1339 for (int i = 0; i < refactoring.coveringExpressionOffsets.length; i++) { | 1339 for (int i = 0; i < refactoring.coveringExpressionOffsets.length; i++) { |
1340 int offset = refactoring.coveringExpressionOffsets[i]; | 1340 int offset = refactoring.coveringExpressionOffsets[i]; |
1341 int length = refactoring.coveringExpressionLengths[i]; | 1341 int length = refactoring.coveringExpressionLengths[i]; |
1342 subExpressions.add(testCode.substring(offset, offset + length)); | 1342 subExpressions.add(testCode.substring(offset, offset + length)); |
1343 } | 1343 } |
1344 return subExpressions; | 1344 return subExpressions; |
1345 } | 1345 } |
1346 } | 1346 } |
OLD | NEW |