| Index: pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart
|
| diff --git a/pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart b/pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart
|
| index d7b587c3db1f7dfd0ca6020044412d720cd65e1a..47edd02acb3e1316b57bf0ca7f3911a005a8eca8 100644
|
| --- a/pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart
|
| +++ b/pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart
|
| @@ -371,6 +371,11 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| + test_class_supertype_unresolved() async {
|
| + await super.test_class_supertype_unresolved();
|
| + }
|
| +
|
| + @failingTest
|
| test_class_type_parameters_bound() async {
|
| await super.test_class_type_parameters_bound();
|
| }
|
| @@ -2160,6 +2165,16 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| + test_syntheticFunctionType_noArguments() async {
|
| + await super.test_syntheticFunctionType_noArguments();
|
| + }
|
| +
|
| + @failingTest
|
| + test_syntheticFunctionType_withArguments() async {
|
| + await super.test_syntheticFunctionType_withArguments();
|
| + }
|
| +
|
| + @failingTest
|
| test_type_arguments_explicit_dynamic_dynamic() async {
|
| await super.test_type_arguments_explicit_dynamic_dynamic();
|
| }
|
| @@ -2175,11 +2190,6 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| - test_type_arguments_explicit_String_int() async {
|
| - await super.test_type_arguments_explicit_String_int();
|
| - }
|
| -
|
| - @failingTest
|
| test_type_arguments_implicit() async {
|
| await super.test_type_arguments_implicit();
|
| }
|
| @@ -2230,16 +2240,6 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| - test_type_reference_to_class() async {
|
| - await super.test_type_reference_to_class();
|
| - }
|
| -
|
| - @failingTest
|
| - test_type_reference_to_class_with_type_arguments() async {
|
| - await super.test_type_reference_to_class_with_type_arguments();
|
| - }
|
| -
|
| - @failingTest
|
| test_type_reference_to_class_with_type_arguments_implicit() async {
|
| await super.test_type_reference_to_class_with_type_arguments_implicit();
|
| }
|
| @@ -2520,16 +2520,6 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| - test_variable_final() async {
|
| - await super.test_variable_final();
|
| - }
|
| -
|
| - @failingTest
|
| - test_variable_final_top_level_untyped() async {
|
| - await super.test_variable_final_top_level_untyped();
|
| - }
|
| -
|
| - @failingTest
|
| test_variable_getterInLib_setterInPart() async {
|
| await super.test_variable_getterInLib_setterInPart();
|
| }
|
| @@ -2550,11 +2540,6 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| - test_variable_inferred_type_implicit_initialized() async {
|
| - await super.test_variable_inferred_type_implicit_initialized();
|
| - }
|
| -
|
| - @failingTest
|
| test_variable_propagatedType_const_noDep() async {
|
| await super.test_variable_propagatedType_const_noDep();
|
| }
|
| @@ -2570,11 +2555,6 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| }
|
|
|
| @failingTest
|
| - test_variable_propagatedType_final_noDep() async {
|
| - await super.test_variable_propagatedType_final_noDep();
|
| - }
|
| -
|
| - @failingTest
|
| test_variable_propagatedType_implicit_dep() async {
|
| await super.test_variable_propagatedType_implicit_dep();
|
| }
|
| @@ -2583,11 +2563,6 @@ class ResynthesizeKernelStrongTest extends ResynthesizeTest {
|
| test_variable_setterInPart_getterInPart() async {
|
| await super.test_variable_setterInPart_getterInPart();
|
| }
|
| -
|
| - @failingTest
|
| - test_variables() async {
|
| - await super.test_variables();
|
| - }
|
| }
|
|
|
| class _FileSystemAdaptor implements FileSystem {
|
| @@ -2657,7 +2632,7 @@ class _KernelLibraryResynthesizerContextImpl
|
| kernelType.className.canonicalName, kernelType.typeArguments);
|
| }
|
| // TODO(scheglov) Support other kernel types.
|
| - return null;
|
| + throw new UnimplementedError('For ${kernelType.runtimeType}');
|
| }
|
|
|
| InterfaceType _getInterfaceType(
|
|
|