Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Side by Side Diff: pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart

Issue 2992083002: Resynthesize typedefs from Kernel. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/analyzer/test/src/summary/resynthesize_common.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 648 matching lines...) Expand 10 before | Expand all | Expand 10 after
659 test_library_documented_lines() async { 659 test_library_documented_lines() async {
660 await super.test_library_documented_lines(); 660 await super.test_library_documented_lines();
661 } 661 }
662 662
663 @failingTest 663 @failingTest
664 test_library_documented_stars() async { 664 test_library_documented_stars() async {
665 await super.test_library_documented_stars(); 665 await super.test_library_documented_stars();
666 } 666 }
667 667
668 @failingTest 668 @failingTest
669 test_main_typedef() async {
670 await super.test_main_typedef();
671 }
672
673 @failingTest
674 test_metadata_classTypeAlias() async { 669 test_metadata_classTypeAlias() async {
675 await super.test_metadata_classTypeAlias(); 670 await super.test_metadata_classTypeAlias();
676 } 671 }
677 672
678 @failingTest 673 @failingTest
679 test_metadata_enumDeclaration() async { 674 test_metadata_enumDeclaration() async {
680 await super.test_metadata_enumDeclaration(); 675 await super.test_metadata_enumDeclaration();
681 } 676 }
682 677
683 @failingTest 678 @failingTest
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
736 test_metadata_simpleFormalParameter() async { 731 test_metadata_simpleFormalParameter() async {
737 await super.test_metadata_simpleFormalParameter(); 732 await super.test_metadata_simpleFormalParameter();
738 } 733 }
739 734
740 @failingTest 735 @failingTest
741 test_metadata_simpleFormalParameter_withDefault() async { 736 test_metadata_simpleFormalParameter_withDefault() async {
742 await super.test_metadata_simpleFormalParameter_withDefault(); 737 await super.test_metadata_simpleFormalParameter_withDefault();
743 } 738 }
744 739
745 @failingTest 740 @failingTest
746 test_metadata_typeParameter_ofTypedef() async {
747 await super.test_metadata_typeParameter_ofTypedef();
748 }
749
750 @failingTest
751 test_parameter_checked() async { 741 test_parameter_checked() async {
752 await super.test_parameter_checked(); 742 await super.test_parameter_checked();
753 } 743 }
754 744
755 @failingTest 745 @failingTest
756 test_parameter_checked_inherited() async { 746 test_parameter_checked_inherited() async {
757 await super.test_parameter_checked_inherited(); 747 await super.test_parameter_checked_inherited();
758 } 748 }
759 749
760 @failingTest 750 @failingTest
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 test_typedef_generic() async { 911 test_typedef_generic() async {
922 await super.test_typedef_generic(); 912 await super.test_typedef_generic();
923 } 913 }
924 914
925 @failingTest 915 @failingTest
926 test_typedef_generic_asFieldType() async { 916 test_typedef_generic_asFieldType() async {
927 await super.test_typedef_generic_asFieldType(); 917 await super.test_typedef_generic_asFieldType();
928 } 918 }
929 919
930 @failingTest 920 @failingTest
931 test_typedef_parameter_parameters() async { 921 test_typedef_parameters_named() async {
932 await super.test_typedef_parameter_parameters(); 922 await super.test_typedef_parameters_named();
933 } 923 }
934 924
935 @failingTest 925 @failingTest
936 test_typedef_parameter_parameters_in_generic_class() async {
937 await super.test_typedef_parameter_parameters_in_generic_class();
938 }
939
940 @failingTest
941 test_typedef_parameter_return_type() async {
942 await super.test_typedef_parameter_return_type();
943 }
944
945 @failingTest
946 test_typedef_parameter_type() async {
947 await super.test_typedef_parameter_type();
948 }
949
950 @failingTest
951 test_typedef_parameter_type_generic() async {
952 await super.test_typedef_parameter_type_generic();
953 }
954
955 @failingTest
956 test_typedef_parameters() async {
957 await super.test_typedef_parameters();
958 }
959
960 @failingTest
961 test_typedef_return_type() async {
962 await super.test_typedef_return_type();
963 }
964
965 @failingTest
966 test_typedef_return_type_generic() async {
967 await super.test_typedef_return_type_generic();
968 }
969
970 @failingTest
971 test_typedef_return_type_implicit() async {
972 await super.test_typedef_return_type_implicit();
973 }
974
975 @failingTest
976 test_typedef_return_type_void() async {
977 await super.test_typedef_return_type_void();
978 }
979
980 @failingTest
981 test_typedef_type_parameters() async {
982 await super.test_typedef_type_parameters();
983 }
984
985 @failingTest
986 test_typedef_type_parameters_bound() async { 926 test_typedef_type_parameters_bound() async {
987 await super.test_typedef_type_parameters_bound(); 927 await super.test_typedef_type_parameters_bound();
988 } 928 }
989 929
990 @failingTest 930 @failingTest
991 test_typedef_type_parameters_bound_recursive() async { 931 test_typedef_type_parameters_bound_recursive() async {
992 await super.test_typedef_type_parameters_bound_recursive(); 932 await super.test_typedef_type_parameters_bound_recursive();
993 } 933 }
994 934
995 @failingTest 935 @failingTest
996 test_typedef_type_parameters_bound_recursive2() async { 936 test_typedef_type_parameters_bound_recursive2() async {
997 await super.test_typedef_type_parameters_bound_recursive2(); 937 await super.test_typedef_type_parameters_bound_recursive2();
998 } 938 }
999 939
1000 @failingTest 940 @failingTest
1001 test_typedef_type_parameters_f_bound_complex() async {
1002 await super.test_typedef_type_parameters_f_bound_complex();
1003 }
1004
1005 @failingTest
1006 test_typedef_type_parameters_f_bound_simple() async {
1007 await super.test_typedef_type_parameters_f_bound_simple();
1008 }
1009
1010 @failingTest
1011 @fastaProblem 941 @fastaProblem
1012 test_unresolved_annotation_instanceCreation_argument_super() async { 942 test_unresolved_annotation_instanceCreation_argument_super() async {
1013 // https://github.com/dart-lang/sdk/issues/30267 943 // https://github.com/dart-lang/sdk/issues/30267
1014 await super.test_unresolved_annotation_instanceCreation_argument_super(); 944 await super.test_unresolved_annotation_instanceCreation_argument_super();
1015 } 945 }
1016 946
1017 @failingTest 947 @failingTest
1018 @fastaProblem 948 @fastaProblem
1019 test_unresolved_annotation_instanceCreation_argument_this() async { 949 test_unresolved_annotation_instanceCreation_argument_this() async {
1020 // https://github.com/dart-lang/sdk/issues/30267 950 // https://github.com/dart-lang/sdk/issues/30267
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
1176 @override 1106 @override
1177 Future<List<int>> readAsBytes() async { 1107 Future<List<int>> readAsBytes() async {
1178 return file.readAsBytesSync(); 1108 return file.readAsBytesSync();
1179 } 1109 }
1180 1110
1181 @override 1111 @override
1182 Future<String> readAsString() async { 1112 Future<String> readAsString() async {
1183 return file.readAsStringSync(); 1113 return file.readAsStringSync();
1184 } 1114 }
1185 } 1115 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/summary/resynthesize_common.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698