| 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 import 'package:analyzer/dart/ast/ast.dart'; | 5 import 'package:analyzer/dart/ast/ast.dart'; |
| 6 import 'package:analyzer/dart/element/element.dart'; | 6 import 'package:analyzer/dart/element/element.dart'; |
| 7 import 'package:analyzer/error/error.dart'; | 7 import 'package:analyzer/error/error.dart'; |
| 8 import 'package:analyzer/src/generated/parser.dart' as analyzer; | 8 import 'package:analyzer/src/generated/parser.dart' as analyzer; |
| 9 import 'package:front_end/src/fasta/analyzer/ast_builder.dart'; | 9 import 'package:front_end/src/fasta/analyzer/ast_builder.dart'; |
| 10 import 'package:front_end/src/fasta/analyzer/element_store.dart'; | 10 import 'package:front_end/src/fasta/analyzer/element_store.dart'; |
| (...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1089 // TODO(paulberry): Unhandled event: TypeVariable | 1089 // TODO(paulberry): Unhandled event: TypeVariable |
| 1090 super.test_parseTypeAlias_function_typeParameters(); | 1090 super.test_parseTypeAlias_function_typeParameters(); |
| 1091 } | 1091 } |
| 1092 | 1092 |
| 1093 @override | 1093 @override |
| 1094 @failingTest | 1094 @failingTest |
| 1095 void test_parseTypeAlias_function_voidReturnType() { | 1095 void test_parseTypeAlias_function_voidReturnType() { |
| 1096 // TODO(paulberry): Unhandled event: VoidKeyword | 1096 // TODO(paulberry): Unhandled event: VoidKeyword |
| 1097 super.test_parseTypeAlias_function_voidReturnType(); | 1097 super.test_parseTypeAlias_function_voidReturnType(); |
| 1098 } | 1098 } |
| 1099 |
| 1100 @override |
| 1101 @failingTest |
| 1102 void test_parseTypeAlias_genericFunction_noParameters() { |
| 1103 super.test_parseTypeAlias_genericFunction_noParameters(); |
| 1104 } |
| 1105 |
| 1106 @override |
| 1107 @failingTest |
| 1108 void test_parseTypeAlias_genericFunction_noReturnType() { |
| 1109 super.test_parseTypeAlias_genericFunction_noReturnType(); |
| 1110 } |
| 1111 |
| 1112 @override |
| 1113 @failingTest |
| 1114 void test_parseTypeAlias_genericFunction_parameterizedReturnType() { |
| 1115 super.test_parseTypeAlias_genericFunction_parameterizedReturnType(); |
| 1116 } |
| 1117 |
| 1118 @override |
| 1119 @failingTest |
| 1120 void test_parseTypeAlias_genericFunction_parameters() { |
| 1121 super.test_parseTypeAlias_genericFunction_parameters(); |
| 1122 } |
| 1123 |
| 1124 @override |
| 1125 @failingTest |
| 1126 void test_parseTypeAlias_genericFunction_typeParameters() { |
| 1127 super.test_parseTypeAlias_genericFunction_typeParameters(); |
| 1128 } |
| 1129 |
| 1130 @override |
| 1131 @failingTest |
| 1132 void test_parseTypeAlias_genericFunction_typeParameters_noParameters() { |
| 1133 super.test_parseTypeAlias_genericFunction_typeParameters_noParameters(); |
| 1134 } |
| 1135 |
| 1136 @override |
| 1137 @failingTest |
| 1138 void test_parseTypeAlias_genericFunction_typeParameters_noReturnType() { |
| 1139 super.test_parseTypeAlias_genericFunction_typeParameters_noReturnType(); |
| 1140 } |
| 1141 |
| 1142 @override |
| 1143 @failingTest |
| 1144 void |
| 1145 test_parseTypeAlias_genericFunction_typeParameters_parameterizedReturnType
() { |
| 1146 super |
| 1147 .test_parseTypeAlias_genericFunction_typeParameters_parameterizedReturnT
ype(); |
| 1148 } |
| 1149 |
| 1150 @override |
| 1151 @failingTest |
| 1152 void test_parseTypeAlias_genericFunction_typeParameters_parameters() { |
| 1153 super.test_parseTypeAlias_genericFunction_typeParameters_parameters(); |
| 1154 } |
| 1155 |
| 1156 @override |
| 1157 @failingTest |
| 1158 void test_parseTypeAlias_genericFunction_typeParameters_typeParameters() { |
| 1159 super.test_parseTypeAlias_genericFunction_typeParameters_typeParameters(); |
| 1160 } |
| 1161 |
| 1162 @override |
| 1163 @failingTest |
| 1164 void test_parseTypeAlias_genericFunction_typeParameters_voidReturnType() { |
| 1165 super.test_parseTypeAlias_genericFunction_typeParameters_voidReturnType(); |
| 1166 } |
| 1167 |
| 1168 @override |
| 1169 @failingTest |
| 1170 void test_parseTypeAlias_genericFunction_voidReturnType() { |
| 1171 super.test_parseTypeAlias_genericFunction_voidReturnType(); |
| 1172 } |
| 1099 } | 1173 } |
| OLD | NEW |