OLD | NEW |
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 analyzer.test.src.summary.resynthesize_kernel_test; | 5 library analyzer.test.src.summary.resynthesize_kernel_test; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:analyzer/file_system/file_system.dart'; | 9 import 'package:analyzer/file_system/file_system.dart'; |
10 import 'package:analyzer/file_system/memory_file_system.dart'; | 10 import 'package:analyzer/file_system/memory_file_system.dart'; |
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
380 test_exportImport_configurations_useDefault() async { | 380 test_exportImport_configurations_useDefault() async { |
381 await super.test_exportImport_configurations_useDefault(); | 381 await super.test_exportImport_configurations_useDefault(); |
382 } | 382 } |
383 | 383 |
384 @failingTest | 384 @failingTest |
385 test_exportImport_configurations_useFirst() async { | 385 test_exportImport_configurations_useFirst() async { |
386 await super.test_exportImport_configurations_useFirst(); | 386 await super.test_exportImport_configurations_useFirst(); |
387 } | 387 } |
388 | 388 |
389 @failingTest | 389 @failingTest |
390 test_field_covariant() async { | |
391 await super.test_field_covariant(); | |
392 } | |
393 | |
394 @failingTest | |
395 test_field_propagatedType_final_dep_inLib() async { | 390 test_field_propagatedType_final_dep_inLib() async { |
396 await super.test_field_propagatedType_final_dep_inLib(); | 391 await super.test_field_propagatedType_final_dep_inLib(); |
397 } | 392 } |
398 | 393 |
399 @failingTest | 394 @failingTest |
400 test_field_propagatedType_final_dep_inPart() async { | 395 test_field_propagatedType_final_dep_inPart() async { |
401 await super.test_field_propagatedType_final_dep_inPart(); | 396 await super.test_field_propagatedType_final_dep_inPart(); |
402 } | 397 } |
403 | 398 |
404 @failingTest | 399 @failingTest |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 test_parameter_checked() async { | 657 test_parameter_checked() async { |
663 await super.test_parameter_checked(); | 658 await super.test_parameter_checked(); |
664 } | 659 } |
665 | 660 |
666 @failingTest | 661 @failingTest |
667 test_parameter_checked_inherited() async { | 662 test_parameter_checked_inherited() async { |
668 await super.test_parameter_checked_inherited(); | 663 await super.test_parameter_checked_inherited(); |
669 } | 664 } |
670 | 665 |
671 @failingTest | 666 @failingTest |
672 test_parameter_covariant() async { | |
673 await super.test_parameter_covariant(); | |
674 } | |
675 | |
676 @failingTest | |
677 test_parameter_covariant_inherited() async { | 667 test_parameter_covariant_inherited() async { |
678 await super.test_parameter_covariant_inherited(); | 668 await super.test_parameter_covariant_inherited(); |
679 } | 669 } |
680 | 670 |
681 @failingTest | 671 @failingTest |
682 test_parts_invalidUri() async { | 672 test_parts_invalidUri() async { |
683 await super.test_parts_invalidUri(); | 673 await super.test_parts_invalidUri(); |
684 } | 674 } |
685 | 675 |
686 @failingTest | 676 @failingTest |
687 test_parts_invalidUri_nullStringValue() async { | 677 test_parts_invalidUri_nullStringValue() async { |
688 await super.test_parts_invalidUri_nullStringValue(); | 678 await super.test_parts_invalidUri_nullStringValue(); |
689 } | 679 } |
690 | 680 |
691 @failingTest | 681 @failingTest |
692 test_setter_covariant() async { | |
693 await super.test_setter_covariant(); | |
694 } | |
695 | |
696 @failingTest | |
697 test_syntheticFunctionType_genericClosure() async { | 682 test_syntheticFunctionType_genericClosure() async { |
698 await super.test_syntheticFunctionType_genericClosure(); | 683 await super.test_syntheticFunctionType_genericClosure(); |
699 } | 684 } |
700 | 685 |
701 @failingTest | 686 @failingTest |
702 test_syntheticFunctionType_inGenericClass() async { | 687 test_syntheticFunctionType_inGenericClass() async { |
703 await super.test_syntheticFunctionType_inGenericClass(); | 688 await super.test_syntheticFunctionType_inGenericClass(); |
704 } | 689 } |
705 | 690 |
706 @failingTest | 691 @failingTest |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 @override | 907 @override |
923 Future<List<int>> readAsBytes() async { | 908 Future<List<int>> readAsBytes() async { |
924 return file.readAsBytesSync(); | 909 return file.readAsBytesSync(); |
925 } | 910 } |
926 | 911 |
927 @override | 912 @override |
928 Future<String> readAsString() async { | 913 Future<String> readAsString() async { |
929 return file.readAsStringSync(); | 914 return file.readAsStringSync(); |
930 } | 915 } |
931 } | 916 } |
OLD | NEW |