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 test.services.refactoring.extract_local; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 import 'dart:convert'; | 6 import 'dart:convert'; |
9 | 7 |
10 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 8 import 'package:analysis_server/protocol/protocol_generated.dart'; |
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/refactoring/extract_local.dart'; | 10 import 'package:analysis_server/src/services/refactoring/extract_local.dart'; |
13 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 11 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
14 import 'package:test/test.dart'; | 12 import 'package:test/test.dart'; |
15 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 13 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
16 | 14 |
17 import 'abstract_refactoring.dart'; | 15 import 'abstract_refactoring.dart'; |
18 | 16 |
19 main() { | 17 main() { |
20 defineReflectiveSuite(() { | 18 defineReflectiveSuite(() { |
(...skipping 1325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1346 } | 1344 } |
1347 return subExpressions; | 1345 return subExpressions; |
1348 } | 1346 } |
1349 } | 1347 } |
1350 | 1348 |
1351 @reflectiveTest | 1349 @reflectiveTest |
1352 class ExtractLocalTest_Driver extends ExtractLocalTest { | 1350 class ExtractLocalTest_Driver extends ExtractLocalTest { |
1353 @override | 1351 @override |
1354 bool get enableNewAnalysisDriver => true; | 1352 bool get enableNewAnalysisDriver => true; |
1355 } | 1353 } |
OLD | NEW |