| 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.correction.fix; | 5 library test.services.correction.fix; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 | 8 |
| 9 import 'package:analysis_server/plugin/edit/fix/fix_core.dart'; | 9 import 'package:analysis_server/plugin/edit/fix/fix_core.dart'; |
| 10 import 'package:analysis_server/plugin/edit/fix/fix_dart.dart'; | 10 import 'package:analysis_server/plugin/edit/fix/fix_dart.dart'; |
| (...skipping 5360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5371 } | 5371 } |
| 5372 } | 5372 } |
| 5373 | 5373 |
| 5374 @reflectiveTest | 5374 @reflectiveTest |
| 5375 class FixProcessorTest_Driver extends FixProcessorTest { | 5375 class FixProcessorTest_Driver extends FixProcessorTest { |
| 5376 @override | 5376 @override |
| 5377 bool get enableNewAnalysisDriver => true; | 5377 bool get enableNewAnalysisDriver => true; |
| 5378 | 5378 |
| 5379 @failingTest | 5379 @failingTest |
| 5380 @override | 5380 @override |
| 5381 test_addFieldFormalParameters_hasRequiredParameter() { | |
| 5382 return super.test_addFieldFormalParameters_hasRequiredParameter(); | |
| 5383 } | |
| 5384 | |
| 5385 @failingTest | |
| 5386 @override | |
| 5387 test_addFieldFormalParameters_noParameters() { | |
| 5388 return super.test_addFieldFormalParameters_noParameters(); | |
| 5389 } | |
| 5390 | |
| 5391 @failingTest | |
| 5392 @override | |
| 5393 test_addFieldFormalParameters_noRequiredParameter() { | |
| 5394 return super.test_addFieldFormalParameters_noRequiredParameter(); | |
| 5395 } | |
| 5396 | |
| 5397 @failingTest | |
| 5398 @override | |
| 5399 test_addPartOfDirective() { | 5381 test_addPartOfDirective() { |
| 5400 return super.test_addPartOfDirective(); | 5382 return super.test_addPartOfDirective(); |
| 5401 } | 5383 } |
| 5402 | 5384 |
| 5403 @failingTest | 5385 @failingTest |
| 5404 @override | 5386 @override |
| 5405 test_addSync_blockFunctionBody() { | 5387 test_addSync_blockFunctionBody() { |
| 5406 return super.test_addSync_blockFunctionBody(); | 5388 return super.test_addSync_blockFunctionBody(); |
| 5407 } | 5389 } |
| 5408 | 5390 |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5774 | 5756 |
| 5775 @override | 5757 @override |
| 5776 final CompilationUnit unit; | 5758 final CompilationUnit unit; |
| 5777 | 5759 |
| 5778 @override | 5760 @override |
| 5779 final AnalysisError error; | 5761 final AnalysisError error; |
| 5780 | 5762 |
| 5781 _DartFixContextImpl(this.resourceProvider, this.getTopLevelDeclarations, | 5763 _DartFixContextImpl(this.resourceProvider, this.getTopLevelDeclarations, |
| 5782 this.analysisContext, this.unit, this.error); | 5764 this.analysisContext, this.unit, this.error); |
| 5783 } | 5765 } |
| OLD | NEW |