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

Unified Diff: pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart

Issue 2980863003: The very first bits of resynthesizing elements from kernels. (Closed)
Patch Set: Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
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
new file mode 100644
index 0000000000000000000000000000000000000000..a939488e336d5d267c1bd3c7dfae6bfa3aa92455
--- /dev/null
+++ b/pkg/analyzer/test/src/summary/resynthesize_kernel_test.dart
@@ -0,0 +1,2711 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+library analyzer.test.src.summary.resynthesize_kernel_test;
+
+import 'dart:async';
+
+import 'package:analyzer/file_system/file_system.dart';
+import 'package:analyzer/file_system/memory_file_system.dart';
+import 'package:analyzer/src/dart/element/element.dart';
+import 'package:analyzer/src/generated/source.dart';
+import 'package:analyzer/src/summary/resynthesize.dart';
+import 'package:front_end/file_system.dart';
+import 'package:front_end/src/base/performace_logger.dart';
+import 'package:front_end/src/fasta/deprecated_problems.dart'
+ show temporaryUntilPrintsRemovedEnablePrinting;
+import 'package:front_end/src/fasta/uri_translator_impl.dart';
+import 'package:front_end/src/incremental/byte_store.dart';
+import 'package:front_end/src/incremental/kernel_driver.dart';
+import 'package:kernel/kernel.dart' as kernel;
+import 'package:kernel/target/targets.dart';
+import 'package:path/path.dart' as pathos;
+import 'package:test/test.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
+
+import '../context/mock_sdk.dart';
+import 'resynthesize_common.dart';
+
+main() {
+ temporaryUntilPrintsRemovedEnablePrinting = false;
+ defineReflectiveSuite(() {
+ defineReflectiveTests(ResynthesizeKernelStrongTest);
+ });
+}
+
+@reflectiveTest
+class ResynthesizeKernelStrongTest extends ResynthesizeTest {
+ final resourceProvider = new MemoryResourceProvider(context: pathos.posix);
+
+ @override
+ bool get isStrongMode => true;
+
+ @override
+ Source addLibrarySource(String path, String content) {
+ path = resourceProvider.convertPath(path);
+ File file = resourceProvider.newFile(path, content);
+ return file.createSource();
+ }
+
+ @override
+ Source addSource(String path, String content) {
+ path = resourceProvider.convertPath(path);
+ File file = resourceProvider.newFile(path, content);
+ return file.createSource();
+ }
+
+ @override
+ Future<LibraryElementImpl> checkLibrary(String text,
+ {bool allowErrors: false, bool dumpSummaries: false}) async {
+ new MockSdk(resourceProvider: resourceProvider);
+
+ File testFile = resourceProvider.newFile('/test.dart', text);
+ Uri testUri = testFile.toUri();
+ String testUriStr = testUri.toString();
+
+ Map<String, Uri> dartLibraries = {};
+ MockSdk.FULL_URI_MAP.forEach((dartUri, path) {
+ dartLibraries[Uri.parse(dartUri).path] = Uri.parse('file://$path');
+ });
+
+ var uriTranslator = new UriTranslatorImpl(dartLibraries, {}, {});
+ var driver = new KernelDriver(
+ new PerformanceLog(null),
+ new _FileSystemAdaptor(resourceProvider),
+ new MemoryByteStore(),
+ uriTranslator,
+ new NoneTarget(new TargetFlags(strongMode: isStrongMode)));
+
+ KernelResult kernelResult = await driver.getKernel(testUri);
+
+ var libraryMap = <String, kernel.Library>{};
+ for (var cycleResult in kernelResult.results) {
+ for (var library in cycleResult.kernelLibraries) {
+ String uriStr = library.importUri.toString();
+ libraryMap[uriStr] = library;
+ }
+ }
+
+ kernel.Library kernelLibrary = libraryMap[testUriStr];
+ expect(kernelLibrary, isNotNull);
+
+ return new LibraryElementImpl.forKernel(context,
+ new _KernelLibraryResynthesizerContextImpl(libraryMap, kernelLibrary));
+ }
+
+// @override
Paul Berry 2017/07/13 19:29:40 Is this commented out because there's still work t
scheglov 2017/07/14 05:19:07 I will remove this code for now.
+// void declareConstantVariable(String name, String value) {
+// // TODO(scheglov): implement declareConstantVariable
+// throw new UnimplementedError();
+// }
+
+ @override
+ SummaryResynthesizer encodeDecodeLibrarySource(Source librarySource) {
+ // TODO(scheglov): implement encodeDecodeLibrarySource
+ throw new UnimplementedError();
+ }
+
+ @failingTest
+ test_class_alias() async {
+ await super.test_class_alias();
+ }
+
+ @failingTest
+ test_class_alias_abstract() async {
+ await super.test_class_alias_abstract();
+ }
+
+ @failingTest
+ test_class_alias_documented() async {
+ await super.test_class_alias_documented();
+ }
+
+ @failingTest
+ test_class_alias_with_forwarding_constructors() async {
+ await super.test_class_alias_with_forwarding_constructors();
+ }
+
+ @failingTest
+ test_class_alias_with_forwarding_constructors_type_substitution() async {
+ await super
+ .test_class_alias_with_forwarding_constructors_type_substitution();
+ }
+
+ @failingTest
+ test_class_alias_with_forwarding_constructors_type_substitution_complex() async {
+ await super
+ .test_class_alias_with_forwarding_constructors_type_substitution_complex();
+ }
+
+ @failingTest
+ test_class_alias_with_mixin_members() async {
+ await super.test_class_alias_with_mixin_members();
+ }
+
+ @failingTest
+ test_class_constructor_const() async {
+ await super.test_class_constructor_const();
+ }
+
+ @failingTest
+ test_class_constructor_const_external() async {
+ await super.test_class_constructor_const_external();
+ }
+
+ @failingTest
+ test_class_constructor_explicit_named() async {
+ await super.test_class_constructor_explicit_named();
+ }
+
+ @failingTest
+ test_class_constructor_explicit_type_params() async {
+ await super.test_class_constructor_explicit_type_params();
+ }
+
+ @failingTest
+ test_class_constructor_external() async {
+ await super.test_class_constructor_external();
+ }
+
+ @failingTest
+ test_class_constructor_factory() async {
+ await super.test_class_constructor_factory();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_dynamic_dynamic() async {
+ await super.test_class_constructor_field_formal_dynamic_dynamic();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_dynamic_typed() async {
+ await super.test_class_constructor_field_formal_dynamic_typed();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_dynamic_untyped() async {
+ await super.test_class_constructor_field_formal_dynamic_untyped();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_multiple_matching_fields() async {
+ await super.test_class_constructor_field_formal_multiple_matching_fields();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_no_matching_field() async {
+ await super.test_class_constructor_field_formal_no_matching_field();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_typed_dynamic() async {
+ await super.test_class_constructor_field_formal_typed_dynamic();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_typed_typed() async {
+ await super.test_class_constructor_field_formal_typed_typed();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_typed_untyped() async {
+ await super.test_class_constructor_field_formal_typed_untyped();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_untyped_dynamic() async {
+ await super.test_class_constructor_field_formal_untyped_dynamic();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_untyped_typed() async {
+ await super.test_class_constructor_field_formal_untyped_typed();
+ }
+
+ @failingTest
+ test_class_constructor_field_formal_untyped_untyped() async {
+ await super.test_class_constructor_field_formal_untyped_untyped();
+ }
+
+ @failingTest
+ test_class_constructor_fieldFormal_named_noDefault() async {
+ await super.test_class_constructor_fieldFormal_named_noDefault();
+ }
+
+ @failingTest
+ test_class_constructor_fieldFormal_named_withDefault() async {
+ await super.test_class_constructor_fieldFormal_named_withDefault();
+ }
+
+ @failingTest
+ test_class_constructor_fieldFormal_optional_noDefault() async {
+ await super.test_class_constructor_fieldFormal_optional_noDefault();
+ }
+
+ @failingTest
+ test_class_constructor_fieldFormal_optional_withDefault() async {
+ await super.test_class_constructor_fieldFormal_optional_withDefault();
+ }
+
+ @failingTest
+ test_class_constructor_implicit_type_params() async {
+ await super.test_class_constructor_implicit_type_params();
+ }
+
+ @failingTest
+ test_class_constructor_params() async {
+ await super.test_class_constructor_params();
+ }
+
+ @failingTest
+ test_class_constructors() async {
+ await super.test_class_constructors();
+ }
+
+ @failingTest
+ test_class_documented() async {
+ await super.test_class_documented();
+ }
+
+ @failingTest
+ test_class_documented_tripleSlash() async {
+ await super.test_class_documented_tripleSlash();
+ }
+
+ @failingTest
+ test_class_documented_with_references() async {
+ await super.test_class_documented_with_references();
+ }
+
+ @failingTest
+ test_class_documented_with_windows_line_endings() async {
+ await super.test_class_documented_with_windows_line_endings();
+ }
+
+ @failingTest
+ test_class_field_const() async {
+ await super.test_class_field_const();
+ }
+
+ @failingTest
+ test_class_field_implicit_type() async {
+ await super.test_class_field_implicit_type();
+ }
+
+ @failingTest
+ test_class_field_static() async {
+ await super.test_class_field_static();
+ }
+
+ @failingTest
+ test_class_fields() async {
+ await super.test_class_fields();
+ }
+
+ @failingTest
+ test_class_getter_abstract() async {
+ await super.test_class_getter_abstract();
+ }
+
+ @failingTest
+ test_class_getter_external() async {
+ await super.test_class_getter_external();
+ }
+
+ @failingTest
+ test_class_getter_implicit_return_type() async {
+ await super.test_class_getter_implicit_return_type();
+ }
+
+ @failingTest
+ test_class_getter_static() async {
+ await super.test_class_getter_static();
+ }
+
+ @failingTest
+ test_class_getters() async {
+ await super.test_class_getters();
+ }
+
+ @failingTest
+ test_class_implicitField_getterFirst() async {
+ await super.test_class_implicitField_getterFirst();
+ }
+
+ @failingTest
+ test_class_implicitField_setterFirst() async {
+ await super.test_class_implicitField_setterFirst();
+ }
+
+ @failingTest
+ test_class_interfaces() async {
+ await super.test_class_interfaces();
+ }
+
+ @failingTest
+ test_class_interfaces_unresolved() async {
+ await super.test_class_interfaces_unresolved();
+ }
+
+ @failingTest
+ test_class_method_abstract() async {
+ await super.test_class_method_abstract();
+ }
+
+ @failingTest
+ test_class_method_external() async {
+ await super.test_class_method_external();
+ }
+
+ @failingTest
+ test_class_method_params() async {
+ await super.test_class_method_params();
+ }
+
+ @failingTest
+ test_class_method_static() async {
+ await super.test_class_method_static();
+ }
+
+ @failingTest
+ test_class_methods() async {
+ await super.test_class_methods();
+ }
+
+ @failingTest
+ test_class_mixins() async {
+ await super.test_class_mixins();
+ }
+
+ @failingTest
+ test_class_mixins_unresolved() async {
+ await super.test_class_mixins_unresolved();
+ }
+
+ @failingTest
+ test_class_setter_abstract() async {
+ await super.test_class_setter_abstract();
+ }
+
+ @failingTest
+ test_class_setter_external() async {
+ await super.test_class_setter_external();
+ }
+
+ @failingTest
+ test_class_setter_implicit_param_type() async {
+ await super.test_class_setter_implicit_param_type();
+ }
+
+ @failingTest
+ test_class_setter_implicit_return_type() async {
+ await super.test_class_setter_implicit_return_type();
+ }
+
+ @failingTest
+ test_class_setter_invalid_no_parameter() async {
+ await super.test_class_setter_invalid_no_parameter();
+ }
+
+ @failingTest
+ test_class_setter_static() async {
+ await super.test_class_setter_static();
+ }
+
+ @failingTest
+ test_class_setters() async {
+ await super.test_class_setters();
+ }
+
+ @failingTest
+ test_class_supertype() async {
+ await super.test_class_supertype();
+ }
+
+ @failingTest
+ test_class_type_parameters() async {
+ await super.test_class_type_parameters();
+ }
+
+ @failingTest
+ test_class_type_parameters_bound() async {
+ await super.test_class_type_parameters_bound();
+ }
+
+ @failingTest
+ test_class_type_parameters_f_bound_complex() async {
+ await super.test_class_type_parameters_f_bound_complex();
+ }
+
+ @failingTest
+ test_class_type_parameters_f_bound_simple() async {
+ await super.test_class_type_parameters_f_bound_simple();
+ }
+
+ @failingTest
+ test_closure_executable_with_return_type_from_closure() async {
+ await super.test_closure_executable_with_return_type_from_closure();
+ }
+
+ @failingTest
+ test_closure_generic() async {
+ await super.test_closure_generic();
+ }
+
+ @failingTest
+ test_closure_in_variable_declaration_in_part() async {
+ await super.test_closure_in_variable_declaration_in_part();
+ }
+
+ @failingTest
+ test_const_invalid_field_const() async {
+ await super.test_const_invalid_field_const();
+ }
+
+ @failingTest
+ test_const_invalid_field_final() async {
+ await super.test_const_invalid_field_final();
+ }
+
+ @failingTest
+ test_const_invalid_intLiteral() async {
+ await super.test_const_invalid_intLiteral();
+ }
+
+ @failingTest
+ test_const_invalid_topLevel() async {
+ await super.test_const_invalid_topLevel();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_named() async {
+ await super.test_const_invokeConstructor_generic_named();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_named_imported() async {
+ await super.test_const_invokeConstructor_generic_named_imported();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_named_imported_withPrefix() async {
+ await super
+ .test_const_invokeConstructor_generic_named_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_noTypeArguments() async {
+ await super.test_const_invokeConstructor_generic_noTypeArguments();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_unnamed() async {
+ await super.test_const_invokeConstructor_generic_unnamed();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_unnamed_imported() async {
+ await super.test_const_invokeConstructor_generic_unnamed_imported();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_generic_unnamed_imported_withPrefix() async {
+ await super
+ .test_const_invokeConstructor_generic_unnamed_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named() async {
+ await super.test_const_invokeConstructor_named();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_imported() async {
+ await super.test_const_invokeConstructor_named_imported();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_imported_withPrefix() async {
+ await super.test_const_invokeConstructor_named_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_unresolved() async {
+ await super.test_const_invokeConstructor_named_unresolved();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_unresolved2() async {
+ await super.test_const_invokeConstructor_named_unresolved2();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_unresolved3() async {
+ await super.test_const_invokeConstructor_named_unresolved3();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_unresolved4() async {
+ await super.test_const_invokeConstructor_named_unresolved4();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_unresolved5() async {
+ await super.test_const_invokeConstructor_named_unresolved5();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_named_unresolved6() async {
+ await super.test_const_invokeConstructor_named_unresolved6();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_unnamed() async {
+ await super.test_const_invokeConstructor_unnamed();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_unnamed_imported() async {
+ await super.test_const_invokeConstructor_unnamed_imported();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_unnamed_imported_withPrefix() async {
+ await super.test_const_invokeConstructor_unnamed_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_unnamed_unresolved() async {
+ await super.test_const_invokeConstructor_unnamed_unresolved();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_unnamed_unresolved2() async {
+ await super.test_const_invokeConstructor_unnamed_unresolved2();
+ }
+
+ @failingTest
+ test_const_invokeConstructor_unnamed_unresolved3() async {
+ await super.test_const_invokeConstructor_unnamed_unresolved3();
+ }
+
+ @failingTest
+ test_const_length_ofClassConstField() async {
+ await super.test_const_length_ofClassConstField();
+ }
+
+ @failingTest
+ test_const_length_ofClassConstField_imported() async {
+ await super.test_const_length_ofClassConstField_imported();
+ }
+
+ @failingTest
+ test_const_length_ofClassConstField_imported_withPrefix() async {
+ await super.test_const_length_ofClassConstField_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_length_ofStringLiteral() async {
+ await super.test_const_length_ofStringLiteral();
+ }
+
+ @failingTest
+ test_const_length_ofTopLevelVariable() async {
+ await super.test_const_length_ofTopLevelVariable();
+ }
+
+ @failingTest
+ test_const_length_ofTopLevelVariable_imported() async {
+ await super.test_const_length_ofTopLevelVariable_imported();
+ }
+
+ @failingTest
+ test_const_length_ofTopLevelVariable_imported_withPrefix() async {
+ await super.test_const_length_ofTopLevelVariable_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_length_staticMethod() async {
+ await super.test_const_length_staticMethod();
+ }
+
+ @failingTest
+ test_const_parameterDefaultValue_initializingFormal_functionTyped() async {
+ await super
+ .test_const_parameterDefaultValue_initializingFormal_functionTyped();
+ }
+
+ @failingTest
+ test_const_parameterDefaultValue_initializingFormal_named() async {
+ await super.test_const_parameterDefaultValue_initializingFormal_named();
+ }
+
+ @failingTest
+ test_const_parameterDefaultValue_initializingFormal_positional() async {
+ await super
+ .test_const_parameterDefaultValue_initializingFormal_positional();
+ }
+
+ @failingTest
+ test_const_parameterDefaultValue_normal() async {
+ await super.test_const_parameterDefaultValue_normal();
+ }
+
+ @failingTest
+ test_const_reference_staticField() async {
+ await super.test_const_reference_staticField();
+ }
+
+ @failingTest
+ test_const_reference_staticField_imported() async {
+ await super.test_const_reference_staticField_imported();
+ }
+
+ @failingTest
+ test_const_reference_staticField_imported_withPrefix() async {
+ await super.test_const_reference_staticField_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_reference_staticMethod() async {
+ await super.test_const_reference_staticMethod();
+ }
+
+ @failingTest
+ test_const_reference_staticMethod_imported() async {
+ await super.test_const_reference_staticMethod_imported();
+ }
+
+ @failingTest
+ test_const_reference_staticMethod_imported_withPrefix() async {
+ await super.test_const_reference_staticMethod_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_reference_topLevelFunction() async {
+ await super.test_const_reference_topLevelFunction();
+ }
+
+ @failingTest
+ test_const_reference_topLevelFunction_imported() async {
+ await super.test_const_reference_topLevelFunction_imported();
+ }
+
+ @failingTest
+ test_const_reference_topLevelFunction_imported_withPrefix() async {
+ await super.test_const_reference_topLevelFunction_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_reference_topLevelVariable() async {
+ await super.test_const_reference_topLevelVariable();
+ }
+
+ @failingTest
+ test_const_reference_topLevelVariable_imported() async {
+ await super.test_const_reference_topLevelVariable_imported();
+ }
+
+ @failingTest
+ test_const_reference_topLevelVariable_imported_withPrefix() async {
+ await super.test_const_reference_topLevelVariable_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_reference_type() async {
+ await super.test_const_reference_type();
+ }
+
+ @failingTest
+ test_const_reference_type_functionType() async {
+ await super.test_const_reference_type_functionType();
+ }
+
+ @failingTest
+ test_const_reference_type_imported() async {
+ await super.test_const_reference_type_imported();
+ }
+
+ @failingTest
+ test_const_reference_type_imported_withPrefix() async {
+ await super.test_const_reference_type_imported_withPrefix();
+ }
+
+ @failingTest
+ test_const_reference_type_typeParameter() async {
+ await super.test_const_reference_type_typeParameter();
+ }
+
+ @failingTest
+ test_const_reference_unresolved_prefix0() async {
+ await super.test_const_reference_unresolved_prefix0();
+ }
+
+ @failingTest
+ test_const_reference_unresolved_prefix1() async {
+ await super.test_const_reference_unresolved_prefix1();
+ }
+
+ @failingTest
+ test_const_reference_unresolved_prefix2() async {
+ await super.test_const_reference_unresolved_prefix2();
+ }
+
+ @failingTest
+ test_const_topLevel_binary() async {
+ await super.test_const_topLevel_binary();
+ }
+
+ @failingTest
+ test_const_topLevel_conditional() async {
+ await super.test_const_topLevel_conditional();
+ }
+
+ @failingTest
+ test_const_topLevel_identical() async {
+ await super.test_const_topLevel_identical();
+ }
+
+ @failingTest
+ test_const_topLevel_ifNull() async {
+ await super.test_const_topLevel_ifNull();
+ }
+
+ @failingTest
+ test_const_topLevel_literal() async {
+ await super.test_const_topLevel_literal();
+ }
+
+ @failingTest
+ test_const_topLevel_prefix() async {
+ await super.test_const_topLevel_prefix();
+ }
+
+ @failingTest
+ test_const_topLevel_super() async {
+ await super.test_const_topLevel_super();
+ }
+
+ @failingTest
+ test_const_topLevel_this() async {
+ await super.test_const_topLevel_this();
+ }
+
+ @failingTest
+ test_const_topLevel_typedList() async {
+ await super.test_const_topLevel_typedList();
+ }
+
+ @failingTest
+ test_const_topLevel_typedList_imported() async {
+ await super.test_const_topLevel_typedList_imported();
+ }
+
+ @failingTest
+ test_const_topLevel_typedList_importedWithPrefix() async {
+ await super.test_const_topLevel_typedList_importedWithPrefix();
+ }
+
+ @failingTest
+ test_const_topLevel_typedMap() async {
+ await super.test_const_topLevel_typedMap();
+ }
+
+ @failingTest
+ test_const_topLevel_untypedList() async {
+ await super.test_const_topLevel_untypedList();
+ }
+
+ @failingTest
+ test_const_topLevel_untypedMap() async {
+ await super.test_const_topLevel_untypedMap();
+ }
+
+ @failingTest
+ test_constExpr_pushReference_enum_field() async {
+ await super.test_constExpr_pushReference_enum_field();
+ }
+
+ @failingTest
+ test_constExpr_pushReference_enum_method() async {
+ await super.test_constExpr_pushReference_enum_method();
+ }
+
+ @failingTest
+ test_constExpr_pushReference_field_simpleIdentifier() async {
+ await super.test_constExpr_pushReference_field_simpleIdentifier();
+ }
+
+ @failingTest
+ test_constExpr_pushReference_staticMethod_simpleIdentifier() async {
+ await super.test_constExpr_pushReference_staticMethod_simpleIdentifier();
+ }
+
+ @failingTest
+ test_constructor_documented() async {
+ await super.test_constructor_documented();
+ }
+
+ @failingTest
+ test_constructor_initializers_assertInvocation() async {
+ await super.test_constructor_initializers_assertInvocation();
+ }
+
+ @failingTest
+ test_constructor_initializers_assertInvocation_message() async {
+ await super.test_constructor_initializers_assertInvocation_message();
+ }
+
+ @failingTest
+ test_constructor_initializers_field() async {
+ await super.test_constructor_initializers_field();
+ }
+
+ @failingTest
+ test_constructor_initializers_field_notConst() async {
+ await super.test_constructor_initializers_field_notConst();
+ }
+
+ @failingTest
+ test_constructor_initializers_field_withParameter() async {
+ await super.test_constructor_initializers_field_withParameter();
+ }
+
+ @failingTest
+ test_constructor_initializers_superInvocation_named() async {
+ await super.test_constructor_initializers_superInvocation_named();
+ }
+
+ @failingTest
+ test_constructor_initializers_superInvocation_namedExpression() async {
+ await super.test_constructor_initializers_superInvocation_namedExpression();
+ }
+
+ @failingTest
+ test_constructor_initializers_superInvocation_unnamed() async {
+ await super.test_constructor_initializers_superInvocation_unnamed();
+ }
+
+ @failingTest
+ test_constructor_initializers_thisInvocation_named() async {
+ await super.test_constructor_initializers_thisInvocation_named();
+ }
+
+ @failingTest
+ test_constructor_initializers_thisInvocation_namedExpression() async {
+ await super.test_constructor_initializers_thisInvocation_namedExpression();
+ }
+
+ @failingTest
+ test_constructor_initializers_thisInvocation_unnamed() async {
+ await super.test_constructor_initializers_thisInvocation_unnamed();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named() async {
+ await super.test_constructor_redirected_factory_named();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_generic() async {
+ await super.test_constructor_redirected_factory_named_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_imported() async {
+ await super.test_constructor_redirected_factory_named_imported();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_imported_generic() async {
+ await super.test_constructor_redirected_factory_named_imported_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_prefixed() async {
+ await super.test_constructor_redirected_factory_named_prefixed();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_prefixed_generic() async {
+ await super.test_constructor_redirected_factory_named_prefixed_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_unresolved_class() async {
+ await super.test_constructor_redirected_factory_named_unresolved_class();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_named_unresolved_constructor() async {
+ await super
+ .test_constructor_redirected_factory_named_unresolved_constructor();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed() async {
+ await super.test_constructor_redirected_factory_unnamed();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed_generic() async {
+ await super.test_constructor_redirected_factory_unnamed_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed_imported() async {
+ await super.test_constructor_redirected_factory_unnamed_imported();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed_imported_generic() async {
+ await super.test_constructor_redirected_factory_unnamed_imported_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed_prefixed() async {
+ await super.test_constructor_redirected_factory_unnamed_prefixed();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed_prefixed_generic() async {
+ await super.test_constructor_redirected_factory_unnamed_prefixed_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_factory_unnamed_unresolved() async {
+ await super.test_constructor_redirected_factory_unnamed_unresolved();
+ }
+
+ @failingTest
+ test_constructor_redirected_thisInvocation_named() async {
+ await super.test_constructor_redirected_thisInvocation_named();
+ }
+
+ @failingTest
+ test_constructor_redirected_thisInvocation_named_generic() async {
+ await super.test_constructor_redirected_thisInvocation_named_generic();
+ }
+
+ @failingTest
+ test_constructor_redirected_thisInvocation_unnamed() async {
+ await super.test_constructor_redirected_thisInvocation_unnamed();
+ }
+
+ @failingTest
+ test_constructor_redirected_thisInvocation_unnamed_generic() async {
+ await super.test_constructor_redirected_thisInvocation_unnamed_generic();
+ }
+
+ @failingTest
+ test_constructor_withCycles_const() async {
+ await super.test_constructor_withCycles_const();
+ }
+
+ @failingTest
+ test_constructor_withCycles_nonConst() async {
+ await super.test_constructor_withCycles_nonConst();
+ }
+
+ @failingTest
+ test_defaultValue_refersToGenericClass_constructor() async {
+ await super.test_defaultValue_refersToGenericClass_constructor();
+ }
+
+ @failingTest
+ test_defaultValue_refersToGenericClass_constructor2() async {
+ await super.test_defaultValue_refersToGenericClass_constructor2();
+ }
+
+ @failingTest
+ test_defaultValue_refersToGenericClass_functionG() async {
+ await super.test_defaultValue_refersToGenericClass_functionG();
+ }
+
+ @failingTest
+ test_defaultValue_refersToGenericClass_methodG() async {
+ await super.test_defaultValue_refersToGenericClass_methodG();
+ }
+
+ @failingTest
+ test_defaultValue_refersToGenericClass_methodG_classG() async {
+ await super.test_defaultValue_refersToGenericClass_methodG_classG();
+ }
+
+ @failingTest
+ test_defaultValue_refersToGenericClass_methodNG() async {
+ await super.test_defaultValue_refersToGenericClass_methodNG();
+ }
+
+ @failingTest
+ test_enum_documented() async {
+ await super.test_enum_documented();
+ }
+
+ @failingTest
+ test_enum_value_documented() async {
+ await super.test_enum_value_documented();
+ }
+
+ @failingTest
+ test_enum_values() async {
+ await super.test_enum_values();
+ }
+
+ @failingTest
+ test_enums() async {
+ await super.test_enums();
+ }
+
+ @failingTest
+ test_error_extendsEnum() async {
+ await super.test_error_extendsEnum();
+ }
+
+ @failingTest
+ test_executable_parameter_type_typedef() async {
+ await super.test_executable_parameter_type_typedef();
+ }
+
+ @failingTest
+ test_export_class() async {
+ await super.test_export_class();
+ }
+
+ @failingTest
+ test_export_class_type_alias() async {
+ await super.test_export_class_type_alias();
+ }
+
+ @failingTest
+ test_export_configurations_useDefault() async {
+ await super.test_export_configurations_useDefault();
+ }
+
+ @failingTest
+ test_export_configurations_useFirst() async {
+ await super.test_export_configurations_useFirst();
+ }
+
+ @failingTest
+ test_export_configurations_useSecond() async {
+ await super.test_export_configurations_useSecond();
+ }
+
+ @failingTest
+ test_export_function() async {
+ await super.test_export_function();
+ }
+
+ @failingTest
+ test_export_getter() async {
+ await super.test_export_getter();
+ }
+
+ @failingTest
+ test_export_hide() async {
+ await super.test_export_hide();
+ }
+
+ @failingTest
+ test_export_multiple_combinators() async {
+ await super.test_export_multiple_combinators();
+ }
+
+ @failingTest
+ test_export_setter() async {
+ await super.test_export_setter();
+ }
+
+ @failingTest
+ test_export_show() async {
+ await super.test_export_show();
+ }
+
+ @failingTest
+ test_export_typedef() async {
+ await super.test_export_typedef();
+ }
+
+ @failingTest
+ test_export_variable() async {
+ await super.test_export_variable();
+ }
+
+ @failingTest
+ test_export_variable_const() async {
+ await super.test_export_variable_const();
+ }
+
+ @failingTest
+ test_export_variable_final() async {
+ await super.test_export_variable_final();
+ }
+
+ @failingTest
+ test_exportImport_configurations_useDefault() async {
+ await super.test_exportImport_configurations_useDefault();
+ }
+
+ @failingTest
+ test_exportImport_configurations_useFirst() async {
+ await super.test_exportImport_configurations_useFirst();
+ }
+
+ @failingTest
+ test_exports() async {
+ await super.test_exports();
+ }
+
+ @failingTest
+ test_expr_invalid_typeParameter_asPrefix() async {
+ await super.test_expr_invalid_typeParameter_asPrefix();
+ }
+
+ @failingTest
+ test_field_covariant() async {
+ await super.test_field_covariant();
+ }
+
+ @failingTest
+ test_field_documented() async {
+ await super.test_field_documented();
+ }
+
+ @failingTest
+ test_field_formal_param_inferred_type_implicit() async {
+ await super.test_field_formal_param_inferred_type_implicit();
+ }
+
+ @failingTest
+ test_field_inferred_type_nonStatic_explicit_initialized() async {
+ await super.test_field_inferred_type_nonStatic_explicit_initialized();
+ }
+
+ @failingTest
+ test_field_inferred_type_nonStatic_implicit_initialized() async {
+ await super.test_field_inferred_type_nonStatic_implicit_initialized();
+ }
+
+ @failingTest
+ test_field_inferred_type_nonStatic_implicit_uninitialized() async {
+ await super.test_field_inferred_type_nonStatic_implicit_uninitialized();
+ }
+
+ @failingTest
+ test_field_inferred_type_static_implicit_initialized() async {
+ await super.test_field_inferred_type_static_implicit_initialized();
+ }
+
+ @failingTest
+ test_field_propagatedType_const_noDep() async {
+ await super.test_field_propagatedType_const_noDep();
+ }
+
+ @failingTest
+ test_field_propagatedType_final_dep_inLib() async {
+ await super.test_field_propagatedType_final_dep_inLib();
+ }
+
+ @failingTest
+ test_field_propagatedType_final_dep_inPart() async {
+ await super.test_field_propagatedType_final_dep_inPart();
+ }
+
+ @failingTest
+ test_field_propagatedType_final_noDep_instance() async {
+ await super.test_field_propagatedType_final_noDep_instance();
+ }
+
+ @failingTest
+ test_field_propagatedType_final_noDep_static() async {
+ await super.test_field_propagatedType_final_noDep_static();
+ }
+
+ @failingTest
+ test_field_static_final_untyped() async {
+ await super.test_field_static_final_untyped();
+ }
+
+ @failingTest
+ test_field_untyped() async {
+ await super.test_field_untyped();
+ }
+
+ @failingTest
+ test_function_async() async {
+ await super.test_function_async();
+ }
+
+ @failingTest
+ test_function_asyncStar() async {
+ await super.test_function_asyncStar();
+ }
+
+ @failingTest
+ test_function_documented() async {
+ await super.test_function_documented();
+ }
+
+ @failingTest
+ test_function_entry_point() async {
+ await super.test_function_entry_point();
+ }
+
+ @failingTest
+ test_function_entry_point_in_export() async {
+ await super.test_function_entry_point_in_export();
+ }
+
+ @failingTest
+ test_function_entry_point_in_export_hidden() async {
+ await super.test_function_entry_point_in_export_hidden();
+ }
+
+ @failingTest
+ test_function_entry_point_in_part() async {
+ await super.test_function_entry_point_in_part();
+ }
+
+ @failingTest
+ test_function_external() async {
+ await super.test_function_external();
+ }
+
+ @failingTest
+ test_function_parameter_final() async {
+ await super.test_function_parameter_final();
+ }
+
+ @failingTest
+ test_function_parameter_kind_named() async {
+ await super.test_function_parameter_kind_named();
+ }
+
+ @failingTest
+ test_function_parameter_kind_positional() async {
+ await super.test_function_parameter_kind_positional();
+ }
+
+ @failingTest
+ test_function_parameter_kind_required() async {
+ await super.test_function_parameter_kind_required();
+ }
+
+ @failingTest
+ test_function_parameter_parameters() async {
+ await super.test_function_parameter_parameters();
+ }
+
+ @failingTest
+ test_function_parameter_return_type() async {
+ await super.test_function_parameter_return_type();
+ }
+
+ @failingTest
+ test_function_parameter_return_type_void() async {
+ await super.test_function_parameter_return_type_void();
+ }
+
+ @failingTest
+ test_function_parameter_type() async {
+ await super.test_function_parameter_type();
+ }
+
+ @failingTest
+ test_function_parameters() async {
+ await super.test_function_parameters();
+ }
+
+ @failingTest
+ test_function_return_type() async {
+ await super.test_function_return_type();
+ }
+
+ @failingTest
+ test_function_return_type_implicit() async {
+ await super.test_function_return_type_implicit();
+ }
+
+ @failingTest
+ test_function_return_type_void() async {
+ await super.test_function_return_type_void();
+ }
+
+ @failingTest
+ test_function_type_parameter() async {
+ await super.test_function_type_parameter();
+ }
+
+ @failingTest
+ test_function_type_parameter_with_function_typed_parameter() async {
+ await super.test_function_type_parameter_with_function_typed_parameter();
+ }
+
+ @failingTest
+ test_function_typed_parameter_implicit() async {
+ await super.test_function_typed_parameter_implicit();
+ }
+
+ @failingTest
+ test_functions() async {
+ await super.test_functions();
+ }
+
+ @failingTest
+ test_futureOr() async {
+ await super.test_futureOr();
+ }
+
+ @failingTest
+ test_futureOr_const() async {
+ await super.test_futureOr_const();
+ }
+
+ @failingTest
+ test_futureOr_inferred() async {
+ await super.test_futureOr_inferred();
+ }
+
+ @failingTest
+ test_generic_gClass_gMethodStatic() async {
+ await super.test_generic_gClass_gMethodStatic();
+ }
+
+ @failingTest
+ test_genericFunction_asFunctionReturnType() async {
+ await super.test_genericFunction_asFunctionReturnType();
+ }
+
+ @failingTest
+ test_genericFunction_asFunctionTypedParameterReturnType() async {
+ await super.test_genericFunction_asFunctionTypedParameterReturnType();
+ }
+
+ @failingTest
+ test_genericFunction_asGenericFunctionReturnType() async {
+ await super.test_genericFunction_asGenericFunctionReturnType();
+ }
+
+ @failingTest
+ test_genericFunction_asMethodReturnType() async {
+ await super.test_genericFunction_asMethodReturnType();
+ }
+
+ @failingTest
+ test_genericFunction_asParameterType() async {
+ await super.test_genericFunction_asParameterType();
+ }
+
+ @failingTest
+ test_genericFunction_asTopLevelVariableType() async {
+ await super.test_genericFunction_asTopLevelVariableType();
+ }
+
+ @failingTest
+ test_getElement_constructor_named() async {
+ await super.test_getElement_constructor_named();
+ }
+
+ @failingTest
+ test_getElement_constructor_unnamed() async {
+ await super.test_getElement_constructor_unnamed();
+ }
+
+ @failingTest
+ test_getElement_field() async {
+ await super.test_getElement_field();
+ }
+
+ @failingTest
+ test_getElement_getter() async {
+ await super.test_getElement_getter();
+ }
+
+ @failingTest
+ test_getElement_method() async {
+ await super.test_getElement_method();
+ }
+
+ @failingTest
+ test_getElement_operator() async {
+ await super.test_getElement_operator();
+ }
+
+ @failingTest
+ test_getElement_setter() async {
+ await super.test_getElement_setter();
+ }
+
+ @failingTest
+ test_getElement_unit() async {
+ await super.test_getElement_unit();
+ }
+
+ @failingTest
+ test_getter_documented() async {
+ await super.test_getter_documented();
+ }
+
+ @failingTest
+ test_getter_external() async {
+ await super.test_getter_external();
+ }
+
+ @failingTest
+ test_getter_inferred_type_nonStatic_implicit_return() async {
+ await super.test_getter_inferred_type_nonStatic_implicit_return();
+ }
+
+ @failingTest
+ test_getters() async {
+ await super.test_getters();
+ }
+
+ @failingTest
+ test_implicitTopLevelVariable_getterFirst() async {
+ await super.test_implicitTopLevelVariable_getterFirst();
+ }
+
+ @failingTest
+ test_implicitTopLevelVariable_setterFirst() async {
+ await super.test_implicitTopLevelVariable_setterFirst();
+ }
+
+ @failingTest
+ test_import_configurations_useDefault() async {
+ await super.test_import_configurations_useDefault();
+ }
+
+ @failingTest
+ test_import_configurations_useFirst() async {
+ await super.test_import_configurations_useFirst();
+ }
+
+ @failingTest
+ test_import_deferred() async {
+ await super.test_import_deferred();
+ }
+
+ @failingTest
+ test_import_hide() async {
+ await super.test_import_hide();
+ }
+
+ @failingTest
+ test_import_invalidUri_metadata() async {
+ await super.test_import_invalidUri_metadata();
+ }
+
+ @failingTest
+ test_import_multiple_combinators() async {
+ await super.test_import_multiple_combinators();
+ }
+
+ @failingTest
+ test_import_prefixed() async {
+ await super.test_import_prefixed();
+ }
+
+ @failingTest
+ test_import_self() async {
+ await super.test_import_self();
+ }
+
+ @failingTest
+ test_import_short_absolute() async {
+ await super.test_import_short_absolute();
+ }
+
+ @failingTest
+ test_import_show() async {
+ await super.test_import_show();
+ }
+
+ @failingTest
+ test_imports() async {
+ await super.test_imports();
+ }
+
+ @failingTest
+ test_inferred_function_type_for_variable_in_generic_function() async {
+ await super.test_inferred_function_type_for_variable_in_generic_function();
+ }
+
+ @failingTest
+ test_inferred_function_type_in_generic_class_constructor() async {
+ await super.test_inferred_function_type_in_generic_class_constructor();
+ }
+
+ @failingTest
+ test_inferred_function_type_in_generic_class_getter() async {
+ await super.test_inferred_function_type_in_generic_class_getter();
+ }
+
+ @failingTest
+ test_inferred_function_type_in_generic_class_in_generic_method() async {
+ await super
+ .test_inferred_function_type_in_generic_class_in_generic_method();
+ }
+
+ @failingTest
+ test_inferred_function_type_in_generic_class_setter() async {
+ await super.test_inferred_function_type_in_generic_class_setter();
+ }
+
+ @failingTest
+ test_inferred_type_is_typedef() async {
+ await super.test_inferred_type_is_typedef();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_bound_type_param() async {
+ await super.test_inferred_type_refers_to_bound_type_param();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_function_typed_param_of_typedef() async {
+ await super.test_inferred_type_refers_to_function_typed_param_of_typedef();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_function_typed_parameter_type_generic_class() async {
+ await super
+ .test_inferred_type_refers_to_function_typed_parameter_type_generic_class();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_function_typed_parameter_type_other_lib() async {
+ await super
+ .test_inferred_type_refers_to_function_typed_parameter_type_other_lib();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_method_function_typed_parameter_type() async {
+ await super
+ .test_inferred_type_refers_to_method_function_typed_parameter_type();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_nested_function_typed_param() async {
+ await super.test_inferred_type_refers_to_nested_function_typed_param();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_nested_function_typed_param_named() async {
+ await super
+ .test_inferred_type_refers_to_nested_function_typed_param_named();
+ }
+
+ @failingTest
+ test_inferred_type_refers_to_setter_function_typed_parameter_type() async {
+ await super
+ .test_inferred_type_refers_to_setter_function_typed_parameter_type();
+ }
+
+ @failingTest
+ test_inferredType_definedInSdkLibraryPart() async {
+ await super.test_inferredType_definedInSdkLibraryPart();
+ }
+
+ @failingTest
+ test_inferredType_usesSyntheticFunctionType_functionTypedParam() async {
+ await super
+ .test_inferredType_usesSyntheticFunctionType_functionTypedParam();
+ }
+
+ @failingTest
+ test_inheritance_errors() async {
+ await super.test_inheritance_errors();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure() async {
+ await super.test_initializer_executable_with_return_type_from_closure();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure_await_dynamic() async {
+ await super
+ .test_initializer_executable_with_return_type_from_closure_await_dynamic();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure_await_future3_int() async {
+ await super
+ .test_initializer_executable_with_return_type_from_closure_await_future3_int();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure_await_future_int() async {
+ await super
+ .test_initializer_executable_with_return_type_from_closure_await_future_int();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure_await_future_noArg() async {
+ await super
+ .test_initializer_executable_with_return_type_from_closure_await_future_noArg();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure_field() async {
+ await super
+ .test_initializer_executable_with_return_type_from_closure_field();
+ }
+
+ @failingTest
+ test_initializer_executable_with_return_type_from_closure_local() async {
+ await super
+ .test_initializer_executable_with_return_type_from_closure_local();
+ }
+
+ @failingTest
+ test_instantiateToBounds_boundRefersToEarlierTypeArgument() async {
+ await super.test_instantiateToBounds_boundRefersToEarlierTypeArgument();
+ }
+
+ @failingTest
+ test_instantiateToBounds_boundRefersToItself() async {
+ await super.test_instantiateToBounds_boundRefersToItself();
+ }
+
+ @failingTest
+ test_instantiateToBounds_boundRefersToLaterTypeArgument() async {
+ await super.test_instantiateToBounds_boundRefersToLaterTypeArgument();
+ }
+
+ @failingTest
+ test_instantiateToBounds_functionTypeAlias_simple() async {
+ await super.test_instantiateToBounds_functionTypeAlias_simple();
+ }
+
+ @failingTest
+ test_instantiateToBounds_simple() async {
+ await super.test_instantiateToBounds_simple();
+ }
+
+ @failingTest
+ test_invalid_annotation_prefixed_constructor() async {
+ await super.test_invalid_annotation_prefixed_constructor();
+ }
+
+ @failingTest
+ test_invalid_annotation_unprefixed_constructor() async {
+ await super.test_invalid_annotation_unprefixed_constructor();
+ }
+
+ @failingTest
+ test_invalid_importPrefix_asTypeArgument() async {
+ await super.test_invalid_importPrefix_asTypeArgument();
+ }
+
+ @failingTest
+ test_invalid_nameConflict_imported() async {
+ await super.test_invalid_nameConflict_imported();
+ }
+
+ @failingTest
+ test_invalid_nameConflict_imported_exported() async {
+ await super.test_invalid_nameConflict_imported_exported();
+ }
+
+ @failingTest
+ test_invalid_nameConflict_local() async {
+ await super.test_invalid_nameConflict_local();
+ }
+
+ @failingTest
+ test_invalid_setterParameter_fieldFormalParameter() async {
+ await super.test_invalid_setterParameter_fieldFormalParameter();
+ }
+
+ @failingTest
+ test_invalid_setterParameter_fieldFormalParameter_self() async {
+ await super.test_invalid_setterParameter_fieldFormalParameter_self();
+ }
+
+ @failingTest
+ test_invalidUri_part_emptyUri() async {
+ await super.test_invalidUri_part_emptyUri();
+ }
+
+ @failingTest
+ test_invalidUris() async {
+ await super.test_invalidUris();
+ }
+
+ @failingTest
+ test_localFunctions() async {
+ await super.test_localFunctions();
+ }
+
+ @failingTest
+ test_localFunctions_inMethod() async {
+ await super.test_localFunctions_inMethod();
+ }
+
+ @failingTest
+ test_localFunctions_inTopLevelGetter() async {
+ await super.test_localFunctions_inTopLevelGetter();
+ }
+
+ @failingTest
+ test_localLabels_inMethod() async {
+ await super.test_localLabels_inMethod();
+ }
+
+ @failingTest
+ test_localLabels_inTopLevelFunction() async {
+ await super.test_localLabels_inTopLevelFunction();
+ }
+
+ @failingTest
+ test_main_class_alias() async {
+ await super.test_main_class_alias();
+ }
+
+ @failingTest
+ test_main_class_alias_via_export() async {
+ await super.test_main_class_alias_via_export();
+ }
+
+ @failingTest
+ test_main_class_via_export() async {
+ await super.test_main_class_via_export();
+ }
+
+ @failingTest
+ test_main_getter() async {
+ await super.test_main_getter();
+ }
+
+ @failingTest
+ test_main_getter_via_export() async {
+ await super.test_main_getter_via_export();
+ }
+
+ @failingTest
+ test_main_typedef() async {
+ await super.test_main_typedef();
+ }
+
+ @failingTest
+ test_main_typedef_via_export() async {
+ await super.test_main_typedef_via_export();
+ }
+
+ @failingTest
+ test_main_variable() async {
+ await super.test_main_variable();
+ }
+
+ @failingTest
+ test_main_variable_via_export() async {
+ await super.test_main_variable_via_export();
+ }
+
+ @failingTest
+ test_member_function_async() async {
+ await super.test_member_function_async();
+ }
+
+ @failingTest
+ test_member_function_asyncStar() async {
+ await super.test_member_function_asyncStar();
+ }
+
+ @failingTest
+ test_metadata_classDeclaration() async {
+ await super.test_metadata_classDeclaration();
+ }
+
+ @failingTest
+ test_metadata_classTypeAlias() async {
+ await super.test_metadata_classTypeAlias();
+ }
+
+ @failingTest
+ test_metadata_constructor_call_named() async {
+ await super.test_metadata_constructor_call_named();
+ }
+
+ @failingTest
+ test_metadata_constructor_call_named_prefixed() async {
+ await super.test_metadata_constructor_call_named_prefixed();
+ }
+
+ @failingTest
+ test_metadata_constructor_call_unnamed() async {
+ await super.test_metadata_constructor_call_unnamed();
+ }
+
+ @failingTest
+ test_metadata_constructor_call_unnamed_prefixed() async {
+ await super.test_metadata_constructor_call_unnamed_prefixed();
+ }
+
+ @failingTest
+ test_metadata_constructor_call_with_args() async {
+ await super.test_metadata_constructor_call_with_args();
+ }
+
+ @failingTest
+ test_metadata_constructorDeclaration_named() async {
+ await super.test_metadata_constructorDeclaration_named();
+ }
+
+ @failingTest
+ test_metadata_constructorDeclaration_unnamed() async {
+ await super.test_metadata_constructorDeclaration_unnamed();
+ }
+
+ @failingTest
+ test_metadata_enumDeclaration() async {
+ await super.test_metadata_enumDeclaration();
+ }
+
+ @failingTest
+ test_metadata_exportDirective() async {
+ await super.test_metadata_exportDirective();
+ }
+
+ @failingTest
+ test_metadata_fieldDeclaration() async {
+ await super.test_metadata_fieldDeclaration();
+ }
+
+ @failingTest
+ test_metadata_fieldFormalParameter() async {
+ await super.test_metadata_fieldFormalParameter();
+ }
+
+ @failingTest
+ test_metadata_fieldFormalParameter_withDefault() async {
+ await super.test_metadata_fieldFormalParameter_withDefault();
+ }
+
+ @failingTest
+ test_metadata_functionDeclaration_function() async {
+ await super.test_metadata_functionDeclaration_function();
+ }
+
+ @failingTest
+ test_metadata_functionDeclaration_getter() async {
+ await super.test_metadata_functionDeclaration_getter();
+ }
+
+ @failingTest
+ test_metadata_functionDeclaration_setter() async {
+ await super.test_metadata_functionDeclaration_setter();
+ }
+
+ @failingTest
+ test_metadata_functionTypeAlias() async {
+ await super.test_metadata_functionTypeAlias();
+ }
+
+ @failingTest
+ test_metadata_functionTypedFormalParameter() async {
+ await super.test_metadata_functionTypedFormalParameter();
+ }
+
+ @failingTest
+ test_metadata_functionTypedFormalParameter_withDefault() async {
+ await super.test_metadata_functionTypedFormalParameter_withDefault();
+ }
+
+ @failingTest
+ test_metadata_importDirective() async {
+ await super.test_metadata_importDirective();
+ }
+
+ @failingTest
+ test_metadata_invalid_classDeclaration() async {
+ await super.test_metadata_invalid_classDeclaration();
+ }
+
+ @failingTest
+ test_metadata_libraryDirective() async {
+ await super.test_metadata_libraryDirective();
+ }
+
+ @failingTest
+ test_metadata_methodDeclaration_getter() async {
+ await super.test_metadata_methodDeclaration_getter();
+ }
+
+ @failingTest
+ test_metadata_methodDeclaration_method() async {
+ await super.test_metadata_methodDeclaration_method();
+ }
+
+ @failingTest
+ test_metadata_methodDeclaration_setter() async {
+ await super.test_metadata_methodDeclaration_setter();
+ }
+
+ @failingTest
+ test_metadata_partDirective() async {
+ await super.test_metadata_partDirective();
+ }
+
+ @failingTest
+ test_metadata_prefixed_variable() async {
+ await super.test_metadata_prefixed_variable();
+ }
+
+ @failingTest
+ test_metadata_simpleFormalParameter() async {
+ await super.test_metadata_simpleFormalParameter();
+ }
+
+ @failingTest
+ test_metadata_simpleFormalParameter_withDefault() async {
+ await super.test_metadata_simpleFormalParameter_withDefault();
+ }
+
+ @failingTest
+ test_metadata_topLevelVariableDeclaration() async {
+ await super.test_metadata_topLevelVariableDeclaration();
+ }
+
+ @failingTest
+ test_metadata_typeParameter_ofClass() async {
+ await super.test_metadata_typeParameter_ofClass();
+ }
+
+ @failingTest
+ test_metadata_typeParameter_ofClassTypeAlias() async {
+ await super.test_metadata_typeParameter_ofClassTypeAlias();
+ }
+
+ @failingTest
+ test_metadata_typeParameter_ofFunction() async {
+ await super.test_metadata_typeParameter_ofFunction();
+ }
+
+ @failingTest
+ test_metadata_typeParameter_ofTypedef() async {
+ await super.test_metadata_typeParameter_ofTypedef();
+ }
+
+ @failingTest
+ test_method_documented() async {
+ await super.test_method_documented();
+ }
+
+ @failingTest
+ test_method_inferred_type_nonStatic_implicit_param() async {
+ await super.test_method_inferred_type_nonStatic_implicit_param();
+ }
+
+ @failingTest
+ test_method_inferred_type_nonStatic_implicit_return() async {
+ await super.test_method_inferred_type_nonStatic_implicit_return();
+ }
+
+ @failingTest
+ test_method_type_parameter() async {
+ await super.test_method_type_parameter();
+ }
+
+ @failingTest
+ test_method_type_parameter_in_generic_class() async {
+ await super.test_method_type_parameter_in_generic_class();
+ }
+
+ @failingTest
+ test_method_type_parameter_with_function_typed_parameter() async {
+ await super.test_method_type_parameter_with_function_typed_parameter();
+ }
+
+ @failingTest
+ test_nameConflict_exportedAndLocal() async {
+ await super.test_nameConflict_exportedAndLocal();
+ }
+
+ @failingTest
+ test_nameConflict_exportedAndLocal_exported() async {
+ await super.test_nameConflict_exportedAndLocal_exported();
+ }
+
+ @failingTest
+ test_nameConflict_exportedAndParted() async {
+ await super.test_nameConflict_exportedAndParted();
+ }
+
+ @failingTest
+ test_nameConflict_importWithRelativeUri_exportWithAbsolute() async {
+ await super.test_nameConflict_importWithRelativeUri_exportWithAbsolute();
+ }
+
+ @failingTest
+ test_nested_generic_functions_in_generic_class_with_function_typed_params() async {
+ await super
+ .test_nested_generic_functions_in_generic_class_with_function_typed_params();
+ }
+
+ @failingTest
+ test_nested_generic_functions_in_generic_class_with_local_variables() async {
+ await super
+ .test_nested_generic_functions_in_generic_class_with_local_variables();
+ }
+
+ @failingTest
+ test_nested_generic_functions_with_function_typed_param() async {
+ await super.test_nested_generic_functions_with_function_typed_param();
+ }
+
+ @failingTest
+ test_nested_generic_functions_with_local_variables() async {
+ await super.test_nested_generic_functions_with_local_variables();
+ }
+
+ @failingTest
+ test_operator() async {
+ await super.test_operator();
+ }
+
+ @failingTest
+ test_operator_equal() async {
+ await super.test_operator_equal();
+ }
+
+ @failingTest
+ test_operator_external() async {
+ await super.test_operator_external();
+ }
+
+ @failingTest
+ test_operator_greater_equal() async {
+ await super.test_operator_greater_equal();
+ }
+
+ @failingTest
+ test_operator_index() async {
+ await super.test_operator_index();
+ }
+
+ @failingTest
+ test_operator_index_set() async {
+ await super.test_operator_index_set();
+ }
+
+ @failingTest
+ test_operator_less_equal() async {
+ await super.test_operator_less_equal();
+ }
+
+ @failingTest
+ test_parameter_checked() async {
+ await super.test_parameter_checked();
+ }
+
+ @failingTest
+ test_parameter_checked_inherited() async {
+ await super.test_parameter_checked_inherited();
+ }
+
+ @failingTest
+ test_parameter_covariant() async {
+ await super.test_parameter_covariant();
+ }
+
+ @failingTest
+ test_parameter_covariant_inherited() async {
+ await super.test_parameter_covariant_inherited();
+ }
+
+ @failingTest
+ test_parameter_parameters() async {
+ await super.test_parameter_parameters();
+ }
+
+ @failingTest
+ test_parameter_parameters_in_generic_class() async {
+ await super.test_parameter_parameters_in_generic_class();
+ }
+
+ @failingTest
+ test_parameter_return_type() async {
+ await super.test_parameter_return_type();
+ }
+
+ @failingTest
+ test_parameter_return_type_void() async {
+ await super.test_parameter_return_type_void();
+ }
+
+ @failingTest
+ test_parameterTypeNotInferred_constructor() async {
+ await super.test_parameterTypeNotInferred_constructor();
+ }
+
+ @failingTest
+ test_parameterTypeNotInferred_initializingFormal() async {
+ await super.test_parameterTypeNotInferred_initializingFormal();
+ }
+
+ @failingTest
+ test_parameterTypeNotInferred_staticMethod() async {
+ await super.test_parameterTypeNotInferred_staticMethod();
+ }
+
+ @failingTest
+ test_parameterTypeNotInferred_topLevelFunction() async {
+ await super.test_parameterTypeNotInferred_topLevelFunction();
+ }
+
+ @failingTest
+ test_parts() async {
+ await super.test_parts();
+ }
+
+ @failingTest
+ test_parts_invalidUri() async {
+ await super.test_parts_invalidUri();
+ }
+
+ @failingTest
+ test_parts_invalidUri_nullStringValue() async {
+ await super.test_parts_invalidUri_nullStringValue();
+ }
+
+ @failingTest
+ test_propagated_type_refers_to_closure() async {
+ await super.test_propagated_type_refers_to_closure();
+ }
+
+ @failingTest
+ test_setter_covariant() async {
+ await super.test_setter_covariant();
+ }
+
+ @failingTest
+ test_setter_documented() async {
+ await super.test_setter_documented();
+ }
+
+ @failingTest
+ test_setter_external() async {
+ await super.test_setter_external();
+ }
+
+ @failingTest
+ test_setter_inferred_type_nonStatic_implicit_param() async {
+ await super.test_setter_inferred_type_nonStatic_implicit_param();
+ }
+
+ @failingTest
+ test_setter_inferred_type_static_implicit_return() async {
+ await super.test_setter_inferred_type_static_implicit_return();
+ }
+
+ @failingTest
+ test_setter_inferred_type_top_level_implicit_return() async {
+ await super.test_setter_inferred_type_top_level_implicit_return();
+ }
+
+ @failingTest
+ test_setters() async {
+ await super.test_setters();
+ }
+
+ @failingTest
+ test_syntheticFunctionType_inGenericClass() async {
+ await super.test_syntheticFunctionType_inGenericClass();
+ }
+
+ @failingTest
+ test_syntheticFunctionType_inGenericFunction() async {
+ await super.test_syntheticFunctionType_inGenericFunction();
+ }
+
+ @failingTest
+ test_type_arguments_explicit_dynamic_dynamic() async {
+ await super.test_type_arguments_explicit_dynamic_dynamic();
+ }
+
+ @failingTest
+ test_type_arguments_explicit_dynamic_int() async {
+ await super.test_type_arguments_explicit_dynamic_int();
+ }
+
+ @failingTest
+ test_type_arguments_explicit_String_dynamic() async {
+ await super.test_type_arguments_explicit_String_dynamic();
+ }
+
+ @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();
+ }
+
+ @failingTest
+ test_type_dynamic() async {
+ await super.test_type_dynamic();
+ }
+
+ @failingTest
+ test_type_invalid_topLevelVariableElement_asType() async {
+ await super.test_type_invalid_topLevelVariableElement_asType();
+ }
+
+ @failingTest
+ test_type_invalid_topLevelVariableElement_asTypeArgument() async {
+ await super.test_type_invalid_topLevelVariableElement_asTypeArgument();
+ }
+
+ @failingTest
+ test_type_invalid_typeParameter_asPrefix() async {
+ await super.test_type_invalid_typeParameter_asPrefix();
+ }
+
+ @failingTest
+ test_type_reference_lib_to_lib() async {
+ await super.test_type_reference_lib_to_lib();
+ }
+
+ @failingTest
+ test_type_reference_lib_to_part() async {
+ await super.test_type_reference_lib_to_part();
+ }
+
+ @failingTest
+ test_type_reference_part_to_lib() async {
+ await super.test_type_reference_part_to_lib();
+ }
+
+ @failingTest
+ test_type_reference_part_to_other_part() async {
+ await super.test_type_reference_part_to_other_part();
+ }
+
+ @failingTest
+ test_type_reference_part_to_part() async {
+ await super.test_type_reference_part_to_part();
+ }
+
+ @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();
+ }
+
+ @failingTest
+ test_type_reference_to_enum() async {
+ await super.test_type_reference_to_enum();
+ }
+
+ @failingTest
+ test_type_reference_to_import() async {
+ await super.test_type_reference_to_import();
+ }
+
+ @failingTest
+ test_type_reference_to_import_export() async {
+ await super.test_type_reference_to_import_export();
+ }
+
+ @failingTest
+ test_type_reference_to_import_export_export() async {
+ await super.test_type_reference_to_import_export_export();
+ }
+
+ @failingTest
+ test_type_reference_to_import_export_export_in_subdirs() async {
+ await super.test_type_reference_to_import_export_export_in_subdirs();
+ }
+
+ @failingTest
+ test_type_reference_to_import_export_in_subdirs() async {
+ await super.test_type_reference_to_import_export_in_subdirs();
+ }
+
+ @failingTest
+ test_type_reference_to_import_part() async {
+ await super.test_type_reference_to_import_part();
+ }
+
+ @failingTest
+ test_type_reference_to_import_part2() async {
+ await super.test_type_reference_to_import_part2();
+ }
+
+ @failingTest
+ test_type_reference_to_import_part_in_subdir() async {
+ await super.test_type_reference_to_import_part_in_subdir();
+ }
+
+ @failingTest
+ test_type_reference_to_import_relative() async {
+ await super.test_type_reference_to_import_relative();
+ }
+
+ @failingTest
+ test_type_reference_to_typedef() async {
+ await super.test_type_reference_to_typedef();
+ }
+
+ @failingTest
+ test_type_reference_to_typedef_with_type_arguments() async {
+ await super.test_type_reference_to_typedef_with_type_arguments();
+ }
+
+ @failingTest
+ test_type_reference_to_typedef_with_type_arguments_implicit() async {
+ await super.test_type_reference_to_typedef_with_type_arguments_implicit();
+ }
+
+ @failingTest
+ test_type_unresolved() async {
+ await super.test_type_unresolved();
+ }
+
+ @failingTest
+ test_type_unresolved_prefixed() async {
+ await super.test_type_unresolved_prefixed();
+ }
+
+ @failingTest
+ test_typedef_documented() async {
+ await super.test_typedef_documented();
+ }
+
+ @failingTest
+ test_typedef_generic() async {
+ await super.test_typedef_generic();
+ }
+
+ @failingTest
+ test_typedef_generic_asFieldType() async {
+ await super.test_typedef_generic_asFieldType();
+ }
+
+ @failingTest
+ test_typedef_parameter_parameters() async {
+ await super.test_typedef_parameter_parameters();
+ }
+
+ @failingTest
+ test_typedef_parameter_parameters_in_generic_class() async {
+ await super.test_typedef_parameter_parameters_in_generic_class();
+ }
+
+ @failingTest
+ test_typedef_parameter_return_type() async {
+ await super.test_typedef_parameter_return_type();
+ }
+
+ @failingTest
+ test_typedef_parameter_type() async {
+ await super.test_typedef_parameter_type();
+ }
+
+ @failingTest
+ test_typedef_parameter_type_generic() async {
+ await super.test_typedef_parameter_type_generic();
+ }
+
+ @failingTest
+ test_typedef_parameters() async {
+ await super.test_typedef_parameters();
+ }
+
+ @failingTest
+ test_typedef_return_type() async {
+ await super.test_typedef_return_type();
+ }
+
+ @failingTest
+ test_typedef_return_type_generic() async {
+ await super.test_typedef_return_type_generic();
+ }
+
+ @failingTest
+ test_typedef_return_type_implicit() async {
+ await super.test_typedef_return_type_implicit();
+ }
+
+ @failingTest
+ test_typedef_return_type_void() async {
+ await super.test_typedef_return_type_void();
+ }
+
+ @failingTest
+ test_typedef_type_parameters() async {
+ await super.test_typedef_type_parameters();
+ }
+
+ @failingTest
+ test_typedef_type_parameters_bound() async {
+ await super.test_typedef_type_parameters_bound();
+ }
+
+ @failingTest
+ test_typedef_type_parameters_bound_recursive() async {
+ await super.test_typedef_type_parameters_bound_recursive();
+ }
+
+ @failingTest
+ test_typedef_type_parameters_bound_recursive2() async {
+ await super.test_typedef_type_parameters_bound_recursive2();
+ }
+
+ @failingTest
+ test_typedef_type_parameters_f_bound_complex() async {
+ await super.test_typedef_type_parameters_f_bound_complex();
+ }
+
+ @failingTest
+ test_typedef_type_parameters_f_bound_simple() async {
+ await super.test_typedef_type_parameters_f_bound_simple();
+ }
+
+ @failingTest
+ test_typedefs() async {
+ await super.test_typedefs();
+ }
+
+ @failingTest
+ test_unresolved_annotation_instanceCreation_argument_super() async {
+ await super.test_unresolved_annotation_instanceCreation_argument_super();
+ }
+
+ @failingTest
+ test_unresolved_annotation_instanceCreation_argument_this() async {
+ await super.test_unresolved_annotation_instanceCreation_argument_this();
+ }
+
+ @failingTest
+ test_unresolved_annotation_namedConstructorCall_noClass() async {
+ await super.test_unresolved_annotation_namedConstructorCall_noClass();
+ }
+
+ @failingTest
+ test_unresolved_annotation_namedConstructorCall_noConstructor() async {
+ await super.test_unresolved_annotation_namedConstructorCall_noConstructor();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedIdentifier_badPrefix() async {
+ await super.test_unresolved_annotation_prefixedIdentifier_badPrefix();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedIdentifier_noDeclaration() async {
+ await super.test_unresolved_annotation_prefixedIdentifier_noDeclaration();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedNamedConstructorCall_badPrefix() async {
+ await super
+ .test_unresolved_annotation_prefixedNamedConstructorCall_badPrefix();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedNamedConstructorCall_noClass() async {
+ await super
+ .test_unresolved_annotation_prefixedNamedConstructorCall_noClass();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedNamedConstructorCall_noConstructor() async {
+ await super
+ .test_unresolved_annotation_prefixedNamedConstructorCall_noConstructor();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedUnnamedConstructorCall_badPrefix() async {
+ await super
+ .test_unresolved_annotation_prefixedUnnamedConstructorCall_badPrefix();
+ }
+
+ @failingTest
+ test_unresolved_annotation_prefixedUnnamedConstructorCall_noClass() async {
+ await super
+ .test_unresolved_annotation_prefixedUnnamedConstructorCall_noClass();
+ }
+
+ @failingTest
+ test_unresolved_annotation_simpleIdentifier() async {
+ await super.test_unresolved_annotation_simpleIdentifier();
+ }
+
+ @failingTest
+ test_unresolved_annotation_unnamedConstructorCall_noClass() async {
+ await super.test_unresolved_annotation_unnamedConstructorCall_noClass();
+ }
+
+ @failingTest
+ test_unresolved_export() async {
+ await super.test_unresolved_export();
+ }
+
+ @failingTest
+ test_unresolved_import() async {
+ await super.test_unresolved_import();
+ }
+
+ @failingTest
+ test_unresolved_part() async {
+ await super.test_unresolved_part();
+ }
+
+ @failingTest
+ test_unused_type_parameter() async {
+ await super.test_unused_type_parameter();
+ }
+
+ @failingTest
+ test_variable_const() async {
+ await super.test_variable_const();
+ }
+
+ @failingTest
+ test_variable_documented() async {
+ await super.test_variable_documented();
+ }
+
+ @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();
+ }
+
+ @failingTest
+ test_variable_getterInPart_setterInLib() async {
+ await super.test_variable_getterInPart_setterInLib();
+ }
+
+ @failingTest
+ test_variable_getterInPart_setterInPart() async {
+ await super.test_variable_getterInPart_setterInPart();
+ }
+
+ @failingTest
+ test_variable_implicit_type() async {
+ await super.test_variable_implicit_type();
+ }
+
+ @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();
+ }
+
+ @failingTest
+ test_variable_propagatedType_final_dep_inLib() async {
+ await super.test_variable_propagatedType_final_dep_inLib();
+ }
+
+ @failingTest
+ test_variable_propagatedType_final_dep_inPart() async {
+ await super.test_variable_propagatedType_final_dep_inPart();
+ }
+
+ @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();
+ }
+
+ @failingTest
+ test_variable_setterInPart_getterInPart() async {
+ await super.test_variable_setterInPart_getterInPart();
+ }
+
+ @failingTest
+ test_variables() async {
+ await super.test_variables();
+ }
+}
+
+class _FileSystemAdaptor implements FileSystem {
+ final ResourceProvider provider;
+
+ _FileSystemAdaptor(this.provider);
+
+ @override
+ FileSystemEntity entityForUri(Uri uri) {
+ if (uri.isScheme('file')) {
+ var file = provider.getFile(uri.path);
+ return new _FileSystemEntityAdaptor(uri, file);
+ } else {
+ throw new ArgumentError(
+ 'Only file:// URIs are supported, but $uri is given.');
+ }
+ // TODO: implement entityForUri
+ }
+}
+
+class _FileSystemEntityAdaptor implements FileSystemEntity {
+ final Uri uri;
+ final File file;
+
+ _FileSystemEntityAdaptor(this.uri, this.file);
+
+ @override
+ Future<bool> exists() async {
+ return file.exists;
+ }
+
+ @override
+ Future<DateTime> lastModified() async {
+ return new DateTime.fromMicrosecondsSinceEpoch(file.modificationStamp);
+ }
+
+ @override
+ Future<List<int>> readAsBytes() async {
+ return file.readAsBytesSync();
+ }
+
+ @override
+ Future<String> readAsString() async {
+ return file.readAsStringSync();
+ }
+}
+
+class _KernelLibraryResynthesizerContextImpl
+ implements KernelLibraryResynthesizerContext {
+ /// TODO(scheglov) we don't use this yet, make it private later
+ final Map<String, kernel.Library> libraryMap;
+
+ @override
+ final kernel.Library library;
+
+ _KernelLibraryResynthesizerContextImpl(this.libraryMap, this.library);
+}

Powered by Google App Engine
This is Rietveld 408576698