├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README-CN.md ├── README.md ├── doc ├── debugtools.png ├── frondend配置.png ├── frontend参数.png ├── hook流程.jpg ├── toolscommandline.png ├── tools输出.png ├── 如何调试.md └── 调试入口.png ├── example ├── .gitignore ├── README.md ├── android │ ├── app │ │ ├── build.gradle │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ ├── com │ │ │ │ │ └── beike │ │ │ │ │ │ └── example_beike │ │ │ │ │ │ └── MainActivity.java │ │ │ │ └── io │ │ │ │ │ └── flutter │ │ │ │ │ └── plugins │ │ │ │ │ └── GeneratedPluginRegistrant.java │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── launch_background.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ └── styles.xml │ │ │ └── profile │ │ │ └── AndroidManifest.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ └── settings.gradle ├── aop_config.yaml ├── ios │ ├── Flutter │ │ ├── AppFrameworkInfo.plist │ │ ├── Debug.xcconfig │ │ └── Release.xcconfig │ ├── Runner.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Runner.xcscheme │ ├── Runner.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ ├── beike.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── solo.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── Runner │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ └── LaunchImage.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ └── README.md │ │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ │ ├── GeneratedPluginRegistrant.h │ │ ├── GeneratedPluginRegistrant.m │ │ ├── Info.plist │ │ └── main.m ├── lib │ ├── hook_example.dart │ ├── main.dart │ └── receiver_test.dart ├── pubspec.yaml └── test │ └── widget_test.dart ├── inner ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── analysis_options.yaml ├── config.yaml ├── flutter_frontend_server │ ├── frontend_server.dart.snapshot │ ├── gen_frontend_server_snapshot.sh │ ├── generate_plugins_entry.dart │ ├── package_config.json │ ├── server.dart │ └── starter.dart ├── flutter_tools.patch ├── pkg │ ├── _fe_analyzer_shared │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── PRESUBMIT.py │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── analysis_options_no_lints.yaml │ │ ├── benchmark │ │ │ ├── exhaustiveness │ │ │ │ ├── large_fields_call_counts.dart │ │ │ │ ├── large_fields_timed.dart │ │ │ │ └── large_subtype_count.dart │ │ │ └── macros │ │ │ │ └── serialization_benchmark.dart │ │ ├── lib │ │ │ └── src │ │ │ │ ├── base │ │ │ │ ├── customized_codes.dart │ │ │ │ ├── errors.dart │ │ │ │ └── syntactic_entity.dart │ │ │ │ ├── deferred_function_literal_heuristic.dart │ │ │ │ ├── exhaustiveness │ │ │ │ ├── exhaustive.dart │ │ │ │ ├── key.dart │ │ │ │ ├── path.dart │ │ │ │ ├── profile.dart │ │ │ │ ├── shared.dart │ │ │ │ ├── space.dart │ │ │ │ ├── static_type.dart │ │ │ │ ├── test_helper.dart │ │ │ │ ├── types.dart │ │ │ │ ├── types │ │ │ │ │ ├── bool.dart │ │ │ │ │ ├── enum.dart │ │ │ │ │ ├── future_or.dart │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ ├── record.dart │ │ │ │ │ └── sealed.dart │ │ │ │ └── witness.dart │ │ │ │ ├── experiments │ │ │ │ ├── errors.dart │ │ │ │ └── flags.dart │ │ │ │ ├── flow_analysis │ │ │ │ ├── factory_type_test_helper.dart │ │ │ │ └── flow_analysis.dart │ │ │ │ ├── macros │ │ │ │ ├── api.dart │ │ │ │ ├── api │ │ │ │ │ ├── builders.dart │ │ │ │ │ ├── code.dart │ │ │ │ │ ├── introspection.dart │ │ │ │ │ └── macros.dart │ │ │ │ ├── bootstrap.dart │ │ │ │ ├── compiler │ │ │ │ │ └── request_channel.dart │ │ │ │ ├── executor.dart │ │ │ │ └── executor │ │ │ │ │ ├── augmentation_library.dart │ │ │ │ │ ├── builder_impls.dart │ │ │ │ │ ├── execute_macro.dart │ │ │ │ │ ├── executor_base.dart │ │ │ │ │ ├── introspection_impls.dart │ │ │ │ │ ├── isolated_executor.dart │ │ │ │ │ ├── message_grouper.dart │ │ │ │ │ ├── multi_executor.dart │ │ │ │ │ ├── process_executor.dart │ │ │ │ │ ├── protocol.dart │ │ │ │ │ ├── remote_instance.dart │ │ │ │ │ ├── response_impls.dart │ │ │ │ │ ├── serialization.dart │ │ │ │ │ └── serialization_extensions.dart │ │ │ │ ├── messages │ │ │ │ ├── codes.dart │ │ │ │ ├── codes_generated.dart │ │ │ │ ├── diagnostic_message.dart │ │ │ │ └── severity.dart │ │ │ │ ├── parser │ │ │ │ ├── assert.dart │ │ │ │ ├── async_modifier.dart │ │ │ │ ├── block_kind.dart │ │ │ │ ├── class_member_parser.dart │ │ │ │ ├── constructor_reference_context.dart │ │ │ │ ├── declaration_kind.dart │ │ │ │ ├── directive_context.dart │ │ │ │ ├── error_delegation_listener.dart │ │ │ │ ├── formal_parameter_kind.dart │ │ │ │ ├── forwarding_listener.dart │ │ │ │ ├── identifier_context.dart │ │ │ │ ├── identifier_context_impl.dart │ │ │ │ ├── listener.dart │ │ │ │ ├── literal_entry_info.dart │ │ │ │ ├── literal_entry_info_impl.dart │ │ │ │ ├── loop_state.dart │ │ │ │ ├── member_kind.dart │ │ │ │ ├── modifier_context.dart │ │ │ │ ├── parser.dart │ │ │ │ ├── parser.md │ │ │ │ ├── parser_error.dart │ │ │ │ ├── parser_impl.dart │ │ │ │ ├── parser_main.dart │ │ │ │ ├── quote.dart │ │ │ │ ├── recovery_listeners.dart │ │ │ │ ├── stack_listener.dart │ │ │ │ ├── token_stream_rewriter.dart │ │ │ │ ├── top_level_parser.dart │ │ │ │ ├── type_info.dart │ │ │ │ ├── type_info_impl.dart │ │ │ │ └── util.dart │ │ │ │ ├── scanner │ │ │ │ ├── abstract_scanner.dart │ │ │ │ ├── characters.dart │ │ │ │ ├── error_token.dart │ │ │ │ ├── errors.dart │ │ │ │ ├── interner.dart │ │ │ │ ├── io.dart │ │ │ │ ├── keyword_state.dart │ │ │ │ ├── reader.dart │ │ │ │ ├── recover.dart │ │ │ │ ├── scanner.dart │ │ │ │ ├── scanner_main.dart │ │ │ │ ├── string_canonicalizer.dart │ │ │ │ ├── string_scanner.dart │ │ │ │ ├── string_utilities.dart │ │ │ │ ├── token.dart │ │ │ │ ├── token_constants.dart │ │ │ │ ├── token_impl.dart │ │ │ │ └── utf8_bytes_scanner.dart │ │ │ │ ├── sdk │ │ │ │ └── allowed_experiments.dart │ │ │ │ ├── testing │ │ │ │ ├── annotated_code_helper.dart │ │ │ │ ├── features.dart │ │ │ │ ├── id.dart │ │ │ │ ├── id_generation.dart │ │ │ │ └── id_testing.dart │ │ │ │ ├── type_inference │ │ │ │ ├── assigned_variables.dart │ │ │ │ ├── promotion_key_store.dart │ │ │ │ ├── type_analysis_result.dart │ │ │ │ ├── type_analyzer.dart │ │ │ │ ├── type_operations.dart │ │ │ │ └── variable_bindings.dart │ │ │ │ └── util │ │ │ │ ├── colors.dart │ │ │ │ ├── dependency_walker.dart │ │ │ │ ├── filenames.dart │ │ │ │ ├── libraries_specification.dart │ │ │ │ ├── link.dart │ │ │ │ ├── link_implementation.dart │ │ │ │ ├── null_value.dart │ │ │ │ ├── options.dart │ │ │ │ ├── relativize.dart │ │ │ │ ├── resolve_input_uri.dart │ │ │ │ ├── resolve_relative_uri.dart │ │ │ │ ├── stack_checker.dart │ │ │ │ └── value_kind.dart │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── annotated_code_helper_test.dart │ │ │ ├── constants │ │ │ │ ├── data │ │ │ │ │ ├── basic.dart │ │ │ │ │ ├── errors.dart │ │ │ │ │ ├── function.dart │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── set.dart │ │ │ │ │ └── type_literals.dart │ │ │ │ └── data_2 │ │ │ │ │ ├── basic.dart │ │ │ │ │ ├── errors.dart │ │ │ │ │ ├── function.dart │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── set.dart │ │ │ │ │ └── type_literals.dart │ │ │ ├── deferred_function_literal_heuristic_test.dart │ │ │ ├── exhaustiveness │ │ │ │ ├── data │ │ │ │ │ ├── and_pattern.dart │ │ │ │ │ ├── bool.dart │ │ │ │ │ ├── bounded_generic_sealed_classes.dart │ │ │ │ │ ├── cast.dart │ │ │ │ │ ├── class_members.dart │ │ │ │ │ ├── dynamic_members.dart │ │ │ │ │ ├── empty.dart │ │ │ │ │ ├── enum.dart │ │ │ │ │ ├── enum_members.dart │ │ │ │ │ ├── extension_members.dart │ │ │ │ │ ├── f_bounded.dart │ │ │ │ │ ├── function_bounded_sealed_classes.dart │ │ │ │ │ ├── function_type_members.dart │ │ │ │ │ ├── future_or.dart │ │ │ │ │ ├── future_or_members.dart │ │ │ │ │ ├── generic_class.dart │ │ │ │ │ ├── generic_enum.dart │ │ │ │ │ ├── generic_extension_members.dart │ │ │ │ │ ├── generic_nested_sealed_classes.dart │ │ │ │ │ ├── generic_sealed_class.dart │ │ │ │ │ ├── intersect.dart │ │ │ │ │ ├── issue2878_example0.dart │ │ │ │ │ ├── issue2878_example1.dart │ │ │ │ │ ├── issue2878_example2.dart │ │ │ │ │ ├── issue2878_example3.dart │ │ │ │ │ ├── issue2878_example4.dart │ │ │ │ │ ├── issue51854.dart │ │ │ │ │ ├── issue51873.dart │ │ │ │ │ ├── issue51878.dart │ │ │ │ │ ├── issue51897.dart │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── nested_sealed_classes.dart │ │ │ │ │ ├── never_members.dart │ │ │ │ │ ├── null_assert.dart │ │ │ │ │ ├── null_check.dart │ │ │ │ │ ├── null_members.dart │ │ │ │ │ ├── nullable_members.dart │ │ │ │ │ ├── num.dart │ │ │ │ │ ├── object_members.dart │ │ │ │ │ ├── object_pattern.dart │ │ │ │ │ ├── or_pattern.dart │ │ │ │ │ ├── record.dart │ │ │ │ │ ├── record_literal.dart │ │ │ │ │ ├── record_literal_named.dart │ │ │ │ │ ├── record_members.dart │ │ │ │ │ ├── record_sealed.dart │ │ │ │ │ ├── relational.dart │ │ │ │ │ ├── sealed_class.dart │ │ │ │ │ ├── type_variable_members.dart │ │ │ │ │ ├── unknown.dart │ │ │ │ │ ├── variable_pattern.dart │ │ │ │ │ ├── void_members.dart │ │ │ │ │ └── when.dart │ │ │ │ ├── env.dart │ │ │ │ ├── expand_subtypes_test.dart │ │ │ │ ├── is_exhaustive_field_test.dart │ │ │ │ ├── is_exhaustive_nested_test.dart │ │ │ │ ├── is_exhaustive_type_test.dart │ │ │ │ ├── report_errors_test.dart │ │ │ │ ├── static_type_test.dart │ │ │ │ └── utils.dart │ │ │ ├── flow_analysis │ │ │ │ ├── assigned_variables │ │ │ │ │ └── data │ │ │ │ │ │ ├── and.dart │ │ │ │ │ │ ├── assignment.dart │ │ │ │ │ │ ├── closure.dart │ │ │ │ │ │ ├── conditional.dart │ │ │ │ │ │ ├── constructor.dart │ │ │ │ │ │ ├── do.dart │ │ │ │ │ │ ├── field.dart │ │ │ │ │ │ ├── for.dart │ │ │ │ │ │ ├── for_element.dart │ │ │ │ │ │ ├── if.dart │ │ │ │ │ │ ├── localFunction.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ ├── method.dart │ │ │ │ │ │ ├── postfix.dart │ │ │ │ │ │ ├── prefix.dart │ │ │ │ │ │ ├── switch.dart │ │ │ │ │ │ ├── topLevelFunction.dart │ │ │ │ │ │ ├── topLevelVariable.dart │ │ │ │ │ │ ├── tryCatch.dart │ │ │ │ │ │ ├── tryFinally.dart │ │ │ │ │ │ └── while.dart │ │ │ │ ├── assigned_variables_test.dart │ │ │ │ ├── definite_assignment │ │ │ │ │ └── data │ │ │ │ │ │ ├── assert.dart │ │ │ │ │ │ ├── assignment.dart │ │ │ │ │ │ ├── binary_expression.dart │ │ │ │ │ │ ├── conditional_expression.dart │ │ │ │ │ │ ├── do.dart │ │ │ │ │ │ ├── for.dart │ │ │ │ │ │ ├── for_each.dart │ │ │ │ │ │ ├── function_expression.dart │ │ │ │ │ │ ├── if.dart │ │ │ │ │ │ ├── initialization.dart │ │ │ │ │ │ ├── issue41284.dart │ │ │ │ │ │ ├── late_initializer.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ ├── switch.dart │ │ │ │ │ │ ├── try.dart │ │ │ │ │ │ └── while.dart │ │ │ │ ├── definite_unassignment │ │ │ │ │ └── data │ │ │ │ │ │ ├── assert.dart │ │ │ │ │ │ ├── assignment.dart │ │ │ │ │ │ ├── binary_expression.dart │ │ │ │ │ │ ├── conditional_expression.dart │ │ │ │ │ │ ├── do.dart │ │ │ │ │ │ ├── for.dart │ │ │ │ │ │ ├── for_each.dart │ │ │ │ │ │ ├── function_expression.dart │ │ │ │ │ │ ├── if.dart │ │ │ │ │ │ ├── initialization.dart │ │ │ │ │ │ ├── issue41284.dart │ │ │ │ │ │ ├── issue43006.dart │ │ │ │ │ │ ├── labeled_statement.dart │ │ │ │ │ │ ├── late_initializer.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ ├── switch.dart │ │ │ │ │ │ ├── try.dart │ │ │ │ │ │ └── while.dart │ │ │ │ ├── flow_analysis_mini_ast.dart │ │ │ │ ├── flow_analysis_test.dart │ │ │ │ ├── nullability │ │ │ │ │ └── data │ │ │ │ │ │ ├── assert.dart │ │ │ │ │ │ ├── assign.dart │ │ │ │ │ │ ├── equality_operator.dart │ │ │ │ │ │ ├── identical.dart │ │ │ │ │ │ ├── identical_prefixed.dart │ │ │ │ │ │ ├── identical_spoof.dart │ │ │ │ │ │ ├── if.dart │ │ │ │ │ │ ├── if_element.dart │ │ │ │ │ │ ├── is.dart │ │ │ │ │ │ ├── issue42504.dart │ │ │ │ │ │ ├── issue44276.dart │ │ │ │ │ │ ├── labeled_statement.dart │ │ │ │ │ │ ├── local_boolean.dart │ │ │ │ │ │ ├── local_boolean_new.dart │ │ │ │ │ │ ├── logical.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ ├── null_aware_access.dart │ │ │ │ │ │ ├── null_aware_call.dart │ │ │ │ │ │ ├── null_check.dart │ │ │ │ │ │ ├── potentially_mutated_in_closure.dart │ │ │ │ │ │ ├── try_finally.dart │ │ │ │ │ │ └── while.dart │ │ │ │ ├── reachability │ │ │ │ │ └── data │ │ │ │ │ │ ├── assert.dart │ │ │ │ │ │ ├── conditional.dart │ │ │ │ │ │ ├── do.dart │ │ │ │ │ │ ├── early_exit.dart │ │ │ │ │ │ ├── equality_operator.dart │ │ │ │ │ │ ├── for.dart │ │ │ │ │ │ ├── function_body.dart │ │ │ │ │ │ ├── if_null.dart │ │ │ │ │ │ ├── issue41284.dart │ │ │ │ │ │ ├── issue41981.dart │ │ │ │ │ │ ├── labeled_statement.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ ├── never_return_type.dart │ │ │ │ │ │ ├── null_aware_access.dart │ │ │ │ │ │ ├── null_aware_access_static.dart │ │ │ │ │ │ ├── switch.dart │ │ │ │ │ │ ├── try_catch.dart │ │ │ │ │ │ └── unreachable_via_never.dart │ │ │ │ ├── type_promotion │ │ │ │ │ └── data │ │ │ │ │ │ ├── as.dart │ │ │ │ │ │ ├── assert.dart │ │ │ │ │ │ ├── assigned_anywhere.dart │ │ │ │ │ │ ├── assignment.dart │ │ │ │ │ │ ├── assignment_promoted.dart │ │ │ │ │ │ ├── binary.dart │ │ │ │ │ │ ├── bug39178.dart │ │ │ │ │ │ ├── bug42066.dart │ │ │ │ │ │ ├── bug42653.dart │ │ │ │ │ │ ├── bug43136.dart │ │ │ │ │ │ ├── conditional.dart │ │ │ │ │ │ ├── constructor_initializer.dart │ │ │ │ │ │ ├── declaration.dart │ │ │ │ │ │ ├── do.dart │ │ │ │ │ │ ├── final_initializer.dart │ │ │ │ │ │ ├── for.dart │ │ │ │ │ │ ├── function_expression.dart │ │ │ │ │ │ ├── if.dart │ │ │ │ │ │ ├── implicit_downcast.dart │ │ │ │ │ │ ├── initialization.dart │ │ │ │ │ │ ├── inside_closure.dart │ │ │ │ │ │ ├── late_initializer.dart │ │ │ │ │ │ ├── loop_type_of_interest.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ ├── mixed_if_null_and_null_aware.dart │ │ │ │ │ │ ├── not_promoted.dart │ │ │ │ │ │ ├── null_aware_assignment.dart │ │ │ │ │ │ ├── null_check.dart │ │ │ │ │ │ ├── potentially_mutated.dart │ │ │ │ │ │ ├── promotion_in_dead_code.dart │ │ │ │ │ │ ├── switch.dart │ │ │ │ │ │ ├── this.dart │ │ │ │ │ │ ├── try_catch.dart │ │ │ │ │ │ ├── try_catch_finally.dart │ │ │ │ │ │ ├── try_finally.dart │ │ │ │ │ │ ├── type_parameter.dart │ │ │ │ │ │ ├── while.dart │ │ │ │ │ │ └── write_capture.dart │ │ │ │ └── why_not_promoted │ │ │ │ │ └── data │ │ │ │ │ ├── argument_type_not_assignable_nullability_error.dart │ │ │ │ │ ├── assignment.dart │ │ │ │ │ ├── extension_property.dart │ │ │ │ │ ├── field.dart │ │ │ │ │ ├── for_in_loop_type_not_iterable_nullability_error.dart │ │ │ │ │ ├── invalid_assignment_error_nullability_error.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── nullable_expression_call_error.dart │ │ │ │ │ ├── nullable_method_call_error.dart │ │ │ │ │ ├── nullable_operator_call_error.dart │ │ │ │ │ ├── nullable_spread_error.dart │ │ │ │ │ ├── property.dart │ │ │ │ │ └── this.dart │ │ │ ├── id_generation_test.dart │ │ │ ├── inference │ │ │ │ ├── inferred_type_arguments │ │ │ │ │ └── data │ │ │ │ │ │ ├── bounded.dart │ │ │ │ │ │ ├── collections.dart │ │ │ │ │ │ ├── constructor_invocation.dart │ │ │ │ │ │ ├── function_invocation.dart │ │ │ │ │ │ ├── instance_invocation.dart │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ └── static_invocation.dart │ │ │ │ └── inferred_variable_types │ │ │ │ │ └── data │ │ │ │ │ ├── from_initializer.dart │ │ │ │ │ ├── local_functions.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ └── promoted.dart │ │ │ ├── inheritance │ │ │ │ └── data │ │ │ │ │ ├── covariant_opt_in.dart │ │ │ │ │ ├── covariant_opt_out.dart │ │ │ │ │ ├── from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── from_opt_out │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── function.dart │ │ │ │ │ ├── generic_members_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── generic_members_from_opt_out │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── in_out_in │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── opt_in.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── infer_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── infer_opt_in_from_mixed │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── infer_opt_out_from_mixed │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── infer_parameter_opt_in.dart │ │ │ │ │ ├── infer_parameter_opt_out.dart │ │ │ │ │ ├── issue40414 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── opt_in.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── issue40481.dart │ │ │ │ │ ├── issue40481 │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── issue40524 │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── issue40541.dart │ │ │ │ │ ├── issue40553 │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── member_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── member_from_opt_out │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── members_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── members_from_opt_out │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── members_opt_in.dart │ │ │ │ │ ├── members_opt_out.dart │ │ │ │ │ ├── norm_supertypes.dart │ │ │ │ │ ├── nsm_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── object_opt_in │ │ │ │ │ ├── _internal.dart │ │ │ │ │ ├── async.dart │ │ │ │ │ ├── collection.dart │ │ │ │ │ ├── core.dart │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── opt_in.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── object_opt_out │ │ │ │ │ ├── _internal.dart │ │ │ │ │ ├── async.dart │ │ │ │ │ ├── collection.dart │ │ │ │ │ ├── core.dart │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── sink.dart │ │ │ │ │ ├── top_merge_direct.dart │ │ │ │ │ ├── top_merge_mixin.dart │ │ │ │ │ ├── top_merge_opt_in.dart │ │ │ │ │ ├── top_merge_opt_out.dart │ │ │ │ │ └── top_merge_typedef.dart │ │ │ ├── macros │ │ │ │ ├── api │ │ │ │ │ ├── api_test_data.dart │ │ │ │ │ ├── api_test_expectations.dart │ │ │ │ │ ├── api_test_macro.dart │ │ │ │ │ └── package_config.json │ │ │ │ ├── compiler │ │ │ │ │ └── request_channel_test.dart │ │ │ │ ├── executor │ │ │ │ │ ├── augmentation_library_test.dart │ │ │ │ │ ├── executor_test.dart │ │ │ │ │ ├── response_impls_test.dart │ │ │ │ │ ├── serialization_test.dart │ │ │ │ │ └── simple_macro.dart │ │ │ │ └── util.dart │ │ │ ├── mini_ast.dart │ │ │ ├── mini_ir.dart │ │ │ ├── mini_types.dart │ │ │ ├── mini_types_test.dart │ │ │ ├── resolve_input_uri_test.dart │ │ │ ├── sdk │ │ │ │ └── allowed_experiments_test.dart │ │ │ ├── template_replacement_test.dart │ │ │ ├── type_inference │ │ │ │ ├── type_inference_test.dart │ │ │ │ └── variable_bindings_test.dart │ │ │ └── util │ │ │ │ ├── dependency_walker_test.dart │ │ │ │ ├── libraries_specification_test.dart │ │ │ │ └── stack_checker_test.dart │ │ └── tool │ │ │ └── smoke_test_quick.dart │ ├── _js_interop_checks │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ ├── js_interop_checks.dart │ │ │ └── src │ │ │ │ ├── js_interop.dart │ │ │ │ └── transformations │ │ │ │ ├── export_checker.dart │ │ │ │ ├── export_creator.dart │ │ │ │ ├── js_util_optimizer.dart │ │ │ │ ├── static_interop_class_eraser.dart │ │ │ │ └── static_interop_mock_validator.dart │ │ └── pubspec.yaml │ ├── build_integration │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ └── file_system │ │ │ │ ├── multi_root.dart │ │ │ │ └── single_root.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── file_system │ │ │ ├── multi_root_test.dart │ │ │ └── single_root_test.dart │ ├── compiler │ │ ├── .gitignore │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── dart2js.dart │ │ ├── doc │ │ │ ├── interceptors.md │ │ │ ├── pragmas.md │ │ │ ├── resource_identifiers.md │ │ │ └── sourcemap_extensions.md │ │ ├── lib │ │ │ ├── compiler_api.dart │ │ │ └── src │ │ │ │ ├── README.txt │ │ │ │ ├── closure.dart │ │ │ │ ├── code_organization.md │ │ │ │ ├── colors.dart │ │ │ │ ├── commandline_options.dart │ │ │ │ ├── common.dart │ │ │ │ ├── common │ │ │ │ ├── codegen.dart │ │ │ │ ├── elements.dart │ │ │ │ ├── metrics.dart │ │ │ │ ├── names.dart │ │ │ │ ├── ram_usage.dart │ │ │ │ ├── tasks.dart │ │ │ │ └── work.dart │ │ │ │ ├── compiler.dart │ │ │ │ ├── constants │ │ │ │ ├── constant_system.dart │ │ │ │ └── values.dart │ │ │ │ ├── dart2js.dart │ │ │ │ ├── deferred_load │ │ │ │ ├── algorithm_state.dart │ │ │ │ ├── deferred_load.dart │ │ │ │ ├── entity_data.dart │ │ │ │ ├── entity_data_info.dart │ │ │ │ ├── import_set.dart │ │ │ │ ├── output_unit.dart │ │ │ │ ├── program_split_constraints │ │ │ │ │ ├── builder.dart │ │ │ │ │ ├── nodes.dart │ │ │ │ │ └── parser.dart │ │ │ │ └── work_queue.dart │ │ │ │ ├── diagnostics │ │ │ │ ├── diagnostic_listener.dart │ │ │ │ ├── invariant.dart │ │ │ │ ├── messages.dart │ │ │ │ ├── source_span.dart │ │ │ │ ├── spannable.dart │ │ │ │ └── spannable_with_entity.dart │ │ │ │ ├── dump_info.dart │ │ │ │ ├── elements │ │ │ │ ├── entities.dart │ │ │ │ ├── entity_utils.dart │ │ │ │ ├── indexed.dart │ │ │ │ ├── jumps.dart │ │ │ │ ├── names.dart │ │ │ │ ├── operators.dart │ │ │ │ └── types.dart │ │ │ │ ├── enqueue.dart │ │ │ │ ├── environment.dart │ │ │ │ ├── hash │ │ │ │ └── sha1.dart │ │ │ │ ├── inferrer │ │ │ │ ├── abstract_value_domain.dart │ │ │ │ ├── abstract_value_strategy.dart │ │ │ │ ├── builder.dart │ │ │ │ ├── closure_tracer.dart │ │ │ │ ├── computable.dart │ │ │ │ ├── debug.dart │ │ │ │ ├── engine.dart │ │ │ │ ├── list_tracer.dart │ │ │ │ ├── locals_handler.dart │ │ │ │ ├── map_tracer.dart │ │ │ │ ├── node_tracer.dart │ │ │ │ ├── powersets │ │ │ │ │ ├── powerset_bits.dart │ │ │ │ │ └── powersets.dart │ │ │ │ ├── record_tracer.dart │ │ │ │ ├── set_tracer.dart │ │ │ │ ├── trivial.dart │ │ │ │ ├── type_graph_dump.dart │ │ │ │ ├── type_graph_inferrer.dart │ │ │ │ ├── type_graph_nodes.dart │ │ │ │ ├── type_system.dart │ │ │ │ ├── typemasks │ │ │ │ │ ├── constants.dart │ │ │ │ │ ├── container_type_mask.dart │ │ │ │ │ ├── dictionary_type_mask.dart │ │ │ │ │ ├── flat_type_mask.dart │ │ │ │ │ ├── forwarding_type_mask.dart │ │ │ │ │ ├── map_type_mask.dart │ │ │ │ │ ├── masks.dart │ │ │ │ │ ├── record_type_mask.dart │ │ │ │ │ ├── set_type_mask.dart │ │ │ │ │ ├── type_mask.dart │ │ │ │ │ ├── union_type_mask.dart │ │ │ │ │ └── value_type_mask.dart │ │ │ │ ├── types.dart │ │ │ │ ├── work_queue.dart │ │ │ │ └── wrapped.dart │ │ │ │ ├── inferrer_experimental │ │ │ │ ├── builder.dart │ │ │ │ ├── closure_tracer.dart │ │ │ │ ├── debug.dart │ │ │ │ ├── engine.dart │ │ │ │ ├── list_tracer.dart │ │ │ │ ├── locals_handler.dart │ │ │ │ ├── map_tracer.dart │ │ │ │ ├── node_tracer.dart │ │ │ │ ├── powersets │ │ │ │ │ ├── powerset_bits.dart │ │ │ │ │ └── powersets.dart │ │ │ │ ├── record_tracer.dart │ │ │ │ ├── set_tracer.dart │ │ │ │ ├── trivial.dart │ │ │ │ ├── type_graph_dump.dart │ │ │ │ ├── type_graph_inferrer.dart │ │ │ │ ├── type_graph_nodes.dart │ │ │ │ ├── type_system.dart │ │ │ │ ├── typemasks │ │ │ │ │ ├── constants.dart │ │ │ │ │ ├── container_type_mask.dart │ │ │ │ │ ├── dictionary_type_mask.dart │ │ │ │ │ ├── flat_type_mask.dart │ │ │ │ │ ├── forwarding_type_mask.dart │ │ │ │ │ ├── map_type_mask.dart │ │ │ │ │ ├── masks.dart │ │ │ │ │ ├── record_type_mask.dart │ │ │ │ │ ├── set_type_mask.dart │ │ │ │ │ ├── type_mask.dart │ │ │ │ │ ├── union_type_mask.dart │ │ │ │ │ └── value_type_mask.dart │ │ │ │ ├── types.dart │ │ │ │ ├── work_queue.dart │ │ │ │ └── wrapped.dart │ │ │ │ ├── io │ │ │ │ ├── code_output.dart │ │ │ │ ├── code_output_listener.dart │ │ │ │ ├── kernel_source_information.dart │ │ │ │ ├── location_provider.dart │ │ │ │ ├── mapped_file.dart │ │ │ │ ├── position_information.dart │ │ │ │ ├── source_file.dart │ │ │ │ ├── source_information.dart │ │ │ │ └── source_map_builder.dart │ │ │ │ ├── ir │ │ │ │ ├── annotations.dart │ │ │ │ ├── cached_static_type.dart │ │ │ │ ├── closure.dart │ │ │ │ ├── constants.dart │ │ │ │ ├── element_map.dart │ │ │ │ ├── impact.dart │ │ │ │ ├── impact_data.dart │ │ │ │ ├── modular.dart │ │ │ │ ├── runtime_type_analysis.dart │ │ │ │ ├── scope.dart │ │ │ │ ├── scope_visitor.dart │ │ │ │ ├── static_type.dart │ │ │ │ ├── static_type_base.dart │ │ │ │ ├── static_type_cache.dart │ │ │ │ ├── static_type_provider.dart │ │ │ │ ├── types.dart │ │ │ │ ├── util.dart │ │ │ │ └── visitors.dart │ │ │ │ ├── js │ │ │ │ ├── js.dart │ │ │ │ ├── js_debug.dart │ │ │ │ ├── js_source_mapping.dart │ │ │ │ ├── placeholder_safety.dart │ │ │ │ ├── rewrite_async.dart │ │ │ │ └── size_estimator.dart │ │ │ │ ├── js_backend │ │ │ │ ├── annotations.dart │ │ │ │ ├── backend.dart │ │ │ │ ├── backend_impact.dart │ │ │ │ ├── backend_usage.dart │ │ │ │ ├── checked_mode_helpers.dart │ │ │ │ ├── codegen_inputs.dart │ │ │ │ ├── codegen_listener.dart │ │ │ │ ├── constant_emitter.dart │ │ │ │ ├── custom_elements_analysis.dart │ │ │ │ ├── deferred_holder_expression.dart │ │ │ │ ├── enqueuer.dart │ │ │ │ ├── field_analysis.dart │ │ │ │ ├── field_naming_mixin.dart │ │ │ │ ├── frequency_assignment.dart │ │ │ │ ├── frequency_namer.dart │ │ │ │ ├── impact_transformer.dart │ │ │ │ ├── inferred_data.dart │ │ │ │ ├── interceptor_data.dart │ │ │ │ ├── js_backend.dart │ │ │ │ ├── js_interop_analysis.dart │ │ │ │ ├── minify_namer.dart │ │ │ │ ├── name_sequence.dart │ │ │ │ ├── namer.dart │ │ │ │ ├── namer_names.dart │ │ │ │ ├── native_data.dart │ │ │ │ ├── no_such_method_registry.dart │ │ │ │ ├── records_codegen.dart │ │ │ │ ├── resolution_listener.dart │ │ │ │ ├── runtime_types.dart │ │ │ │ ├── runtime_types_codegen.dart │ │ │ │ ├── runtime_types_new.dart │ │ │ │ ├── runtime_types_resolution.dart │ │ │ │ ├── specialized_checks.dart │ │ │ │ ├── string_abbreviation.dart │ │ │ │ ├── string_reference.dart │ │ │ │ └── type_reference.dart │ │ │ │ ├── js_emitter │ │ │ │ ├── class_stub_generator.dart │ │ │ │ ├── code_emitter_task.dart │ │ │ │ ├── constant_ordering.dart │ │ │ │ ├── headers.dart │ │ │ │ ├── instantiation_stub_generator.dart │ │ │ │ ├── interceptor_stub_generator.dart │ │ │ │ ├── js_emitter.dart │ │ │ │ ├── main_call_stub_generator.dart │ │ │ │ ├── metadata_collector.dart │ │ │ │ ├── model.dart │ │ │ │ ├── native_emitter.dart │ │ │ │ ├── native_generator.dart │ │ │ │ ├── parameter_stub_generator.dart │ │ │ │ ├── program_builder │ │ │ │ │ ├── collector.dart │ │ │ │ │ ├── field_visitor.dart │ │ │ │ │ ├── program_builder.dart │ │ │ │ │ └── registry.dart │ │ │ │ ├── resource_info_emitter.dart │ │ │ │ ├── runtime_type_generator.dart │ │ │ │ ├── sorter.dart │ │ │ │ └── startup_emitter │ │ │ │ │ ├── emitter.dart │ │ │ │ │ ├── fragment_emitter.dart │ │ │ │ │ ├── fragment_merger.dart │ │ │ │ │ └── model_emitter.dart │ │ │ │ ├── js_model │ │ │ │ ├── class_type_variable_access.dart │ │ │ │ ├── closure.dart │ │ │ │ ├── element_map.dart │ │ │ │ ├── element_map_impl.dart │ │ │ │ ├── elements.dart │ │ │ │ ├── env.dart │ │ │ │ ├── js_strategy.dart │ │ │ │ ├── js_to_frontend_map.dart │ │ │ │ ├── js_world.dart │ │ │ │ ├── js_world_builder.dart │ │ │ │ ├── locals.dart │ │ │ │ ├── records.dart │ │ │ │ └── type_recipe.dart │ │ │ │ ├── kernel │ │ │ │ ├── dart2js_target.dart │ │ │ │ ├── element_map.dart │ │ │ │ ├── element_map_impl.dart │ │ │ │ ├── env.dart │ │ │ │ ├── front_end_adapter.dart │ │ │ │ ├── invocation_mirror_constants.dart │ │ │ │ ├── kelements.dart │ │ │ │ ├── kernel_impact.dart │ │ │ │ ├── kernel_strategy.dart │ │ │ │ ├── kernel_world.dart │ │ │ │ ├── native_basic_data.dart │ │ │ │ ├── no_such_method_resolver.dart │ │ │ │ └── transformations │ │ │ │ │ ├── async_lowering.dart │ │ │ │ │ ├── clone_mixin_methods_with_super.dart │ │ │ │ │ ├── factory_specializer.dart │ │ │ │ │ ├── late_lowering.dart │ │ │ │ │ ├── list_factory_specializer.dart │ │ │ │ │ └── lowering.dart │ │ │ │ ├── native │ │ │ │ ├── behavior.dart │ │ │ │ ├── enqueue.dart │ │ │ │ ├── js.dart │ │ │ │ ├── native_throw_behavior.dart │ │ │ │ └── resolver.dart │ │ │ │ ├── null_compiler_output.dart │ │ │ │ ├── options.dart │ │ │ │ ├── ordered_typeset.dart │ │ │ │ ├── phase │ │ │ │ ├── load_kernel.dart │ │ │ │ └── modular_analysis.dart │ │ │ │ ├── resolution │ │ │ │ └── enqueuer.dart │ │ │ │ ├── serialization │ │ │ │ ├── binary_sink.dart │ │ │ │ ├── binary_source.dart │ │ │ │ ├── deferrable.dart │ │ │ │ ├── helpers.dart │ │ │ │ ├── indexed_sink_source.dart │ │ │ │ ├── member_data.dart │ │ │ │ ├── node_indexer.dart │ │ │ │ ├── object_sink.dart │ │ │ │ ├── object_source.dart │ │ │ │ ├── serialization.dart │ │ │ │ ├── sink.dart │ │ │ │ ├── source.dart │ │ │ │ ├── strategies.dart │ │ │ │ ├── tags.dart │ │ │ │ └── task.dart │ │ │ │ ├── source_file_provider.dart │ │ │ │ ├── ssa │ │ │ │ ├── branch_builder.dart │ │ │ │ ├── builder.dart │ │ │ │ ├── codegen.dart │ │ │ │ ├── codegen_helpers.dart │ │ │ │ ├── interceptor_finalizer.dart │ │ │ │ ├── interceptor_simplifier.dart │ │ │ │ ├── invoke_dynamic_specializers.dart │ │ │ │ ├── jump_handler.dart │ │ │ │ ├── late_field_optimizer.dart │ │ │ │ ├── locals_handler.dart │ │ │ │ ├── logging.dart │ │ │ │ ├── loop_handler.dart │ │ │ │ ├── metrics.dart │ │ │ │ ├── nodes.dart │ │ │ │ ├── optimize.dart │ │ │ │ ├── ssa.dart │ │ │ │ ├── string_builder.dart │ │ │ │ ├── switch_continue_analysis.dart │ │ │ │ ├── tracer.dart │ │ │ │ ├── type_builder.dart │ │ │ │ ├── types.dart │ │ │ │ ├── types_propagation.dart │ │ │ │ ├── validate.dart │ │ │ │ ├── value_range_analyzer.dart │ │ │ │ ├── value_set.dart │ │ │ │ └── variable_allocator.dart │ │ │ │ ├── tracer.dart │ │ │ │ ├── universe │ │ │ │ ├── call_structure.dart │ │ │ │ ├── class_hierarchy.dart │ │ │ │ ├── class_set.dart │ │ │ │ ├── codegen_world_builder.dart │ │ │ │ ├── feature.dart │ │ │ │ ├── function_set.dart │ │ │ │ ├── member_hierarchy.dart │ │ │ │ ├── member_usage.dart │ │ │ │ ├── record_shape.dart │ │ │ │ ├── resolution_world_builder.dart │ │ │ │ ├── resource_identifier.dart │ │ │ │ ├── selector.dart │ │ │ │ ├── side_effects.dart │ │ │ │ ├── target_checks.dart │ │ │ │ ├── use.dart │ │ │ │ ├── world_builder.dart │ │ │ │ └── world_impact.dart │ │ │ │ ├── util │ │ │ │ ├── command_line.dart │ │ │ │ ├── diagnostic_helper.dart │ │ │ │ ├── enumset.dart │ │ │ │ ├── maplet.dart │ │ │ │ ├── memory_compiler.dart │ │ │ │ ├── memory_source_file_helper.dart │ │ │ │ ├── output_collector.dart │ │ │ │ ├── setlet.dart │ │ │ │ ├── sink_adapter.dart │ │ │ │ ├── testing.dart │ │ │ │ └── util.dart │ │ │ │ └── world.dart │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── analyses │ │ │ │ ├── analysis_helper.dart │ │ │ │ ├── analyze_test.dart │ │ │ │ ├── api_allowed.json │ │ │ │ ├── api_dynamic_test.dart │ │ │ │ └── static_type_visitor_test.dart │ │ │ ├── analysis_options.yaml │ │ │ ├── annotations │ │ │ │ ├── annotations_test.dart │ │ │ │ └── data │ │ │ │ │ ├── basic.dart │ │ │ │ │ ├── deferred.dart │ │ │ │ │ ├── directives.dart │ │ │ │ │ ├── errors.dart │ │ │ │ │ └── marker.options │ │ │ ├── async_await │ │ │ │ └── async_await_js_transform_test.dart │ │ │ ├── closure │ │ │ │ ├── closure_test.dart │ │ │ │ ├── data │ │ │ │ │ ├── captured_variable.dart │ │ │ │ │ ├── generic.dart │ │ │ │ │ ├── instantiation.dart │ │ │ │ │ ├── instantiation1.dart │ │ │ │ │ ├── instantiation2.dart │ │ │ │ │ ├── instantiation3.dart │ │ │ │ │ ├── instantiation4.dart │ │ │ │ │ ├── list_literal_class.dart │ │ │ │ │ ├── list_literal_method.dart │ │ │ │ │ ├── list_literal_untested_class.dart │ │ │ │ │ ├── list_literal_untested_method.dart │ │ │ │ │ ├── map_literal_class.dart │ │ │ │ │ ├── map_literal_method.dart │ │ │ │ │ ├── map_literal_untested_class.dart │ │ │ │ │ ├── map_literal_untested_method.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── mixed.dart │ │ │ │ │ ├── mutations.dart │ │ │ │ │ ├── nested_closures.dart │ │ │ │ │ ├── parameter_in_try.dart │ │ │ │ │ ├── test_type_class.dart │ │ │ │ │ ├── test_type_method.dart │ │ │ │ │ ├── two_local_functions.dart │ │ │ │ │ ├── type_annotations_class.dart │ │ │ │ │ ├── type_annotations_method.dart │ │ │ │ │ ├── type_arguments_class.dart │ │ │ │ │ ├── type_arguments_method.dart │ │ │ │ │ └── type_variables.dart │ │ │ │ └── show.dart │ │ │ ├── codegen │ │ │ │ ├── arithmetic_simplification_test.dart │ │ │ │ ├── array_static_intercept_test.dart │ │ │ │ ├── bitops1_test.dart │ │ │ │ ├── bitops2_test.dart │ │ │ │ ├── builtin_equals_test.dart │ │ │ │ ├── builtin_interceptor_test.dart │ │ │ │ ├── class_codegen2_test.dart │ │ │ │ ├── class_codegen_test.dart │ │ │ │ ├── class_order_test.dart │ │ │ │ ├── closure_call_of_static_reduction_test.dart │ │ │ │ ├── closure_codegen_test.dart │ │ │ │ ├── code_motion_test.dart │ │ │ │ ├── codegen_2_shard0_test.dart │ │ │ │ ├── codegen_2_shard1_test.dart │ │ │ │ ├── codegen_shard0_test.dart │ │ │ │ ├── codegen_shard1_test.dart │ │ │ │ ├── codegen_test_helper.dart │ │ │ │ ├── constant_folding_codeUnitAt_test.dart │ │ │ │ ├── constant_folding_test.dart │ │ │ │ ├── constant_namer_test.dart │ │ │ │ ├── data │ │ │ │ │ ├── array_add.dart │ │ │ │ │ ├── codeUnitAt_folding.dart │ │ │ │ │ ├── indexer_constant_folding.dart │ │ │ │ │ ├── inlining_annotations.dart │ │ │ │ │ ├── late_field_read_check_optimization.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── shift_right_unsigned.dart │ │ │ │ │ ├── tdiv1.dart │ │ │ │ │ └── unused_empty_map.dart │ │ │ │ ├── data_2 │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── tdiv1.dart │ │ │ │ │ └── unused_empty_map.dart │ │ │ │ ├── dead_code_test.dart │ │ │ │ ├── dead_phi_eliminator_test.dart │ │ │ │ ├── declare_once_test.dart │ │ │ │ ├── elide_callthrough_stub_test.dart │ │ │ │ ├── emit_const_fields_test.dart │ │ │ │ ├── equals_test.dart │ │ │ │ ├── expect_annotations2_test.dart │ │ │ │ ├── expect_annotations_test.dart │ │ │ │ ├── field_codegen_test.dart │ │ │ │ ├── field_update_test.dart │ │ │ │ ├── for_in_test.dart │ │ │ │ ├── forloop_box_test.dart │ │ │ │ ├── generate_at_use_site_test.dart │ │ │ │ ├── generic_method_test.dart │ │ │ │ ├── gvn_test.dart │ │ │ │ ├── identity_test.dart │ │ │ │ ├── if_do_while_test.dart │ │ │ │ ├── interceptor_almost_constant_test.dart │ │ │ │ ├── interceptor_test.dart │ │ │ │ ├── interpolation_folding_test.dart │ │ │ │ ├── inverse_operator_test.dart │ │ │ │ ├── is_function_test.dart │ │ │ │ ├── is_inference2_test.dart │ │ │ │ ├── is_inference_test.dart │ │ │ │ ├── jsarray_indexof_test.dart │ │ │ │ ├── late_field_redundancy_test.dart │ │ │ │ ├── late_field_test.dart │ │ │ │ ├── licm_test.dart │ │ │ │ ├── list_tracer_length_test.dart │ │ │ │ ├── list_tracer_node_type_test.dart │ │ │ │ ├── literal_list_test.dart │ │ │ │ ├── literal_map_test.dart │ │ │ │ ├── load_elimination_test.dart │ │ │ │ ├── logical_expression_test.dart │ │ │ │ ├── loop_test.dart │ │ │ │ ├── minify_many_locals_test.dart │ │ │ │ ├── model_data │ │ │ │ │ ├── capture.dart │ │ │ │ │ ├── constant_folding.dart │ │ │ │ │ ├── constructors.dart │ │ │ │ │ ├── dynamic_get.dart │ │ │ │ │ ├── dynamic_set.dart │ │ │ │ │ ├── dynamic_set_unread.dart │ │ │ │ │ ├── effectively_constant_fields.dart │ │ │ │ │ ├── effectively_constant_state.dart │ │ │ │ │ ├── field_set.dart │ │ │ │ │ ├── fields.dart │ │ │ │ │ ├── instance_method_parameters.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── native.dart │ │ │ │ │ ├── native_inlined.dart │ │ │ │ │ ├── native_unused_parameters.dart │ │ │ │ │ ├── regress_36222.dart │ │ │ │ │ ├── static_method_parameters.dart │ │ │ │ │ └── static_tearoff.dart │ │ │ │ ├── model_test.dart │ │ │ │ ├── modulo_remainder_test.dart │ │ │ │ ├── negation_shift_regression_test.dart │ │ │ │ ├── new_rti_is_test.dart │ │ │ │ ├── no_constructor_body_test.dart │ │ │ │ ├── no_duplicate_constructor_body2_test.dart │ │ │ │ ├── no_duplicate_constructor_body_test.dart │ │ │ │ ├── no_duplicate_stub_test.dart │ │ │ │ ├── null_check_test.dart │ │ │ │ ├── null_type_test.dart │ │ │ │ ├── number_output_test.dart │ │ │ │ ├── parameter_phi_elimination_test.dart │ │ │ │ ├── pragma_annotations_test.dart │ │ │ │ ├── pretty_parameter_test.dart │ │ │ │ ├── redundant_phi_eliminator_test.dart │ │ │ │ ├── regress_10231_test.dart │ │ │ │ ├── shift_right_unsigned_test.dart │ │ │ │ ├── side_effect_tdiv_regression_test.dart │ │ │ │ ├── simple_inferrer_relations_test.dart │ │ │ │ ├── ssa_phi_codegen_test.dart │ │ │ │ ├── static_closure_test.dart │ │ │ │ ├── strength_eq_test.dart │ │ │ │ ├── string_abbreviation_test.dart │ │ │ │ ├── string_add_test.dart │ │ │ │ ├── string_escapes_test.dart │ │ │ │ ├── string_interpolation_test.dart │ │ │ │ ├── string_reference_test.dart │ │ │ │ ├── switch_empty_default_test.dart │ │ │ │ ├── tdiv_test.dart │ │ │ │ ├── top_level_closure_tree_shake_test.dart │ │ │ │ ├── tree_shaking_test.dart │ │ │ │ ├── trust_type_annotations2_test.dart │ │ │ │ ├── trust_type_annotations_test.dart │ │ │ │ ├── type_guard_unuser_test.dart │ │ │ │ ├── type_inference2_test.dart │ │ │ │ ├── type_inference3_test.dart │ │ │ │ ├── type_inference4_test.dart │ │ │ │ ├── type_inference5_test.dart │ │ │ │ ├── type_inference8_test.dart │ │ │ │ ├── types_of_captured_variables_test.dart │ │ │ │ ├── unused_empty_map_test.dart │ │ │ │ ├── use_checks_test.dart │ │ │ │ ├── use_strict_test.dart │ │ │ │ ├── value_range2_test.dart │ │ │ │ ├── value_range3_test.dart │ │ │ │ ├── value_range_test.dart │ │ │ │ └── variance_subtype_cast_test.dart │ │ │ ├── codesize │ │ │ │ ├── OWNERS │ │ │ │ └── swarm │ │ │ │ │ ├── App.dart │ │ │ │ │ ├── BiIterator.dart │ │ │ │ │ ├── CSS.dart │ │ │ │ │ ├── CannedData.dart │ │ │ │ │ ├── ConfigHintDialog.dart │ │ │ │ │ ├── Dart_Logo_21.png │ │ │ │ │ ├── DataSource.dart │ │ │ │ │ ├── Decoder.dart │ │ │ │ │ ├── HelpDialog.dart │ │ │ │ │ ├── README │ │ │ │ │ ├── SwarmApp.dart │ │ │ │ │ ├── SwarmState.dart │ │ │ │ │ ├── SwarmViews.dart │ │ │ │ │ ├── UIState.dart │ │ │ │ │ ├── Views.dart │ │ │ │ │ ├── analysis_options.yaml │ │ │ │ │ ├── appengine │ │ │ │ │ ├── app.yaml │ │ │ │ │ ├── cron.yaml │ │ │ │ │ ├── dev.html │ │ │ │ │ ├── encoder.py │ │ │ │ │ ├── index.yaml │ │ │ │ │ ├── login.html │ │ │ │ │ ├── main.py │ │ │ │ │ ├── queue.yaml │ │ │ │ │ ├── top.html │ │ │ │ │ └── upload.html │ │ │ │ │ ├── back-21.png │ │ │ │ │ ├── buildapp.py │ │ │ │ │ ├── cacheimages.py │ │ │ │ │ ├── data │ │ │ │ │ ├── Test0_0_0.html │ │ │ │ │ ├── Test0_0_1.html │ │ │ │ │ ├── Test0_0_2.html │ │ │ │ │ ├── Test0_0_3.html │ │ │ │ │ ├── Test0_0_4.html │ │ │ │ │ ├── Test0_0_5.html │ │ │ │ │ ├── Test0_0_6.html │ │ │ │ │ ├── Test0_0_7.html │ │ │ │ │ ├── Test0_1_0.html │ │ │ │ │ ├── Test0_1_1.html │ │ │ │ │ ├── Test0_1_2.html │ │ │ │ │ ├── Test0_1_3.html │ │ │ │ │ ├── Test0_1_4.html │ │ │ │ │ ├── Test0_1_5.html │ │ │ │ │ ├── Test0_1_6.html │ │ │ │ │ ├── Test0_1_7.html │ │ │ │ │ ├── Test0_2_0.html │ │ │ │ │ ├── Test0_2_1.html │ │ │ │ │ ├── Test0_2_2.html │ │ │ │ │ ├── Test0_2_3.html │ │ │ │ │ ├── Test0_2_4.html │ │ │ │ │ ├── Test0_2_5.html │ │ │ │ │ ├── Test0_2_6.html │ │ │ │ │ ├── Test0_2_7.html │ │ │ │ │ ├── Test0_3_0.html │ │ │ │ │ ├── Test0_3_1.html │ │ │ │ │ ├── Test0_3_2.html │ │ │ │ │ ├── Test0_3_3.html │ │ │ │ │ ├── Test0_3_4.html │ │ │ │ │ ├── Test0_3_5.html │ │ │ │ │ ├── Test0_3_6.html │ │ │ │ │ ├── Test0_3_7.html │ │ │ │ │ ├── Test1_0_0.html │ │ │ │ │ ├── Test1_0_1.html │ │ │ │ │ ├── Test1_0_2.html │ │ │ │ │ ├── Test1_0_3.html │ │ │ │ │ ├── Test1_0_4.html │ │ │ │ │ ├── Test1_0_5.html │ │ │ │ │ ├── Test1_0_6.html │ │ │ │ │ ├── Test1_0_7.html │ │ │ │ │ ├── Test1_1_0.html │ │ │ │ │ ├── Test1_1_1.html │ │ │ │ │ ├── Test1_1_2.html │ │ │ │ │ ├── Test1_1_3.html │ │ │ │ │ ├── Test1_1_4.html │ │ │ │ │ ├── Test1_1_5.html │ │ │ │ │ ├── Test1_1_6.html │ │ │ │ │ ├── Test1_1_7.html │ │ │ │ │ ├── Test1_2_0.html │ │ │ │ │ ├── Test1_2_1.html │ │ │ │ │ ├── Test1_2_2.html │ │ │ │ │ ├── Test1_2_3.html │ │ │ │ │ ├── Test1_2_4.html │ │ │ │ │ ├── Test1_2_5.html │ │ │ │ │ ├── Test1_2_6.html │ │ │ │ │ ├── Test1_2_7.html │ │ │ │ │ ├── Test1_3_0.html │ │ │ │ │ ├── Test1_3_1.html │ │ │ │ │ ├── Test1_3_2.html │ │ │ │ │ ├── Test1_3_3.html │ │ │ │ │ ├── Test1_3_4.html │ │ │ │ │ ├── Test1_3_5.html │ │ │ │ │ ├── Test1_3_6.html │ │ │ │ │ ├── Test1_3_7.html │ │ │ │ │ ├── Test2_0_0.html │ │ │ │ │ ├── Test2_0_1.html │ │ │ │ │ ├── Test2_0_2.html │ │ │ │ │ ├── Test2_0_3.html │ │ │ │ │ ├── Test2_0_4.html │ │ │ │ │ ├── Test2_0_5.html │ │ │ │ │ ├── Test2_0_6.html │ │ │ │ │ ├── Test2_0_7.html │ │ │ │ │ ├── Test2_1_0.html │ │ │ │ │ ├── Test2_1_1.html │ │ │ │ │ ├── Test2_1_2.html │ │ │ │ │ ├── Test2_1_3.html │ │ │ │ │ ├── Test2_1_4.html │ │ │ │ │ ├── Test2_1_5.html │ │ │ │ │ ├── Test2_1_6.html │ │ │ │ │ ├── Test2_1_7.html │ │ │ │ │ ├── Test2_2_0.html │ │ │ │ │ ├── Test2_2_1.html │ │ │ │ │ ├── Test2_2_2.html │ │ │ │ │ ├── Test2_2_3.html │ │ │ │ │ ├── Test2_2_4.html │ │ │ │ │ ├── Test2_2_5.html │ │ │ │ │ ├── Test2_2_6.html │ │ │ │ │ ├── Test2_2_7.html │ │ │ │ │ ├── Test2_3_0.html │ │ │ │ │ ├── Test2_3_1.html │ │ │ │ │ ├── Test2_3_2.html │ │ │ │ │ ├── Test2_3_3.html │ │ │ │ │ ├── Test2_3_4.html │ │ │ │ │ ├── Test2_3_5.html │ │ │ │ │ ├── Test2_3_6.html │ │ │ │ │ ├── Test2_3_7.html │ │ │ │ │ └── user.data │ │ │ │ │ ├── externallink.svg │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── favicon128.png │ │ │ │ │ ├── gen_manifest.py │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── lefttriangle.svg │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── pigeons-jumpinjimmyjava-white90pct-q70.jpg │ │ │ │ │ ├── pubspec.yaml │ │ │ │ │ ├── refresh-21.png │ │ │ │ │ ├── righttriangle.svg │ │ │ │ │ ├── settings-21.png │ │ │ │ │ ├── sliderarrow.svg │ │ │ │ │ ├── swarm-dev.pem │ │ │ │ │ ├── swarm.css │ │ │ │ │ ├── swarm.dart │ │ │ │ │ ├── swarm.html │ │ │ │ │ ├── swarm.scss │ │ │ │ │ ├── swarm_ui_lib │ │ │ │ │ ├── base │ │ │ │ │ │ ├── AnimationScheduler.dart │ │ │ │ │ │ ├── Device.dart │ │ │ │ │ │ ├── DomWrapper.dart │ │ │ │ │ │ ├── Env.dart │ │ │ │ │ │ ├── Size.dart │ │ │ │ │ │ └── base.dart │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── GridLayout.dart │ │ │ │ │ │ ├── GridLayoutParams.dart │ │ │ │ │ │ ├── GridLayoutParser.dart │ │ │ │ │ │ ├── GridTracks.dart │ │ │ │ │ │ ├── SizingFunctions.dart │ │ │ │ │ │ ├── ViewLayout.dart │ │ │ │ │ │ └── layout.dart │ │ │ │ │ ├── observable │ │ │ │ │ │ ├── ChangeEvent.dart │ │ │ │ │ │ ├── EventBatch.dart │ │ │ │ │ │ └── observable.dart │ │ │ │ │ ├── touch │ │ │ │ │ │ ├── BezierPhysics.dart │ │ │ │ │ │ ├── ClickBuster.dart │ │ │ │ │ │ ├── EventUtil.dart │ │ │ │ │ │ ├── FxUtil.dart │ │ │ │ │ │ ├── Geometry.dart │ │ │ │ │ │ ├── InfiniteScroller.dart │ │ │ │ │ │ ├── Math.dart │ │ │ │ │ │ ├── Momentum.dart │ │ │ │ │ │ ├── ScrollWatcher.dart │ │ │ │ │ │ ├── Scrollbar.dart │ │ │ │ │ │ ├── Scroller.dart │ │ │ │ │ │ ├── TimeUtil.dart │ │ │ │ │ │ ├── TouchHandler.dart │ │ │ │ │ │ ├── TouchUtil.dart │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ └── touch.css │ │ │ │ │ │ └── touch.dart │ │ │ │ │ ├── util │ │ │ │ │ │ ├── CollectionUtils.dart │ │ │ │ │ │ ├── DateUtils.dart │ │ │ │ │ │ ├── StringUtils.dart │ │ │ │ │ │ ├── Uri.dart │ │ │ │ │ │ └── utilslib.dart │ │ │ │ │ └── view │ │ │ │ │ │ ├── CompositeView.dart │ │ │ │ │ │ ├── ConveyorView.dart │ │ │ │ │ │ ├── MeasureText.dart │ │ │ │ │ │ ├── PagedViews.dart │ │ │ │ │ │ ├── SliderMenu.dart │ │ │ │ │ │ ├── resources │ │ │ │ │ │ └── view.css │ │ │ │ │ │ └── view.dart │ │ │ │ │ ├── swarmlib.dart │ │ │ │ │ └── update.py │ │ │ ├── custom_split │ │ │ │ ├── constraint_harness.dart │ │ │ │ ├── custom_split_test.dart │ │ │ │ └── data │ │ │ │ │ ├── diamond │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── shared.dart │ │ │ │ │ ├── step1.dart │ │ │ │ │ ├── step2a.dart │ │ │ │ │ ├── step2b.dart │ │ │ │ │ └── step3.dart │ │ │ │ │ ├── diamond_and │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── shared.dart │ │ │ │ │ ├── step1.dart │ │ │ │ │ ├── step2a.dart │ │ │ │ │ ├── step2b.dart │ │ │ │ │ └── step3.dart │ │ │ │ │ ├── diamond_fuse │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── shared.dart │ │ │ │ │ ├── step1.dart │ │ │ │ │ ├── step2a.dart │ │ │ │ │ ├── step2b.dart │ │ │ │ │ └── step3.dart │ │ │ │ │ ├── diamond_or │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── shared.dart │ │ │ │ │ ├── step1.dart │ │ │ │ │ ├── step2a.dart │ │ │ │ │ ├── step2b.dart │ │ │ │ │ └── step3.dart │ │ │ │ │ ├── fuse_with_and │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── lib1.dart │ │ │ │ │ ├── lib2.dart │ │ │ │ │ ├── lib3.dart │ │ │ │ │ ├── lib4.dart │ │ │ │ │ ├── libImport.dart │ │ │ │ │ ├── lib_000_1.dart │ │ │ │ │ ├── lib_001_0.dart │ │ │ │ │ ├── lib_010_0.dart │ │ │ │ │ ├── lib_100_0.dart │ │ │ │ │ └── main.dart │ │ │ │ │ ├── fuse_with_or │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── lib1.dart │ │ │ │ │ ├── lib2.dart │ │ │ │ │ ├── lib3.dart │ │ │ │ │ ├── lib4.dart │ │ │ │ │ ├── libImport.dart │ │ │ │ │ ├── lib_000_1.dart │ │ │ │ │ ├── lib_001_0.dart │ │ │ │ │ ├── lib_010_0.dart │ │ │ │ │ ├── lib_100_0.dart │ │ │ │ │ └── main.dart │ │ │ │ │ ├── just_fuse │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── lib1.dart │ │ │ │ │ ├── lib2.dart │ │ │ │ │ ├── lib3.dart │ │ │ │ │ ├── lib4.dart │ │ │ │ │ ├── libImport.dart │ │ │ │ │ ├── lib_000_1.dart │ │ │ │ │ ├── lib_001_0.dart │ │ │ │ │ ├── lib_010_0.dart │ │ │ │ │ ├── lib_100_0.dart │ │ │ │ │ └── main.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── two_branch │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── shared.dart │ │ │ │ │ ├── step1.dart │ │ │ │ │ ├── step2a.dart │ │ │ │ │ └── step2b.dart │ │ │ │ │ └── two_step │ │ │ │ │ ├── constraints.dart │ │ │ │ │ ├── constraints.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── shared.dart │ │ │ │ │ ├── step1.dart │ │ │ │ │ ├── step2.dart │ │ │ │ │ └── step3.dart │ │ │ ├── deferred │ │ │ │ ├── closures_test.dart │ │ │ │ ├── constant_emission_test_helper.dart │ │ │ │ ├── data │ │ │ │ │ ├── deferred_helper.dart │ │ │ │ │ └── deferred_lib.dart │ │ │ │ ├── deferred_constant3_test.dart │ │ │ │ ├── dont_inline_deferred_constants_test.dart │ │ │ │ ├── dont_inline_deferred_globals_test.dart │ │ │ │ ├── emit_type_checks_test.dart │ │ │ │ ├── follow_constant_dependencies_test.dart │ │ │ │ ├── follow_implicit_super_regression_test.dart │ │ │ │ ├── inline_restrictions_test.dart │ │ │ │ ├── load_graph_segmentation2_test.dart │ │ │ │ ├── load_graph_segmentation_test.dart │ │ │ │ ├── load_mapping_test.dart │ │ │ │ ├── not_in_main_test.dart │ │ │ │ └── unneeded_part_js_test.dart │ │ │ ├── deferred_loading │ │ │ │ ├── data │ │ │ │ │ ├── basic_deferred │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── components │ │ │ │ │ │ ├── libA.dart │ │ │ │ │ │ ├── libB.dart │ │ │ │ │ │ ├── libBCDE.dart │ │ │ │ │ │ ├── libC.dart │ │ │ │ │ │ ├── libD.dart │ │ │ │ │ │ ├── libE.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_class │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_constant1 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ ├── lib3.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_constant2 │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_constant3 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── shared.dart │ │ │ │ │ ├── deferred_fail_and_retry │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_function │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_overlapping │ │ │ │ │ │ ├── deferred_overlapping_lib3.dart │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_typed_map │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_typedef │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── dont_inline_deferred_constants │ │ │ │ │ │ ├── exported_main.dart │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── dont_inline_deferred_global │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── follow_implicit_super_regression_test │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── future_or │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── instantiation0 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── instantiation1 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── instantiation2 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── instantiation3 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── instantiation4 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── instantiation5 │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── interface_type_variable │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── lazy_types │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ ├── liba.dart │ │ │ │ │ │ ├── libb.dart │ │ │ │ │ │ ├── libc.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── many_parts │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ ├── lib3.dart │ │ │ │ │ │ ├── lib4.dart │ │ │ │ │ │ ├── lib5.dart │ │ │ │ │ │ ├── libB.dart │ │ │ │ │ │ ├── lib_000_01.dart │ │ │ │ │ │ ├── lib_000_10.dart │ │ │ │ │ │ ├── lib_001_00.dart │ │ │ │ │ │ ├── lib_010_00.dart │ │ │ │ │ │ ├── lib_100_00.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── regress_35311 │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── regress_43055 │ │ │ │ │ │ ├── libb.dart │ │ │ │ │ │ ├── libc.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── regress_49851 │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── shadowed_types │ │ │ │ │ │ ├── lib_shared.dart │ │ │ │ │ │ ├── liba.dart │ │ │ │ │ │ ├── libb.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── shared_constant │ │ │ │ │ │ ├── lib_a.dart │ │ │ │ │ │ ├── lib_b.dart │ │ │ │ │ │ ├── lib_c.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── shared.dart │ │ │ │ │ ├── static_separate │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── type_argument_dependency │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── type_arguments │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ ├── lib3.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ └── uninstantiated_type_variable │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ ├── deferred_loading_test.dart │ │ │ │ └── deferred_loading_test_helper.dart │ │ │ ├── dump_info │ │ │ │ ├── data │ │ │ │ │ ├── closures.dart │ │ │ │ │ ├── deferred │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── deferred_future │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── js_members.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ └── members.dart │ │ │ │ ├── data_new │ │ │ │ │ ├── marker.options │ │ │ │ │ └── mixin_with_tearoff_test.dart │ │ │ │ ├── dump_info_new_regression_test.dart │ │ │ │ ├── dump_info_new_test.dart │ │ │ │ └── dump_info_test.dart │ │ │ ├── end_to_end │ │ │ │ ├── all_native_test.dart │ │ │ │ ├── command_line_split_test.dart │ │ │ │ ├── command_line_test.dart │ │ │ │ ├── dart2js_batch2_test.dart │ │ │ │ ├── dart2js_batch_test.dart │ │ │ │ ├── data │ │ │ │ │ ├── dart2js_batch2_run.dart │ │ │ │ │ ├── exit_code_helper.dart │ │ │ │ │ └── hello_world.dart │ │ │ │ ├── dill_loader_test.dart │ │ │ │ ├── dump_info2_test.dart │ │ │ │ ├── dump_info_test.dart │ │ │ │ ├── exit_code_test.dart │ │ │ │ ├── feature_options_test.dart │ │ │ │ ├── launch_helper.dart │ │ │ │ ├── modular_loader_test.dart │ │ │ │ ├── no_platform_test.dart │ │ │ │ ├── output_type_test.dart │ │ │ │ ├── trim_component_test.dart │ │ │ │ └── user_crash_test.dart │ │ │ ├── equivalence │ │ │ │ ├── check_functions.dart │ │ │ │ ├── check_helpers.dart │ │ │ │ ├── id_equivalence.dart │ │ │ │ ├── id_equivalence_helper.dart │ │ │ │ ├── id_testing_test.dart │ │ │ │ └── show_helper.dart │ │ │ ├── field_analysis │ │ │ │ ├── jdata │ │ │ │ │ ├── constant_fields.dart │ │ │ │ │ ├── dynamic_set.dart │ │ │ │ │ ├── effectively_constant_state.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── multi_initializers.dart │ │ │ │ │ ├── optional_parameters.dart │ │ │ │ │ ├── regress_36222.dart │ │ │ │ │ ├── simple_initializers.dart │ │ │ │ │ ├── static_initializers.dart │ │ │ │ │ └── unused_constructors.dart │ │ │ │ ├── jfield_analysis_test.dart │ │ │ │ ├── kdata │ │ │ │ │ ├── constant_fields.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── multi_initializers.dart │ │ │ │ │ ├── optional_parameters.dart │ │ │ │ │ ├── regress_36222.dart │ │ │ │ │ ├── side_effects.dart │ │ │ │ │ ├── simple_initializers.dart │ │ │ │ │ └── static_initializers.dart │ │ │ │ └── kfield_analysis_test.dart │ │ │ ├── generic_methods │ │ │ │ ├── function_type_variable_test.dart │ │ │ │ ├── generic_method_test.dart │ │ │ │ ├── generic_method_type_test.dart │ │ │ │ ├── instantiation_stub_test.dart │ │ │ │ └── world_test.dart │ │ │ ├── helpers │ │ │ │ ├── args_helper.dart │ │ │ │ ├── compiler_helper.dart │ │ │ │ ├── d8_helper.dart │ │ │ │ ├── element_lookup.dart │ │ │ │ ├── ir_types.dart │ │ │ │ ├── link_helper.dart │ │ │ │ ├── program_lookup.dart │ │ │ │ ├── shared_helper.dart │ │ │ │ ├── text_helpers.dart │ │ │ │ └── type_test_helper.dart │ │ │ ├── impact │ │ │ │ ├── data │ │ │ │ │ ├── as.dart │ │ │ │ │ ├── async.dart │ │ │ │ │ ├── classes.dart │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── constructors.dart │ │ │ │ │ ├── effectively_final.dart │ │ │ │ │ ├── exact.dart │ │ │ │ │ ├── expressions.dart │ │ │ │ │ ├── extract_type_arguments.dart │ │ │ │ │ ├── future_or.dart │ │ │ │ │ ├── initializers.dart │ │ │ │ │ ├── injected_cast.dart │ │ │ │ │ ├── invokes.dart │ │ │ │ │ ├── issue230108748.dart │ │ │ │ │ ├── issue48304.dart │ │ │ │ │ ├── jsinterop.dart │ │ │ │ │ ├── jsinterop_setter1.dart │ │ │ │ │ ├── jsinterop_setter2.dart │ │ │ │ │ ├── literals.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── native.dart │ │ │ │ │ ├── promotion.dart │ │ │ │ │ ├── runtime_type.dart │ │ │ │ │ ├── statements.dart │ │ │ │ │ └── this.dart │ │ │ │ └── impact_test.dart │ │ │ ├── inference │ │ │ │ ├── callers │ │ │ │ │ ├── field_access.dart │ │ │ │ │ └── marker.options │ │ │ │ ├── callers_test.dart │ │ │ │ ├── data │ │ │ │ │ ├── abstract_method.dart │ │ │ │ │ ├── and_or.dart │ │ │ │ │ ├── as.dart │ │ │ │ │ ├── assert.dart │ │ │ │ │ ├── assert_ea.dart │ │ │ │ │ ├── assert_initializer.dart │ │ │ │ │ ├── assert_initializer_ea.dart │ │ │ │ │ ├── assert_message_throw.dart │ │ │ │ │ ├── assert_message_throw_ea.dart │ │ │ │ │ ├── assign_op.dart │ │ │ │ │ ├── async_marker.dart │ │ │ │ │ ├── await.dart │ │ │ │ │ ├── break_continue.dart │ │ │ │ │ ├── call_in_loop.dart │ │ │ │ │ ├── call_method_function_typed_value.dart │ │ │ │ │ ├── call_site.dart │ │ │ │ │ ├── catch.dart │ │ │ │ │ ├── closure.dart │ │ │ │ │ ├── closure2.dart │ │ │ │ │ ├── closure_tracer.dart │ │ │ │ │ ├── closure_tracer_28919.dart │ │ │ │ │ ├── closurization_instance.dart │ │ │ │ │ ├── closurization_instance_call.dart │ │ │ │ │ ├── closurization_local_call.dart │ │ │ │ │ ├── closurization_static.dart │ │ │ │ │ ├── closurization_static_call.dart │ │ │ │ │ ├── conditional.dart │ │ │ │ │ ├── const_closure.dart │ │ │ │ │ ├── const_closure2.dart │ │ │ │ │ ├── const_closure3.dart │ │ │ │ │ ├── const_closure4.dart │ │ │ │ │ ├── const_closure5.dart │ │ │ │ │ ├── const_closure_default.dart │ │ │ │ │ ├── container_mask_equal.dart │ │ │ │ │ ├── default_value.dart │ │ │ │ │ ├── deferred_load.dart │ │ │ │ │ ├── deferred_load_get.dart │ │ │ │ │ ├── dictionary_types.dart │ │ │ │ │ ├── do.dart │ │ │ │ │ ├── enum.dart │ │ │ │ │ ├── expose_this.dart │ │ │ │ │ ├── expose_this_closure.dart │ │ │ │ │ ├── expose_this_field.dart │ │ │ │ │ ├── expose_this_mask.dart │ │ │ │ │ ├── expose_this_super.dart │ │ │ │ │ ├── factory.dart │ │ │ │ │ ├── field_type.dart │ │ │ │ │ ├── fields.dart │ │ │ │ │ ├── final_field.dart │ │ │ │ │ ├── final_field2.dart │ │ │ │ │ ├── final_field3.dart │ │ │ │ │ ├── finalized_type_variable.dart │ │ │ │ │ ├── for.dart │ │ │ │ │ ├── for_in.dart │ │ │ │ │ ├── foreign.dart │ │ │ │ │ ├── general.dart │ │ │ │ │ ├── general6.dart │ │ │ │ │ ├── general7.dart │ │ │ │ │ ├── general7_ea.dart │ │ │ │ │ ├── general8a.dart │ │ │ │ │ ├── general8b.dart │ │ │ │ │ ├── global_field_closure.dart │ │ │ │ │ ├── global_field_closure2.dart │ │ │ │ │ ├── if.dart │ │ │ │ │ ├── if_null.dart │ │ │ │ │ ├── index.dart │ │ │ │ │ ├── index_call.dart │ │ │ │ │ ├── index_postfix.dart │ │ │ │ │ ├── index_set.dart │ │ │ │ │ ├── init_get.dart │ │ │ │ │ ├── initializer.dart │ │ │ │ │ ├── instance.dart │ │ │ │ │ ├── issue13354.dart │ │ │ │ │ ├── issue48304.dart │ │ │ │ │ ├── issue_46770.dart │ │ │ │ │ ├── issue_48571.dart │ │ │ │ │ ├── js_interop.dart │ │ │ │ │ ├── late_field.dart │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── list2.dart │ │ │ │ │ ├── list_huge.dart │ │ │ │ │ ├── list_js.dart │ │ │ │ │ ├── list_tracer2.dart │ │ │ │ │ ├── list_tracer3.dart │ │ │ │ │ ├── list_tracer_typed_data_length.dart │ │ │ │ │ ├── local_functions.dart │ │ │ │ │ ├── local_functions_call.dart │ │ │ │ │ ├── locals.dart │ │ │ │ │ ├── locals_trust.dart │ │ │ │ │ ├── logical.dart │ │ │ │ │ ├── logical_if.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ ├── map_tracer_const.dart │ │ │ │ │ ├── map_tracer_keys.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── mixin_constructor_default_parameter_values │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── narrowing.dart │ │ │ │ │ ├── native.dart │ │ │ │ │ ├── native2.dart │ │ │ │ │ ├── native3.dart │ │ │ │ │ ├── new.dart │ │ │ │ │ ├── no_such_method.dart │ │ │ │ │ ├── no_such_method1.dart │ │ │ │ │ ├── no_such_method2.dart │ │ │ │ │ ├── no_such_method3.dart │ │ │ │ │ ├── no_such_method4.dart │ │ │ │ │ ├── non_null.dart │ │ │ │ │ ├── null.dart │ │ │ │ │ ├── optimizer_hints.dart │ │ │ │ │ ├── parameters_trust.dart │ │ │ │ │ ├── postfix.dart │ │ │ │ │ ├── postfix_prefix.dart │ │ │ │ │ ├── prefix.dart │ │ │ │ │ ├── record_1.dart │ │ │ │ │ ├── record_2.dart │ │ │ │ │ ├── record_3.dart │ │ │ │ │ ├── record_4.dart │ │ │ │ │ ├── refine_captured_locals.dart │ │ │ │ │ ├── refine_locals.dart │ │ │ │ │ ├── refine_order.dart │ │ │ │ │ ├── return.dart │ │ │ │ │ ├── shift_right_unsigned.dart │ │ │ │ │ ├── simple.dart │ │ │ │ │ ├── static.dart │ │ │ │ │ ├── static_get.dart │ │ │ │ │ ├── static_set.dart │ │ │ │ │ ├── static_type.dart │ │ │ │ │ ├── super_get.dart │ │ │ │ │ ├── super_invoke.dart │ │ │ │ │ ├── super_set.dart │ │ │ │ │ ├── switch.dart │ │ │ │ │ ├── switch1.dart │ │ │ │ │ ├── switch2.dart │ │ │ │ │ ├── switch5.dart │ │ │ │ │ ├── switch6.dart │ │ │ │ │ ├── throw.dart │ │ │ │ │ ├── try.dart │ │ │ │ │ ├── try_catch.dart │ │ │ │ │ ├── type_literal.dart │ │ │ │ │ ├── unregister_call.dart │ │ │ │ │ ├── use_static_types.dart │ │ │ │ │ ├── while.dart │ │ │ │ │ └── yield.dart │ │ │ │ ├── inference0_test.dart │ │ │ │ ├── inference1_test.dart │ │ │ │ ├── inference2_test.dart │ │ │ │ ├── inference3_test.dart │ │ │ │ ├── inference_data │ │ │ │ │ ├── called_in_loop.dart │ │ │ │ │ ├── cannot_throw.dart │ │ │ │ │ ├── function_apply.dart │ │ │ │ │ ├── function_apply_record.dart │ │ │ │ │ └── marker.options │ │ │ │ ├── inference_data_test.dart │ │ │ │ ├── inference_test_helper.dart │ │ │ │ ├── list_tracer_test.dart │ │ │ │ ├── load_deferred_library_test.dart │ │ │ │ ├── map_tracer_test.dart │ │ │ │ ├── null_flat_type_mask_test.dart │ │ │ │ ├── powerset_bits2_test.dart │ │ │ │ ├── powerset_bits3_test.dart │ │ │ │ ├── powerset_bits_test.dart │ │ │ │ ├── record_type_test.dart │ │ │ │ ├── show.dart │ │ │ │ ├── side_effects │ │ │ │ │ ├── annotations.dart │ │ │ │ │ ├── foreign.dart │ │ │ │ │ ├── local_functions.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── methods.dart │ │ │ │ │ ├── out_of_order.dart │ │ │ │ │ └── string_interpolation.dart │ │ │ │ ├── side_effects_test.dart │ │ │ │ ├── trivial_abstract_value_domain_test.dart │ │ │ │ ├── type_combination_test.dart │ │ │ │ ├── type_mask2_test.dart │ │ │ │ ├── type_mask_disjoint_test.dart │ │ │ │ ├── type_mask_test.dart │ │ │ │ ├── type_mask_test_helper.dart │ │ │ │ └── union_type_test.dart │ │ │ ├── inlining │ │ │ │ ├── data │ │ │ │ │ ├── conditional.dart │ │ │ │ │ ├── constructor.dart │ │ │ │ │ ├── dynamic.dart │ │ │ │ │ ├── external.dart │ │ │ │ │ ├── force_inline.dart │ │ │ │ │ ├── force_inline_loops.dart │ │ │ │ │ ├── heuristics.dart │ │ │ │ │ ├── map.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── meta.dart │ │ │ │ │ ├── native.dart │ │ │ │ │ ├── nested.dart │ │ │ │ │ ├── setter.dart │ │ │ │ │ ├── static_initializer.dart │ │ │ │ │ ├── switch.dart │ │ │ │ │ ├── too_difficult.dart │ │ │ │ │ └── type_variables.dart │ │ │ │ ├── inlining_test.dart │ │ │ │ ├── inlining_viewer.dart │ │ │ │ ├── meta_annotations2_test.dart │ │ │ │ ├── meta_annotations3_test.dart │ │ │ │ └── meta_annotations_test.dart │ │ │ ├── js │ │ │ │ ├── debug_size_estimator.dart │ │ │ │ ├── js_constant_test.dart │ │ │ │ ├── js_parser_statements_test.dart │ │ │ │ ├── js_parser_test.dart │ │ │ │ ├── js_safety_test.dart │ │ │ │ ├── js_size_estimator_test.dart │ │ │ │ ├── js_spec_optimization_test.dart │ │ │ │ ├── js_spec_string_test.dart │ │ │ │ ├── js_throw_behavior_test.dart │ │ │ │ └── size_estimator_expectations.json │ │ │ ├── jsinterop │ │ │ │ ├── declaration_test.dart │ │ │ │ ├── internal_annotations_test.dart │ │ │ │ ├── interop_anonymous_unreachable_test.dart │ │ │ │ └── world_test.dart │ │ │ ├── jumps │ │ │ │ ├── data │ │ │ │ │ ├── complex_loops.dart │ │ │ │ │ ├── labeled_statements.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── nested_loops.dart │ │ │ │ │ ├── simple_loops.dart │ │ │ │ │ └── switch.dart │ │ │ │ └── jump_test.dart │ │ │ ├── member_usage │ │ │ │ ├── data │ │ │ │ │ ├── constant_folding.dart │ │ │ │ │ ├── constructors.dart │ │ │ │ │ ├── fields.dart │ │ │ │ │ ├── general.dart │ │ │ │ │ ├── generic.dart │ │ │ │ │ ├── instance_method_parameters.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── native.dart │ │ │ │ │ ├── static_method_parameters.dart │ │ │ │ │ └── super.dart │ │ │ │ └── member_usage_test.dart │ │ │ ├── model │ │ │ │ ├── call_structure_namer_test.dart │ │ │ │ ├── cfe_annotations_test.dart │ │ │ │ ├── cfe_constant_evaluation_test.dart │ │ │ │ ├── cfe_constant_swarm_test.dart │ │ │ │ ├── cfe_constant_test.dart │ │ │ │ ├── class_set_test.dart │ │ │ │ ├── constant_value_test.dart │ │ │ │ ├── enqueuer_test.dart │ │ │ │ ├── enumset_test.dart │ │ │ │ ├── forwarding_stub_test.dart │ │ │ │ ├── future_or_test.dart │ │ │ │ ├── instantiated_classes_test.dart │ │ │ │ ├── link_test.dart │ │ │ │ ├── maplet_test.dart │ │ │ │ ├── mixin_typevariable_test.dart │ │ │ │ ├── native_test.dart │ │ │ │ ├── needs_no_such_method_test.dart │ │ │ │ ├── no_such_method_enabled_test.dart │ │ │ │ ├── no_such_method_forwarders_test.dart │ │ │ │ ├── open_world_test.dart │ │ │ │ ├── setlet_test.dart │ │ │ │ ├── strong_mode_closed_world_test.dart │ │ │ │ ├── strong_mode_impact_test.dart │ │ │ │ ├── subtype_test.dart │ │ │ │ ├── subtypeset_test.dart │ │ │ │ ├── supermixin_test.dart │ │ │ │ ├── token_naming_test.dart │ │ │ │ ├── type_substitution_test.dart │ │ │ │ └── world_test.dart │ │ │ ├── optimization │ │ │ │ ├── data │ │ │ │ │ ├── arithmetic.dart │ │ │ │ │ ├── arithmetic_simplification.dart │ │ │ │ │ ├── bit.dart │ │ │ │ │ ├── condition_value.dart │ │ │ │ │ ├── effectively_constant_fields.dart │ │ │ │ │ ├── field_get.dart │ │ │ │ │ ├── field_set.dart │ │ │ │ │ ├── finalized_type_variable.dart │ │ │ │ │ ├── index.dart │ │ │ │ │ ├── index_assign.dart │ │ │ │ │ ├── late_fields.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── modulo_remainder.dart │ │ │ │ │ ├── remove_last.dart │ │ │ │ │ ├── shift_right_unsigned.dart │ │ │ │ │ └── string_methods.dart │ │ │ │ └── optimization_test.dart │ │ │ ├── rti │ │ │ │ ├── backend_type_helper_test.dart │ │ │ │ ├── bound_check_test.dart │ │ │ │ ├── data │ │ │ │ │ ├── as.dart │ │ │ │ │ ├── async_foreach.dart │ │ │ │ │ ├── async_foreach_nonasync.dart │ │ │ │ │ ├── async_local.dart │ │ │ │ │ ├── async_local_nonasync.dart │ │ │ │ │ ├── async_local_typed.dart │ │ │ │ │ ├── call_typed.dart │ │ │ │ │ ├── call_typed_generic.dart │ │ │ │ │ ├── closure.dart │ │ │ │ │ ├── closure_generic_unneeded.dart │ │ │ │ │ ├── closure_unneeded.dart │ │ │ │ │ ├── dependency.dart │ │ │ │ │ ├── direct.dart │ │ │ │ │ ├── dynamic_is.dart │ │ │ │ │ ├── dynamic_is2.dart │ │ │ │ │ ├── dynamic_is_closure.dart │ │ │ │ │ ├── dynamic_is_closure2.dart │ │ │ │ │ ├── dynamic_not.dart │ │ │ │ │ ├── dynamic_not2.dart │ │ │ │ │ ├── dynamic_not_closure.dart │ │ │ │ │ ├── dynamic_not_closure2.dart │ │ │ │ │ ├── dynamic_tear_off.dart │ │ │ │ │ ├── dynamic_tear_off2.dart │ │ │ │ │ ├── dynamic_tear_off3.dart │ │ │ │ │ ├── dynamic_tear_off4.dart │ │ │ │ │ ├── dynamic_type_literal.dart │ │ │ │ │ ├── dynamic_type_literal2.dart │ │ │ │ │ ├── explicit_as.dart │ │ │ │ │ ├── function_subtype_local5.dart │ │ │ │ │ ├── future_or.dart │ │ │ │ │ ├── future_or_future_or.dart │ │ │ │ │ ├── future_or_future_or_generic.dart │ │ │ │ │ ├── future_or_generic.dart │ │ │ │ │ ├── future_or_generic2.dart │ │ │ │ │ ├── generic_bounds.dart │ │ │ │ │ ├── generic_class_instantiate.dart │ │ │ │ │ ├── generic_class_is.dart │ │ │ │ │ ├── generic_class_is2.dart │ │ │ │ │ ├── generic_closure_instantiate.dart │ │ │ │ │ ├── generic_creation.dart │ │ │ │ │ ├── generic_instanceof4.dart │ │ │ │ │ ├── generic_instanceof4_unused.dart │ │ │ │ │ ├── generic_method1.dart │ │ │ │ │ ├── generic_method2.dart │ │ │ │ │ ├── generic_method3.dart │ │ │ │ │ ├── generic_method4.dart │ │ │ │ │ ├── generic_method_instantiate.dart │ │ │ │ │ ├── generic_method_is.dart │ │ │ │ │ ├── generic_method_is2.dart │ │ │ │ │ ├── generic_method_tearoff.dart │ │ │ │ │ ├── generic_methods_dynamic_05.dart │ │ │ │ │ ├── generic_methods_dynamic_05a.dart │ │ │ │ │ ├── implicit_as.dart │ │ │ │ │ ├── indirect_through_static.dart │ │ │ │ │ ├── indirect_type_literal.dart │ │ │ │ │ ├── instantiated_type_literal.dart │ │ │ │ │ ├── instantiation1.dart │ │ │ │ │ ├── instantiation2.dart │ │ │ │ │ ├── instantiation3.dart │ │ │ │ │ ├── instantiation4.dart │ │ │ │ │ ├── instantiation5.dart │ │ │ │ │ ├── instantiation6.dart │ │ │ │ │ ├── instantiation7.dart │ │ │ │ │ ├── instantiation8.dart │ │ │ │ │ ├── is_type_variable.dart │ │ │ │ │ ├── is_type_variable_super.dart │ │ │ │ │ ├── is_type_variable_super_complex.dart │ │ │ │ │ ├── issue48304.dart │ │ │ │ │ ├── list_literal.dart │ │ │ │ │ ├── list_to_set.dart │ │ │ │ │ ├── local_function_generic.dart │ │ │ │ │ ├── local_function_list_literal.dart │ │ │ │ │ ├── local_function_map_literal.dart │ │ │ │ │ ├── local_function_signature2.dart │ │ │ │ │ ├── local_function_signatures.dart │ │ │ │ │ ├── local_function_signatures_generic.dart │ │ │ │ │ ├── map_literal.dart │ │ │ │ │ ├── map_to_set.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── method_signatures.dart │ │ │ │ │ ├── method_signatures_generic.dart │ │ │ │ │ ├── no_such_method1.dart │ │ │ │ │ ├── no_such_method2.dart │ │ │ │ │ ├── no_such_method3.dart │ │ │ │ │ ├── pragma_directives_instance.dart │ │ │ │ │ ├── pragma_directives_static.dart │ │ │ │ │ ├── private_dynamic.dart │ │ │ │ │ ├── private_dynamic2.dart │ │ │ │ │ ├── runtime_type_closure_equals1.dart │ │ │ │ │ ├── runtime_type_closure_equals2.dart │ │ │ │ │ ├── runtime_type_closure_equals3.dart │ │ │ │ │ ├── runtime_type_closure_equals4.dart │ │ │ │ │ ├── runtime_type_closure_equals5.dart │ │ │ │ │ ├── runtime_type_closure_equals6.dart │ │ │ │ │ ├── runtime_type_closure_equals7.dart │ │ │ │ │ ├── runtime_type_closure_equals8.dart │ │ │ │ │ ├── runtime_type_closure_to_string1.dart │ │ │ │ │ ├── runtime_type_closure_to_string2.dart │ │ │ │ │ ├── runtime_type_closure_to_string3.dart │ │ │ │ │ ├── runtime_type_closure_to_string4.dart │ │ │ │ │ ├── runtime_type_closure_to_string5.dart │ │ │ │ │ ├── runtime_type_closure_to_string6.dart │ │ │ │ │ ├── runtime_type_equals1.dart │ │ │ │ │ ├── runtime_type_equals2.dart │ │ │ │ │ ├── runtime_type_equals3.dart │ │ │ │ │ ├── runtime_type_equals4.dart │ │ │ │ │ ├── runtime_type_equals5.dart │ │ │ │ │ ├── runtime_type_equals6.dart │ │ │ │ │ ├── runtime_type_equals7.dart │ │ │ │ │ ├── runtime_type_instantiate_to_string1.dart │ │ │ │ │ ├── runtime_type_instantiate_to_string2.dart │ │ │ │ │ ├── runtime_type_instantiate_to_string3.dart │ │ │ │ │ ├── runtime_type_to_string1.dart │ │ │ │ │ ├── runtime_type_to_string2.dart │ │ │ │ │ ├── runtime_type_to_string3.dart │ │ │ │ │ ├── runtime_type_to_string4.dart │ │ │ │ │ ├── runtime_type_to_string5.dart │ │ │ │ │ ├── runtime_type_to_string6.dart │ │ │ │ │ ├── runtime_type_to_string7.dart │ │ │ │ │ ├── subclass.dart │ │ │ │ │ ├── subclass_fixed.dart │ │ │ │ │ ├── subtype_named_args.dart │ │ │ │ │ ├── subtype_named_args1.dart │ │ │ │ │ ├── superclass.dart │ │ │ │ │ ├── tear_off.dart │ │ │ │ │ ├── tear_off_generic.dart │ │ │ │ │ ├── type_argument_substitution.dart │ │ │ │ │ ├── type_literal.dart │ │ │ │ │ ├── type_literal2.dart │ │ │ │ │ ├── type_literal_generic.dart │ │ │ │ │ └── type_variable_function_type.dart │ │ │ │ ├── disable_rti_test.dart │ │ │ │ ├── emission │ │ │ │ │ ├── arguments.dart │ │ │ │ │ ├── call.dart │ │ │ │ │ ├── call_typed.dart │ │ │ │ │ ├── call_typed_generic.dart │ │ │ │ │ ├── closure_function.dart │ │ │ │ │ ├── closure_function_type.dart │ │ │ │ │ ├── closure_signature.dart │ │ │ │ │ ├── closure_signature_unneeded.dart │ │ │ │ │ ├── constructor_argument_static.dart │ │ │ │ │ ├── dynamic_instance.dart │ │ │ │ │ ├── dynamic_type_argument.dart │ │ │ │ │ ├── dynamic_type_literal.dart │ │ │ │ │ ├── event_callback.dart │ │ │ │ │ ├── fixed_type_argument.dart │ │ │ │ │ ├── fixed_type_argument_implements.dart │ │ │ │ │ ├── function_type_argument.dart │ │ │ │ │ ├── function_typed_arguments.dart │ │ │ │ │ ├── future_or.dart │ │ │ │ │ ├── future_or_as_type_argument.dart │ │ │ │ │ ├── future_or_future_or.dart │ │ │ │ │ ├── future_or_future_or_generic.dart │ │ │ │ │ ├── future_or_generic.dart │ │ │ │ │ ├── future_or_generic2.dart │ │ │ │ │ ├── future_or_type_argument.dart │ │ │ │ │ ├── generic_instanceof4.dart │ │ │ │ │ ├── generic_methods_dynamic_02.dart │ │ │ │ │ ├── indirect_through_static.dart │ │ │ │ │ ├── inherited_is.dart │ │ │ │ │ ├── inherited_is2.dart │ │ │ │ │ ├── instantiated_type_literal.dart │ │ │ │ │ ├── jsinterop.dart │ │ │ │ │ ├── jsinterop_generic.dart │ │ │ │ │ ├── jsinterop_generic_factory_args.dart │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── local_function_list_literal.dart │ │ │ │ │ ├── local_function_map_literal.dart │ │ │ │ │ ├── map_literal.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── mixin_mixin2.dart │ │ │ │ │ ├── mixin_mixin4.dart │ │ │ │ │ ├── mixin_subtype.dart │ │ │ │ │ ├── mixin_type_arguments.dart │ │ │ │ │ ├── native.dart │ │ │ │ │ ├── optimized_is_check.dart │ │ │ │ │ ├── pragma_directives_instance.dart │ │ │ │ │ ├── pragma_directives_static.dart │ │ │ │ │ ├── regress_18713.dart │ │ │ │ │ ├── replaced_type_variable.dart │ │ │ │ │ ├── runtime_type.dart │ │ │ │ │ ├── runtime_type_instantiate_to_string1.dart │ │ │ │ │ ├── runtime_type_instantiate_to_string2.dart │ │ │ │ │ ├── runtime_type_instantiate_to_string3.dart │ │ │ │ │ ├── self.dart │ │ │ │ │ ├── self_generic.dart │ │ │ │ │ ├── static_argument.dart │ │ │ │ │ ├── subtype_named_args.dart │ │ │ │ │ ├── superclass.dart │ │ │ │ │ ├── superclass_as.dart │ │ │ │ │ ├── superclass_complex.dart │ │ │ │ │ ├── superclass_fixed.dart │ │ │ │ │ ├── superclass_supertype.dart │ │ │ │ │ ├── superclass_supertype_complex.dart │ │ │ │ │ ├── superclass_supertype_fixed.dart │ │ │ │ │ ├── superclass_supertype_trivial.dart │ │ │ │ │ ├── superclass_trivial.dart │ │ │ │ │ ├── superclasses_non_trivial.dart │ │ │ │ │ ├── superclasses_trivial.dart │ │ │ │ │ ├── supertype.dart │ │ │ │ │ ├── supertype_complex.dart │ │ │ │ │ ├── supertype_fixed.dart │ │ │ │ │ ├── supertype_trivial.dart │ │ │ │ │ ├── supertypes_extends.dart │ │ │ │ │ ├── supertypes_extends2.dart │ │ │ │ │ ├── supertypes_extends3.dart │ │ │ │ │ ├── supertypes_implements.dart │ │ │ │ │ ├── supertypes_non_trivial.dart │ │ │ │ │ ├── supertypes_trivial.dart │ │ │ │ │ ├── tear_off_types.dart │ │ │ │ │ ├── type_argument_dynamic.dart │ │ │ │ │ ├── type_argument_static.dart │ │ │ │ │ ├── type_literal.dart │ │ │ │ │ └── type_variable_function_type.dart │ │ │ │ ├── factory_call_test.dart │ │ │ │ ├── instance_call_test.dart │ │ │ │ ├── is_test_with_type_parameters_test.dart │ │ │ │ ├── rti_emission0_test.dart │ │ │ │ ├── rti_emission1_test.dart │ │ │ │ ├── rti_emission2_test.dart │ │ │ │ ├── rti_emission3_test.dart │ │ │ │ ├── rti_emission_test_helper.dart │ │ │ │ ├── rti_need0_test.dart │ │ │ │ ├── rti_need1_test.dart │ │ │ │ ├── rti_need2_test.dart │ │ │ │ ├── rti_need3_test.dart │ │ │ │ ├── rti_need_test_helper.dart │ │ │ │ ├── runtime_type_hint_test.dart │ │ │ │ └── show.dart │ │ │ ├── serialization │ │ │ │ ├── data │ │ │ │ │ ├── const_literals.dart │ │ │ │ │ ├── constructor_name.dart │ │ │ │ │ ├── continue.dart │ │ │ │ │ ├── custom_types.dart │ │ │ │ │ ├── deferred.dart │ │ │ │ │ ├── jsinterop.dart │ │ │ │ │ ├── labels.dart │ │ │ │ │ ├── maps.dart │ │ │ │ │ ├── switch.dart │ │ │ │ │ ├── typedef.dart │ │ │ │ │ └── unordered_indices.dart │ │ │ │ ├── in_memory_split_test.dart │ │ │ │ ├── libs │ │ │ │ │ ├── deferred_lib1.dart │ │ │ │ │ ├── deferred_lib2.dart │ │ │ │ │ └── deferred_lib3.dart │ │ │ │ ├── on_disk_split_test.dart │ │ │ │ ├── serialization_test.dart │ │ │ │ └── serialization_test_helper.dart │ │ │ ├── sourcemaps │ │ │ │ ├── data │ │ │ │ │ ├── async.dart │ │ │ │ │ ├── invokes.dart │ │ │ │ │ ├── operators.dart │ │ │ │ │ ├── others.dart │ │ │ │ │ └── super.dart │ │ │ │ ├── helpers │ │ │ │ │ ├── colors.dart │ │ │ │ │ ├── diff.dart │ │ │ │ │ ├── html_parts.dart │ │ │ │ │ ├── js_tracer.dart │ │ │ │ │ ├── lax_json.dart │ │ │ │ │ ├── output_structure.dart │ │ │ │ │ ├── sourcemap_helper.dart │ │ │ │ │ ├── sourcemap_html_helper.dart │ │ │ │ │ ├── sourcemap_html_templates.dart │ │ │ │ │ └── trace_graph.dart │ │ │ │ ├── lax_json_test.dart │ │ │ │ ├── load_save_test.dart │ │ │ │ ├── location_collector_test.dart │ │ │ │ ├── mapping_test.dart │ │ │ │ ├── minified │ │ │ │ │ ├── cannot_read_property.dart │ │ │ │ │ ├── cannot_read_property2.dart │ │ │ │ │ ├── instance.dart │ │ │ │ │ ├── is_not_a_function.dart │ │ │ │ │ ├── no_such_method.dart │ │ │ │ │ ├── no_such_method2.dart │ │ │ │ │ ├── no_such_method3.dart │ │ │ │ │ └── no_such_method4.dart │ │ │ │ ├── minified_names_test.dart │ │ │ │ ├── name_test.dart │ │ │ │ ├── nomapping_test.dart │ │ │ │ ├── source_map_test.dart │ │ │ │ ├── source_mapping_invokes_test.dart │ │ │ │ ├── source_mapping_operators_test.dart │ │ │ │ ├── source_mapping_test.dart │ │ │ │ ├── stacktrace │ │ │ │ │ ├── deep_inlining.dart │ │ │ │ │ ├── extension_method.dart │ │ │ │ │ ├── getter_inlining.dart │ │ │ │ │ ├── getter_inlining_1.dart │ │ │ │ │ ├── getter_inlining_2.dart │ │ │ │ │ ├── getter_inlining_3.dart │ │ │ │ │ ├── getter_inlining_baseline_1.dart │ │ │ │ │ ├── getter_inlining_baseline_2.dart │ │ │ │ │ ├── null_instance_field.dart │ │ │ │ │ ├── null_instance_field_elided.dart │ │ │ │ │ ├── null_interceptor_field.dart │ │ │ │ │ ├── null_receiver_inlining.dart │ │ │ │ │ ├── parameters.dart │ │ │ │ │ ├── parameters_elided.dart │ │ │ │ │ ├── rethrow.dart │ │ │ │ │ ├── setter_inlining.dart │ │ │ │ │ ├── sync_throw_in_async.dart │ │ │ │ │ ├── sync_throw_in_awaited_async.dart │ │ │ │ │ ├── sync_throw_in_constructor_from_async.dart │ │ │ │ │ ├── sync_throw_in_top_level_method_from_async.dart │ │ │ │ │ ├── throw_in_async.dart │ │ │ │ │ ├── throw_in_awaited_async.dart │ │ │ │ │ ├── throw_in_constructor.dart │ │ │ │ │ ├── throw_in_constructor_from_async.dart │ │ │ │ │ ├── throw_in_instance_method.dart │ │ │ │ │ ├── throw_in_lazy_field.dart │ │ │ │ │ ├── throw_in_lazy_field_indirect.dart │ │ │ │ │ ├── throw_in_lazy_final_field.dart │ │ │ │ │ ├── throw_in_lazy_final_field_indirect.dart │ │ │ │ │ ├── throw_in_main.dart │ │ │ │ │ ├── throw_in_static_method.dart │ │ │ │ │ ├── throw_in_top_level_method.dart │ │ │ │ │ ├── throw_in_top_level_method_from_async.dart │ │ │ │ │ ├── throw_in_try_catch.dart │ │ │ │ │ └── throw_in_try_finally.dart │ │ │ │ ├── stacktrace_test.dart │ │ │ │ ├── stepping │ │ │ │ │ ├── print.dart │ │ │ │ │ ├── print_class_fields.dart │ │ │ │ │ ├── print_top_level_invoke.dart │ │ │ │ │ └── top_level_invoke.dart │ │ │ │ ├── stepping_test.dart │ │ │ │ ├── test_files │ │ │ │ │ ├── deferred_validator_test_file.dart │ │ │ │ │ ├── deferred_validator_test_lib.dart │ │ │ │ │ └── validator_test_file.dart │ │ │ │ └── tools │ │ │ │ │ ├── diff_view.dart │ │ │ │ │ ├── load.dart │ │ │ │ │ ├── save.dart │ │ │ │ │ ├── source_mapping_test_viewer.dart │ │ │ │ │ ├── source_mapping_tester.dart │ │ │ │ │ ├── sourcemap_visualizer.dart │ │ │ │ │ └── translate_dart2js_stacktrace.dart │ │ │ ├── static_type │ │ │ │ ├── data │ │ │ │ │ ├── as.dart │ │ │ │ │ ├── assert.dart │ │ │ │ │ ├── assert_ea.dart │ │ │ │ │ ├── cascade.dart │ │ │ │ │ ├── closure.dart │ │ │ │ │ ├── do.dart │ │ │ │ │ ├── effectively_final.dart │ │ │ │ │ ├── effectively_final_access.dart │ │ │ │ │ ├── for.dart │ │ │ │ │ ├── for_in.dart │ │ │ │ │ ├── generic_method.dart │ │ │ │ │ ├── if.dart │ │ │ │ │ ├── if_method_call.dart │ │ │ │ │ ├── issue42281.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── null.dart │ │ │ │ │ ├── null_access.dart │ │ │ │ │ ├── switch.dart │ │ │ │ │ ├── try_catch.dart │ │ │ │ │ ├── try_finally.dart │ │ │ │ │ └── while.dart │ │ │ │ ├── show.dart │ │ │ │ ├── static_type_test.dart │ │ │ │ ├── type_promotion_data │ │ │ │ │ ├── bottom.dart │ │ │ │ │ ├── closure.dart │ │ │ │ │ ├── equals.dart │ │ │ │ │ ├── if.dart │ │ │ │ │ ├── if_method_call.dart │ │ │ │ │ ├── issue42281.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── null.dart │ │ │ │ │ └── sequence.dart │ │ │ │ └── type_promotion_test.dart │ │ │ ├── testing.json │ │ │ └── tool │ │ │ │ └── graph_isomorphizer │ │ │ │ ├── golden │ │ │ │ ├── less_simple │ │ │ │ │ ├── lib1.dart │ │ │ │ │ ├── lib2.dart │ │ │ │ │ ├── lib3.dart │ │ │ │ │ ├── lib4.dart │ │ │ │ │ ├── libImport.dart │ │ │ │ │ ├── lib_000_1.dart │ │ │ │ │ ├── lib_001_0.dart │ │ │ │ │ ├── lib_010_0.dart │ │ │ │ │ ├── lib_100_0.dart │ │ │ │ │ └── main.dart │ │ │ │ └── simple │ │ │ │ │ ├── lib1.dart │ │ │ │ │ ├── lib2.dart │ │ │ │ │ ├── lib3.dart │ │ │ │ │ ├── libImport.dart │ │ │ │ │ ├── lib_001.dart │ │ │ │ │ ├── lib_010.dart │ │ │ │ │ ├── lib_100.dart │ │ │ │ │ └── main.dart │ │ │ │ └── graph_isomorphizer_test.dart │ │ ├── testing.json │ │ └── tool │ │ │ ├── dart2js_profile_many.dart │ │ │ ├── dart2js_stress.dart │ │ │ ├── graph_isomorphizer.dart │ │ │ ├── kernel_visitor │ │ │ ├── dart_html_metrics_visitor.dart │ │ │ └── test │ │ │ │ ├── info_visitor_test.dart │ │ │ │ └── test_classes.dart │ │ │ ├── modular_dart2js.dart │ │ │ ├── modular_test_suite.dart │ │ │ ├── modular_test_suite_helper.dart │ │ │ ├── modular_test_suite_legacy.dart │ │ │ ├── null_safety │ │ │ ├── candidates.dart │ │ │ └── tally.dart │ │ │ ├── szcmp │ │ │ ├── track_memory.dart │ │ │ ├── update_id_tests.dart │ │ │ └── used_names │ │ │ ├── README.md │ │ │ ├── used_names.html │ │ │ └── used_names.js │ ├── dart2js_info │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── DEVELOPER.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ ├── src │ │ │ │ ├── code_deps.dart │ │ │ │ ├── common_command.dart │ │ │ │ ├── convert.dart │ │ │ │ ├── coverage_log_server.dart │ │ │ │ ├── debug_info.dart │ │ │ │ ├── deferred_library_check.dart │ │ │ │ ├── deferred_library_layout.dart │ │ │ │ ├── deferred_library_size.dart │ │ │ │ ├── diff.dart │ │ │ │ ├── function_size_analysis.dart │ │ │ │ ├── inject_text.dart │ │ │ │ ├── library_size_split.dart │ │ │ │ ├── live_code_size_analysis.dart │ │ │ │ ├── runtime_coverage_analysis.dart │ │ │ │ ├── show_inferred_types.dart │ │ │ │ ├── text_print.dart │ │ │ │ ├── to_binary.dart │ │ │ │ ├── to_devtools_format.dart │ │ │ │ ├── to_json.dart │ │ │ │ ├── to_proto.dart │ │ │ │ └── usage_exception.dart │ │ │ └── tools.dart │ │ ├── info.proto │ │ ├── lib │ │ │ ├── binary_serialization.dart │ │ │ ├── deferred_library_check.dart │ │ │ ├── info.dart │ │ │ ├── json_info_codec.dart │ │ │ ├── proto_info_codec.dart │ │ │ └── src │ │ │ │ ├── binary │ │ │ │ ├── sink.dart │ │ │ │ └── source.dart │ │ │ │ ├── common_element.dart │ │ │ │ ├── diff.dart │ │ │ │ ├── graph.dart │ │ │ │ ├── io.dart │ │ │ │ ├── proto │ │ │ │ ├── info.pb.dart │ │ │ │ ├── info.pbenum.dart │ │ │ │ ├── info.pbjson.dart │ │ │ │ └── info.pbserver.dart │ │ │ │ ├── runtime_coverage_utils.dart │ │ │ │ ├── string_edit_buffer.dart │ │ │ │ ├── table.dart │ │ │ │ └── util.dart │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── analysis_options.yaml │ │ │ ├── binary_serialization_test.dart │ │ │ ├── classes │ │ │ │ ├── class_filter.txt │ │ │ │ ├── classes.dart │ │ │ │ └── classes.js.info.data │ │ │ ├── graph_test.dart │ │ │ ├── hello_world │ │ │ │ ├── hello_world.dart │ │ │ │ └── hello_world.js.info.json │ │ │ ├── hello_world_deferred │ │ │ │ ├── deferred_import.dart │ │ │ │ ├── hello_world_deferred.dart │ │ │ │ └── hello_world_deferred.js.info.json │ │ │ ├── json_to_proto_deferred_test.dart │ │ │ ├── json_to_proto_test.dart │ │ │ ├── parse_test.dart │ │ │ ├── runtime_coverage_test.dart │ │ │ └── test_shared.dart │ │ └── tool │ │ │ └── update_proto.sh │ ├── dev_compiler │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── STRONG_MODE.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── dartdevc.dart │ │ ├── codereview.settings │ │ ├── lib │ │ │ ├── ddc.dart │ │ │ ├── dev_compiler.dart │ │ │ ├── js │ │ │ │ ├── common │ │ │ │ │ └── run.js │ │ │ │ └── legacy │ │ │ │ │ └── dart_library.js │ │ │ └── src │ │ │ │ ├── compiler │ │ │ │ ├── js_metalet.dart │ │ │ │ ├── js_names.dart │ │ │ │ ├── js_typerep.dart │ │ │ │ ├── js_utils.dart │ │ │ │ ├── module_builder.dart │ │ │ │ ├── module_containers.dart │ │ │ │ ├── shared_command.dart │ │ │ │ └── shared_compiler.dart │ │ │ │ ├── js_ast │ │ │ │ ├── builder.dart │ │ │ │ ├── characters.dart │ │ │ │ ├── js_ast.dart │ │ │ │ ├── nodes.dart │ │ │ │ ├── precedence.dart │ │ │ │ ├── printer.dart │ │ │ │ ├── source_map_printer.dart │ │ │ │ └── template.dart │ │ │ │ └── kernel │ │ │ │ ├── asset_file_system.dart │ │ │ │ ├── command.dart │ │ │ │ ├── compiler.dart │ │ │ │ ├── constants.dart │ │ │ │ ├── expression_compiler.dart │ │ │ │ ├── expression_compiler_worker.dart │ │ │ │ ├── future_or_normalizer.dart │ │ │ │ ├── js_interop.dart │ │ │ │ ├── js_typerep.dart │ │ │ │ ├── kernel_helpers.dart │ │ │ │ ├── module_metadata.dart │ │ │ │ ├── module_symbols.dart │ │ │ │ ├── module_symbols_collector.dart │ │ │ │ ├── native_types.dart │ │ │ │ ├── nullable_inference.dart │ │ │ │ ├── property_model.dart │ │ │ │ ├── retry_timeout_client.dart │ │ │ │ ├── target.dart │ │ │ │ ├── type_environment.dart │ │ │ │ ├── type_recipe_generator.dart │ │ │ │ └── type_table.dart │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── expression_compiler │ │ │ │ ├── assertions_enabled_test.dart │ │ │ │ ├── asset_file_system_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_agnostic_sound_shard_1_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_agnostic_sound_shard_2_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_agnostic_unsound_shard_1_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_agnostic_unsound_shard_2_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_legacy_shard_1_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_legacy_shard_2_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_sound_test.dart │ │ │ │ ├── expression_compiler_e2e_amd_unsound_test.dart │ │ │ │ ├── expression_compiler_e2e_dart_2_17_test.dart │ │ │ │ ├── expression_compiler_e2e_dart_3_0_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_agnostic_sound_shard_1_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_agnostic_sound_shard_2_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_agnostic_unsound_shard_1_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_agnostic_unsound_shard_2_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_legacy_shard_1_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_legacy_shard_2_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_sound_test.dart │ │ │ │ ├── expression_compiler_e2e_ddc_unsound_test.dart │ │ │ │ ├── expression_compiler_e2e_shared.dart │ │ │ │ ├── expression_compiler_e2e_suite.dart │ │ │ │ ├── expression_compiler_test.dart │ │ │ │ ├── expression_compiler_worker_amd_test.dart │ │ │ │ ├── expression_compiler_worker_ddc_test.dart │ │ │ │ ├── expression_compiler_worker_shared.dart │ │ │ │ └── scope_offset_test.dart │ │ │ ├── js │ │ │ │ └── builder_test.dart │ │ │ ├── modular_helpers.dart │ │ │ ├── modular_suite.dart │ │ │ ├── modular_suite_canary_unsound.dart │ │ │ ├── modular_suite_unsound.dart │ │ │ ├── module_metadata_test.dart │ │ │ ├── module_symbols │ │ │ │ ├── class_symbols_test.dart │ │ │ │ ├── function_symbols_test.dart │ │ │ │ ├── module_symbols_json_test.dart │ │ │ │ ├── module_symbols_test_shared.dart │ │ │ │ └── variable_symbols_test.dart │ │ │ ├── nullable_inference_test.dart │ │ │ ├── sdk_source_map_test.dart │ │ │ ├── shared_test_options.dart │ │ │ ├── sourcemap │ │ │ │ ├── README.md │ │ │ │ ├── common.dart │ │ │ │ ├── ddc_common.dart │ │ │ │ ├── sourcemaps.status │ │ │ │ ├── sourcemaps_suite.dart │ │ │ │ ├── stacktrace.status │ │ │ │ ├── stacktrace_suite.dart │ │ │ │ ├── stacktrace_testfiles │ │ │ │ │ ├── null_instance_field.dart │ │ │ │ │ ├── null_interceptor_field.dart │ │ │ │ │ ├── rethrow.dart │ │ │ │ │ ├── throw_in_async.dart │ │ │ │ │ ├── throw_in_awaited_async.dart │ │ │ │ │ ├── throw_in_constructor.dart │ │ │ │ │ ├── throw_in_constructor_from_async.dart │ │ │ │ │ ├── throw_in_instance_method.dart │ │ │ │ │ ├── throw_in_main.dart │ │ │ │ │ ├── throw_in_static_method.dart │ │ │ │ │ ├── throw_in_top_level_method.dart │ │ │ │ │ ├── throw_in_top_level_method_from_async.dart │ │ │ │ │ ├── throw_in_try_catch.dart │ │ │ │ │ └── throw_in_try_finally.dart │ │ │ │ ├── testfiles │ │ │ │ │ ├── breakpoint_on_class_all_in_one_line.unformatteddart │ │ │ │ │ ├── breakpoint_on_function_line_breaks_in_body.dart │ │ │ │ │ ├── call_on_field_in_class.dart │ │ │ │ │ ├── hello_async.dart │ │ │ │ │ ├── hello_call.dart │ │ │ │ │ ├── hello_class_call.dart │ │ │ │ │ ├── hello_sane_column_on_print_return_value.dart │ │ │ │ │ ├── hello_world.dart │ │ │ │ │ ├── method_call_with_named_parameters.dart │ │ │ │ │ ├── method_call_with_named_parameters_no_given.dart │ │ │ │ │ ├── multiple_debugger_calls.dart │ │ │ │ │ ├── next_through_assert.dart │ │ │ │ │ ├── next_through_assign_call_test.dart │ │ │ │ │ ├── next_through_assign_int_test.dart │ │ │ │ │ ├── next_through_catch_test.dart │ │ │ │ │ ├── next_through_for_each_loop_test.dart │ │ │ │ │ ├── next_through_for_loop_with_break_and_continue_test.dart │ │ │ │ │ ├── next_through_is_and_as_test.dart │ │ │ │ │ ├── next_through_map_creation.dart │ │ │ │ │ ├── next_through_multi_catch_test.dart │ │ │ │ │ ├── next_through_operator_bracket_on_super_test.dart │ │ │ │ │ ├── next_through_operator_bracket_on_this_test.dart │ │ │ │ │ ├── next_through_operator_bracket_test.dart │ │ │ │ │ ├── next_through_static_set.dart │ │ │ │ │ ├── next_through_string_concatenation.dart │ │ │ │ │ ├── next_through_string_plus.dart │ │ │ │ │ ├── next_through_throw.dart │ │ │ │ │ ├── next_through_variable_set.dart │ │ │ │ │ ├── next_through_yield.dart │ │ │ │ │ ├── no_mapping_on_class_constructor_line.dart │ │ │ │ │ ├── no_mapping_on_class_function_line.dart │ │ │ │ │ ├── no_mapping_on_class_line.dart │ │ │ │ │ ├── no_mapping_on_class_named_constructor_line.dart │ │ │ │ │ ├── no_mapping_on_function_line.dart │ │ │ │ │ ├── printing_class_fields.dart │ │ │ │ │ ├── printing_class_fields_step_into.dart │ │ │ │ │ ├── step_through_async_star_yield.dart │ │ │ │ │ ├── step_through_await_for.dart │ │ │ │ │ ├── step_through_conditional_expression.dart │ │ │ │ │ ├── step_through_if_and_identical.dart │ │ │ │ │ ├── step_through_property_get_test.dart │ │ │ │ │ ├── step_through_sync_star.dart │ │ │ │ │ └── stops_at_ending_brace.dart │ │ │ │ └── testing.json │ │ │ ├── string_to_uri_test.dart │ │ │ └── worker │ │ │ │ └── worker_test.dart │ │ ├── tool │ │ │ ├── compile_dartdevc_sdk.dart │ │ │ └── ddb │ │ └── web │ │ │ ├── source_map_stack_trace.dart │ │ │ └── stack_trace_mapper.dart │ ├── front_end │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── PRESUBMIT.py │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── analysis_options_no_lints.yaml │ │ ├── benchmarks │ │ │ ├── ikg │ │ │ │ ├── dart2js.dart │ │ │ │ ├── dart2js.edits.json │ │ │ │ ├── hello.dart │ │ │ │ └── hello.edits.json │ │ │ └── patterns │ │ │ │ ├── generate_datatypes.dart │ │ │ │ ├── generated │ │ │ │ ├── datatype.dart │ │ │ │ ├── datatype1.dart │ │ │ │ ├── datatype12.dart │ │ │ │ ├── datatype128.dart │ │ │ │ ├── datatype16.dart │ │ │ │ ├── datatype192.dart │ │ │ │ ├── datatype2.dart │ │ │ │ ├── datatype24.dart │ │ │ │ ├── datatype256.dart │ │ │ │ ├── datatype3.dart │ │ │ │ ├── datatype32.dart │ │ │ │ ├── datatype4.dart │ │ │ │ ├── datatype48.dart │ │ │ │ ├── datatype5.dart │ │ │ │ ├── datatype6.dart │ │ │ │ ├── datatype64.dart │ │ │ │ ├── datatype7.dart │ │ │ │ ├── datatype8.dart │ │ │ │ └── datatype96.dart │ │ │ │ ├── test_datatypes.dart │ │ │ │ ├── test_lists.dart │ │ │ │ ├── test_lists_from_vs_of.dart │ │ │ │ ├── test_map_a_list.dart │ │ │ │ ├── test_sets_from_list_mapping.dart │ │ │ │ └── util.dart │ │ ├── error_recovery.yaml │ │ ├── lib │ │ │ ├── src │ │ │ │ ├── api_prototype │ │ │ │ │ ├── compiler_options.dart │ │ │ │ │ ├── const_conditional_simplifier.dart │ │ │ │ │ ├── constant_evaluator.dart │ │ │ │ │ ├── experimental_flags.dart │ │ │ │ │ ├── experimental_flags_generated.dart │ │ │ │ │ ├── expression_compilation_tools.dart │ │ │ │ │ ├── file_system.dart │ │ │ │ │ ├── front_end.dart │ │ │ │ │ ├── incremental_kernel_generator.dart │ │ │ │ │ ├── kernel_generator.dart │ │ │ │ │ ├── language_version.dart │ │ │ │ │ ├── lowering_predicates.dart │ │ │ │ │ ├── memory_file_system.dart │ │ │ │ │ ├── standard_file_system.dart │ │ │ │ │ ├── static_weak_references.dart │ │ │ │ │ ├── summary_generator.dart │ │ │ │ │ ├── terminal_color_support.dart │ │ │ │ │ └── try_constant_evaluator.dart │ │ │ │ ├── api_unstable │ │ │ │ │ ├── bazel_worker.dart │ │ │ │ │ ├── build_integration.dart │ │ │ │ │ ├── compiler_state.dart │ │ │ │ │ ├── dart2js.dart │ │ │ │ │ ├── ddc.dart │ │ │ │ │ ├── modular_incremental_compilation.dart │ │ │ │ │ ├── util.dart │ │ │ │ │ └── vm.dart │ │ │ │ ├── base │ │ │ │ │ ├── command_line_options.dart │ │ │ │ │ ├── common.dart │ │ │ │ │ ├── instrumentation.dart │ │ │ │ │ ├── library_info.dart │ │ │ │ │ ├── nnbd_mode.dart │ │ │ │ │ └── processed_options.dart │ │ │ │ ├── compute_platform_binaries_location.dart │ │ │ │ ├── fasta │ │ │ │ │ ├── README.md │ │ │ │ │ ├── TESTING.md │ │ │ │ │ ├── builder │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── builder.dart │ │ │ │ │ │ ├── builder_mixins.dart │ │ │ │ │ │ ├── builtin_type_declaration_builder.dart │ │ │ │ │ │ ├── class_builder.dart │ │ │ │ │ │ ├── constructor_builder.dart │ │ │ │ │ │ ├── constructor_reference_builder.dart │ │ │ │ │ │ ├── declaration_builder.dart │ │ │ │ │ │ ├── dynamic_type_declaration_builder.dart │ │ │ │ │ │ ├── extension_builder.dart │ │ │ │ │ │ ├── field_builder.dart │ │ │ │ │ │ ├── fixed_type_builder.dart │ │ │ │ │ │ ├── formal_parameter_builder.dart │ │ │ │ │ │ ├── function_builder.dart │ │ │ │ │ │ ├── function_type_builder.dart │ │ │ │ │ │ ├── future_or_type_declaration_builder.dart │ │ │ │ │ │ ├── inline_class_builder.dart │ │ │ │ │ │ ├── invalid_type_builder.dart │ │ │ │ │ │ ├── invalid_type_declaration_builder.dart │ │ │ │ │ │ ├── library_builder.dart │ │ │ │ │ │ ├── member_builder.dart │ │ │ │ │ │ ├── metadata_builder.dart │ │ │ │ │ │ ├── mixin_application_builder.dart │ │ │ │ │ │ ├── modifier_builder.dart │ │ │ │ │ │ ├── name_iterator.dart │ │ │ │ │ │ ├── named_type_builder.dart │ │ │ │ │ │ ├── never_type_declaration_builder.dart │ │ │ │ │ │ ├── null_type_declaration_builder.dart │ │ │ │ │ │ ├── nullability_builder.dart │ │ │ │ │ │ ├── omitted_type_builder.dart │ │ │ │ │ │ ├── prefix_builder.dart │ │ │ │ │ │ ├── procedure_builder.dart │ │ │ │ │ │ ├── record_type_builder.dart │ │ │ │ │ │ ├── type_alias_builder.dart │ │ │ │ │ │ ├── type_builder.dart │ │ │ │ │ │ ├── type_declaration_builder.dart │ │ │ │ │ │ ├── type_variable_builder.dart │ │ │ │ │ │ ├── variable_builder.dart │ │ │ │ │ │ └── void_type_declaration_builder.dart │ │ │ │ │ ├── builder_graph.dart │ │ │ │ │ ├── combinator.dart │ │ │ │ │ ├── command_line_reporting.dart │ │ │ │ │ ├── compiler_context.dart │ │ │ │ │ ├── configuration.dart │ │ │ │ │ ├── constant_context.dart │ │ │ │ │ ├── crash.dart │ │ │ │ │ ├── denylisted_classes.dart │ │ │ │ │ ├── diagnostics.md │ │ │ │ │ ├── dill │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dill_class_builder.dart │ │ │ │ │ │ ├── dill_extension_builder.dart │ │ │ │ │ │ ├── dill_extension_member_builder.dart │ │ │ │ │ │ ├── dill_library_builder.dart │ │ │ │ │ │ ├── dill_loader.dart │ │ │ │ │ │ ├── dill_member_builder.dart │ │ │ │ │ │ ├── dill_target.dart │ │ │ │ │ │ └── dill_type_alias_builder.dart │ │ │ │ │ ├── export.dart │ │ │ │ │ ├── fasta_codes.dart │ │ │ │ │ ├── fasta_codes_cfe_generated.dart │ │ │ │ │ ├── get_dependencies.dart │ │ │ │ │ ├── hybrid_file_system.dart │ │ │ │ │ ├── identifiers.dart │ │ │ │ │ ├── ignored_parser_errors.dart │ │ │ │ │ ├── import.dart │ │ │ │ │ ├── import_chains.dart │ │ │ │ │ ├── incremental_compiler.dart │ │ │ │ │ ├── incremental_serializer.dart │ │ │ │ │ ├── kernel │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── augmentation_lowering.dart │ │ │ │ │ │ ├── benchmarker.dart │ │ │ │ │ │ ├── body_builder.dart │ │ │ │ │ │ ├── collections.dart │ │ │ │ │ │ ├── combined_member_signature.dart │ │ │ │ │ │ ├── const_conditional_simplifier.dart │ │ │ │ │ │ ├── constant_collection_builders.dart │ │ │ │ │ │ ├── constant_evaluator.dart │ │ │ │ │ │ ├── constant_int_folder.dart │ │ │ │ │ │ ├── constness.dart │ │ │ │ │ │ ├── constructor_tearoff_lowering.dart │ │ │ │ │ │ ├── exhaustiveness.dart │ │ │ │ │ │ ├── expression_generator.dart │ │ │ │ │ │ ├── expression_generator_helper.dart │ │ │ │ │ │ ├── forest.dart │ │ │ │ │ │ ├── forwarding_node.dart │ │ │ │ │ │ ├── hierarchy │ │ │ │ │ │ │ ├── class_member.dart │ │ │ │ │ │ │ ├── delayed.dart │ │ │ │ │ │ │ ├── hierarchy_builder.dart │ │ │ │ │ │ │ ├── hierarchy_node.dart │ │ │ │ │ │ │ ├── members_builder.dart │ │ │ │ │ │ │ ├── members_node.dart │ │ │ │ │ │ │ └── mixin_inferrer.dart │ │ │ │ │ │ ├── implicit_field_type.dart │ │ │ │ │ │ ├── implicit_type_argument.dart │ │ │ │ │ │ ├── internal_ast.dart │ │ │ │ │ │ ├── invalid_type.dart │ │ │ │ │ │ ├── kernel_constants.dart │ │ │ │ │ │ ├── kernel_helper.dart │ │ │ │ │ │ ├── kernel_target.dart │ │ │ │ │ │ ├── kernel_variable_builder.dart │ │ │ │ │ │ ├── late_lowering.dart │ │ │ │ │ │ ├── load_library_builder.dart │ │ │ │ │ │ ├── macro │ │ │ │ │ │ │ ├── annotation_parser.dart │ │ │ │ │ │ │ ├── identifiers.dart │ │ │ │ │ │ │ └── macro.dart │ │ │ │ │ │ ├── member_covariance.dart │ │ │ │ │ │ ├── redirecting_factory_body.dart │ │ │ │ │ │ ├── static_weak_references.dart │ │ │ │ │ │ ├── try_constant_evaluator.dart │ │ │ │ │ │ ├── type_algorithms.dart │ │ │ │ │ │ ├── type_builder_computer.dart │ │ │ │ │ │ ├── type_labeler.dart │ │ │ │ │ │ ├── utils.dart │ │ │ │ │ │ └── verifier.dart │ │ │ │ │ ├── library_graph.dart │ │ │ │ │ ├── loader.dart │ │ │ │ │ ├── messages.dart │ │ │ │ │ ├── modifier.dart │ │ │ │ │ ├── names.dart │ │ │ │ │ ├── operator.dart │ │ │ │ │ ├── problems.dart │ │ │ │ │ ├── scope.dart │ │ │ │ │ ├── source │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── class_declaration.dart │ │ │ │ │ │ ├── constructor_declaration.dart │ │ │ │ │ │ ├── diet_listener.dart │ │ │ │ │ │ ├── diet_parser.dart │ │ │ │ │ │ ├── directive_listener.dart │ │ │ │ │ │ ├── name_scheme.dart │ │ │ │ │ │ ├── outline_builder.dart │ │ │ │ │ │ ├── source_builder_mixins.dart │ │ │ │ │ │ ├── source_class_builder.dart │ │ │ │ │ │ ├── source_constructor_builder.dart │ │ │ │ │ │ ├── source_enum_builder.dart │ │ │ │ │ │ ├── source_extension_builder.dart │ │ │ │ │ │ ├── source_factory_builder.dart │ │ │ │ │ │ ├── source_field_builder.dart │ │ │ │ │ │ ├── source_function_builder.dart │ │ │ │ │ │ ├── source_inline_class_builder.dart │ │ │ │ │ │ ├── source_library_builder.dart │ │ │ │ │ │ ├── source_loader.dart │ │ │ │ │ │ ├── source_member_builder.dart │ │ │ │ │ │ ├── source_procedure_builder.dart │ │ │ │ │ │ ├── source_type_alias_builder.dart │ │ │ │ │ │ ├── stack_listener_impl.dart │ │ │ │ │ │ └── value_kinds.dart │ │ │ │ │ ├── target_implementation.dart │ │ │ │ │ ├── ticker.dart │ │ │ │ │ ├── type_inference │ │ │ │ │ │ ├── closure_context.dart │ │ │ │ │ │ ├── delayed_expressions.dart │ │ │ │ │ │ ├── external_ast_helper.dart │ │ │ │ │ │ ├── factor_type.dart │ │ │ │ │ │ ├── for_in.dart │ │ │ │ │ │ ├── inference_helper.dart │ │ │ │ │ │ ├── inference_results.dart │ │ │ │ │ │ ├── inference_visitor.dart │ │ │ │ │ │ ├── inference_visitor_base.dart │ │ │ │ │ │ ├── matching_cache.dart │ │ │ │ │ │ ├── matching_expressions.dart │ │ │ │ │ │ ├── mixin_inferrer.dart │ │ │ │ │ │ ├── object_access_target.dart │ │ │ │ │ │ ├── shared_type_analyzer.dart │ │ │ │ │ │ ├── stack_values.dart │ │ │ │ │ │ ├── standard_bounds.dart │ │ │ │ │ │ ├── type_constraint_gatherer.dart │ │ │ │ │ │ ├── type_demotion.dart │ │ │ │ │ │ ├── type_inference_engine.dart │ │ │ │ │ │ ├── type_inferrer.dart │ │ │ │ │ │ ├── type_schema.dart │ │ │ │ │ │ ├── type_schema_elimination.dart │ │ │ │ │ │ └── type_schema_environment.dart │ │ │ │ │ ├── uri_offset.dart │ │ │ │ │ ├── uri_translator.dart │ │ │ │ │ ├── uris.dart │ │ │ │ │ └── util │ │ │ │ │ │ ├── abstracted_ast_nodes.dart │ │ │ │ │ │ ├── bytes_sink.dart │ │ │ │ │ │ ├── error_reporter_file_copier.dart │ │ │ │ │ │ ├── experiment_environment_getter.dart │ │ │ │ │ │ ├── helpers.dart │ │ │ │ │ │ ├── outline_extractor.dart │ │ │ │ │ │ ├── parser_ast.dart │ │ │ │ │ │ ├── parser_ast_helper.dart │ │ │ │ │ │ └── textual_outline.dart │ │ │ │ ├── isolate_macro_serializer.dart │ │ │ │ ├── kernel_generator_impl.dart │ │ │ │ ├── macro_serializer.dart │ │ │ │ ├── scheme_based_file_system.dart │ │ │ │ ├── temp_dir_macro_serializer.dart │ │ │ │ └── testing │ │ │ │ │ ├── analysis_helper.dart │ │ │ │ │ ├── compiler_common.dart │ │ │ │ │ ├── id_extractor.dart │ │ │ │ │ ├── id_testing_helper.dart │ │ │ │ │ └── id_testing_utils.dart │ │ │ └── widget_cache.dart │ │ ├── messages.status │ │ ├── messages.yaml │ │ ├── outline_extraction_testcases │ │ │ ├── conditional_imports_exports │ │ │ │ ├── a.dart │ │ │ │ ├── a2.dart │ │ │ │ ├── b.dart │ │ │ │ ├── b2.dart │ │ │ │ ├── c.dart │ │ │ │ ├── c2.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── conditional_imports_exports_2 │ │ │ │ ├── exists.dart │ │ │ │ ├── exists2.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── exports_export_01 │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ ├── test10.dart │ │ │ │ ├── test8.dart │ │ │ │ └── test9.dart │ │ │ ├── exports_included │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ ├── test6.dart │ │ │ │ └── test7.dart │ │ │ ├── extends │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── factories │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ └── test11.dart │ │ │ ├── field_dotting_in │ │ │ │ ├── b.dart │ │ │ │ ├── c.dart │ │ │ │ ├── d.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── fields │ │ │ │ ├── bar.dart │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── import_prefix_overlap_with_field │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ └── test16.dart │ │ │ ├── import_with_prefix │ │ │ │ ├── bar.dart │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── import_with_prefix_02 │ │ │ │ ├── a.dart │ │ │ │ ├── b.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── initial_various │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ ├── test3.dart │ │ │ │ ├── test4.dart │ │ │ │ └── test5.dart │ │ │ ├── keeps_dart_version │ │ │ │ ├── bar.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── metadata_01 │ │ │ │ ├── a.dart │ │ │ │ ├── b.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── metadata_02 │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ ├── nottest15.dart │ │ │ │ └── test15.dart │ │ │ ├── named_import_with_export_and_named_constructor_and_class_type_parameter │ │ │ │ ├── a.dart │ │ │ │ ├── b.dart │ │ │ │ ├── c.dart │ │ │ │ ├── d.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── named_mixin │ │ │ │ ├── bar.dart │ │ │ │ ├── baz.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── outline_extractor.status │ │ │ ├── part_01 │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ ├── test12.dart │ │ │ │ ├── test12_part1.dart │ │ │ │ ├── test12_part2.dart │ │ │ │ ├── test13.dart │ │ │ │ ├── test13andahalf.dart │ │ │ │ └── test14.dart │ │ │ ├── part_and_library_name │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ ├── test3.dart │ │ │ │ └── test3_part.dart │ │ │ ├── split_import_export_part │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ ├── main.dart.outline_extracted │ │ │ │ └── part.dart │ │ │ ├── type_parameter_extends │ │ │ │ ├── bar.dart │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── type_parameter_on_extension │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── unused_import │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── unused_import_02 │ │ │ │ ├── bar.dart │ │ │ │ ├── baz.dart │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── use_of_imported_extension │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ ├── use_of_imported_extension_2 │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ │ └── use_of_imported_extension_3 │ │ │ │ ├── foo.dart │ │ │ │ ├── main.dart │ │ │ │ └── main.dart.outline_extracted │ │ ├── parser_testcases │ │ │ ├── augmentation │ │ │ │ ├── augment_super.dart │ │ │ │ ├── augment_super.dart.expect │ │ │ │ ├── augment_super.dart.intertwined.expect │ │ │ │ ├── augment_super.dart.parser.expect │ │ │ │ ├── augment_super.dart.scanner.expect │ │ │ │ ├── member_declarations.dart │ │ │ │ ├── member_declarations.dart.expect │ │ │ │ ├── member_declarations.dart.intertwined.expect │ │ │ │ ├── member_declarations.dart.parser.expect │ │ │ │ ├── member_declarations.dart.scanner.expect │ │ │ │ ├── member_errors.dart │ │ │ │ ├── member_errors.dart.expect │ │ │ │ ├── member_errors.dart.intertwined.expect │ │ │ │ ├── member_errors.dart.parser.expect │ │ │ │ ├── member_errors.dart.scanner.expect │ │ │ │ ├── top_level_declarations.dart │ │ │ │ ├── top_level_declarations.dart.expect │ │ │ │ ├── top_level_declarations.dart.intertwined.expect │ │ │ │ ├── top_level_declarations.dart.parser.expect │ │ │ │ ├── top_level_declarations.dart.scanner.expect │ │ │ │ ├── top_level_errors.dart │ │ │ │ ├── top_level_errors.dart.expect │ │ │ │ ├── top_level_errors.dart.intertwined.expect │ │ │ │ ├── top_level_errors.dart.parser.expect │ │ │ │ └── top_level_errors.dart.scanner.expect │ │ │ ├── class_modifiers │ │ │ │ ├── base │ │ │ │ │ ├── base_class_declaration.dart │ │ │ │ │ ├── base_class_declaration.dart.expect │ │ │ │ │ ├── base_class_declaration.dart.intertwined.expect │ │ │ │ │ ├── base_class_declaration.dart.parser.expect │ │ │ │ │ └── base_class_declaration.dart.scanner.expect │ │ │ │ ├── final │ │ │ │ │ ├── final_class_declaration.dart │ │ │ │ │ ├── final_class_declaration.dart.expect │ │ │ │ │ ├── final_class_declaration.dart.intertwined.expect │ │ │ │ │ ├── final_class_declaration.dart.parser.expect │ │ │ │ │ └── final_class_declaration.dart.scanner.expect │ │ │ │ ├── interface │ │ │ │ │ ├── interface_class_declaration.dart │ │ │ │ │ ├── interface_class_declaration.dart.expect │ │ │ │ │ ├── interface_class_declaration.dart.intertwined.expect │ │ │ │ │ ├── interface_class_declaration.dart.parser.expect │ │ │ │ │ └── interface_class_declaration.dart.scanner.expect │ │ │ │ └── mixin │ │ │ │ │ ├── mixin_class.dart │ │ │ │ │ ├── mixin_class.dart.expect │ │ │ │ │ ├── mixin_class.dart.intertwined.expect │ │ │ │ │ ├── mixin_class.dart.parser.expect │ │ │ │ │ └── mixin_class.dart.scanner.expect │ │ │ ├── enhanced_enums │ │ │ │ ├── entries_with_type_arguments.dart │ │ │ │ ├── entries_with_type_arguments.dart.expect │ │ │ │ ├── entries_with_type_arguments.dart.intertwined.expect │ │ │ │ ├── entries_with_type_arguments.dart.parser.expect │ │ │ │ └── entries_with_type_arguments.dart.scanner.expect │ │ │ ├── error_recovery │ │ │ │ ├── await_not_in_async.dart │ │ │ │ ├── await_not_in_async.dart.expect │ │ │ │ ├── await_not_in_async.dart.intertwined.expect │ │ │ │ ├── await_not_in_async.dart.parser.expect │ │ │ │ ├── await_not_in_async.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_00.dart │ │ │ │ ├── bracket_mismatch_00.dart.expect │ │ │ │ ├── bracket_mismatch_00.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_00.dart.parser.expect │ │ │ │ ├── bracket_mismatch_00.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_01.dart │ │ │ │ ├── bracket_mismatch_01.dart.expect │ │ │ │ ├── bracket_mismatch_01.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_01.dart.parser.expect │ │ │ │ ├── bracket_mismatch_01.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_02.dart │ │ │ │ ├── bracket_mismatch_02.dart.expect │ │ │ │ ├── bracket_mismatch_02.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_02.dart.parser.expect │ │ │ │ ├── bracket_mismatch_02.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_03.dart │ │ │ │ ├── bracket_mismatch_03.dart.expect │ │ │ │ ├── bracket_mismatch_03.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_03.dart.parser.expect │ │ │ │ ├── bracket_mismatch_03.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_04.dart │ │ │ │ ├── bracket_mismatch_04.dart.expect │ │ │ │ ├── bracket_mismatch_04.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_04.dart.parser.expect │ │ │ │ ├── bracket_mismatch_04.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_05.dart │ │ │ │ ├── bracket_mismatch_05.dart.expect │ │ │ │ ├── bracket_mismatch_05.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_05.dart.parser.expect │ │ │ │ ├── bracket_mismatch_05.dart.scanner.expect │ │ │ │ ├── bracket_mismatch_06.dart │ │ │ │ ├── bracket_mismatch_06.dart.expect │ │ │ │ ├── bracket_mismatch_06.dart.intertwined.expect │ │ │ │ ├── bracket_mismatch_06.dart.parser.expect │ │ │ │ ├── bracket_mismatch_06.dart.scanner.expect │ │ │ │ ├── comment_on_non_ascii_identifier.dart │ │ │ │ ├── comment_on_non_ascii_identifier.dart.expect │ │ │ │ ├── comment_on_non_ascii_identifier.dart.intertwined.expect │ │ │ │ ├── comment_on_non_ascii_identifier.dart.parser.expect │ │ │ │ ├── comment_on_non_ascii_identifier.dart.scanner.expect │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.expect │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.intertwined.expect │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.parser.expect │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.scanner.expect │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.expect │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.intertwined.expect │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.parser.expect │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.scanner.expect │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.expect │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.intertwined.expect │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.parser.expect │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.scanner.expect │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.expect │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.intertwined.expect │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.parser.expect │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.scanner.expect │ │ │ │ ├── constructor_recovery_get.dart │ │ │ │ ├── constructor_recovery_get.dart.expect │ │ │ │ ├── constructor_recovery_get.dart.intertwined.expect │ │ │ │ ├── constructor_recovery_get.dart.parser.expect │ │ │ │ ├── constructor_recovery_get.dart.scanner.expect │ │ │ │ ├── constructor_recovery_ok.dart │ │ │ │ ├── constructor_recovery_ok.dart.expect │ │ │ │ ├── constructor_recovery_ok.dart.intertwined.expect │ │ │ │ ├── constructor_recovery_ok.dart.parser.expect │ │ │ │ ├── constructor_recovery_ok.dart.scanner.expect │ │ │ │ ├── constructor_recovery_operator.crash_dart │ │ │ │ ├── constructor_recovery_operator.crash_dart.expect │ │ │ │ ├── constructor_recovery_operator.crash_dart.intertwined.expect │ │ │ │ ├── constructor_recovery_operator.crash_dart.parser.expect │ │ │ │ ├── constructor_recovery_operator.crash_dart.scanner.expect │ │ │ │ ├── constructor_recovery_return_type.dart │ │ │ │ ├── constructor_recovery_return_type.dart.expect │ │ │ │ ├── constructor_recovery_return_type.dart.intertwined.expect │ │ │ │ ├── constructor_recovery_return_type.dart.parser.expect │ │ │ │ ├── constructor_recovery_return_type.dart.scanner.expect │ │ │ │ ├── constructor_recovery_set.dart │ │ │ │ ├── constructor_recovery_set.dart.expect │ │ │ │ ├── constructor_recovery_set.dart.intertwined.expect │ │ │ │ ├── constructor_recovery_set.dart.parser.expect │ │ │ │ ├── constructor_recovery_set.dart.scanner.expect │ │ │ │ ├── empty_await_for.dart │ │ │ │ ├── empty_await_for.dart.expect │ │ │ │ ├── empty_await_for.dart.intertwined.expect │ │ │ │ ├── empty_await_for.dart.parser.expect │ │ │ │ ├── empty_await_for.dart.scanner.expect │ │ │ │ ├── empty_for.dart │ │ │ │ ├── empty_for.dart.expect │ │ │ │ ├── empty_for.dart.intertwined.expect │ │ │ │ ├── empty_for.dart.parser.expect │ │ │ │ ├── empty_for.dart.scanner.expect │ │ │ │ ├── extension_member_contributor_test_completion.dart │ │ │ │ ├── extension_member_contributor_test_completion.dart.expect │ │ │ │ ├── extension_member_contributor_test_completion.dart.intertwined.expect │ │ │ │ ├── extension_member_contributor_test_completion.dart.parser.expect │ │ │ │ ├── extension_member_contributor_test_completion.dart.scanner.expect │ │ │ │ ├── for_in_with_colon.dart │ │ │ │ ├── for_in_with_colon.dart.expect │ │ │ │ ├── for_in_with_colon.dart.intertwined.expect │ │ │ │ ├── for_in_with_colon.dart.parser.expect │ │ │ │ ├── for_in_with_colon.dart.scanner.expect │ │ │ │ ├── issue_000032.dart │ │ │ │ ├── issue_000032.dart.expect │ │ │ │ ├── issue_000032.dart.intertwined.expect │ │ │ │ ├── issue_000032.dart.parser.expect │ │ │ │ ├── issue_000032.dart.scanner.expect │ │ │ │ ├── issue_22313.dart │ │ │ │ ├── issue_22313.dart.expect │ │ │ │ ├── issue_22313.dart.intertwined.expect │ │ │ │ ├── issue_22313.dart.parser.expect │ │ │ │ ├── issue_22313.dart.scanner.expect │ │ │ │ ├── issue_22314.dart │ │ │ │ ├── issue_22314.dart.expect │ │ │ │ ├── issue_22314.dart.intertwined.expect │ │ │ │ ├── issue_22314.dart.parser.expect │ │ │ │ ├── issue_22314.dart.scanner.expect │ │ │ │ ├── issue_26073.dart │ │ │ │ ├── issue_26073.dart.expect │ │ │ │ ├── issue_26073.dart.intertwined.expect │ │ │ │ ├── issue_26073.dart.parser.expect │ │ │ │ ├── issue_26073.dart.scanner.expect │ │ │ │ ├── issue_26810.dart │ │ │ │ ├── issue_26810.dart.expect │ │ │ │ ├── issue_26810.dart.intertwined.expect │ │ │ │ ├── issue_26810.dart.parser.expect │ │ │ │ ├── issue_26810.dart.scanner.expect │ │ │ │ ├── issue_26810_and.dart │ │ │ │ ├── issue_26810_and.dart.expect │ │ │ │ ├── issue_26810_and.dart.intertwined.expect │ │ │ │ ├── issue_26810_and.dart.parser.expect │ │ │ │ ├── issue_26810_and.dart.scanner.expect │ │ │ │ ├── issue_26810_or.dart │ │ │ │ ├── issue_26810_or.dart.expect │ │ │ │ ├── issue_26810_or.dart.intertwined.expect │ │ │ │ ├── issue_26810_or.dart.parser.expect │ │ │ │ ├── issue_26810_or.dart.scanner.expect │ │ │ │ ├── issue_38415.crash_dart │ │ │ │ ├── issue_38415.crash_dart.expect │ │ │ │ ├── issue_38415.crash_dart.intertwined.expect │ │ │ │ ├── issue_38415.crash_dart.parser.expect │ │ │ │ ├── issue_38415.crash_dart.scanner.expect │ │ │ │ ├── issue_39024.crash_dart │ │ │ │ ├── issue_39024.crash_dart.expect │ │ │ │ ├── issue_39024.crash_dart.intertwined.expect │ │ │ │ ├── issue_39024.crash_dart.parser.expect │ │ │ │ ├── issue_39024.crash_dart.scanner.expect │ │ │ │ ├── issue_39026.crash_dart │ │ │ │ ├── issue_39026.crash_dart.expect │ │ │ │ ├── issue_39026.crash_dart.intertwined.expect │ │ │ │ ├── issue_39026.crash_dart.parser.expect │ │ │ │ ├── issue_39026.crash_dart.scanner.expect │ │ │ │ ├── issue_39026_prime.crash_dart │ │ │ │ ├── issue_39026_prime.crash_dart.expect │ │ │ │ ├── issue_39026_prime.crash_dart.intertwined.expect │ │ │ │ ├── issue_39026_prime.crash_dart.parser.expect │ │ │ │ ├── issue_39026_prime.crash_dart.scanner.expect │ │ │ │ ├── issue_39033.crash_dart │ │ │ │ ├── issue_39033.crash_dart.expect │ │ │ │ ├── issue_39033.crash_dart.intertwined.expect │ │ │ │ ├── issue_39033.crash_dart.parser.expect │ │ │ │ ├── issue_39033.crash_dart.scanner.expect │ │ │ │ ├── issue_39058.crash_dart │ │ │ │ ├── issue_39058.crash_dart.expect │ │ │ │ ├── issue_39058.crash_dart.intertwined.expect │ │ │ │ ├── issue_39058.crash_dart.parser.expect │ │ │ │ ├── issue_39058.crash_dart.scanner.expect │ │ │ │ ├── issue_39058_prime.crash_dart │ │ │ │ ├── issue_39058_prime.crash_dart.expect │ │ │ │ ├── issue_39058_prime.crash_dart.intertwined.expect │ │ │ │ ├── issue_39058_prime.crash_dart.parser.expect │ │ │ │ ├── issue_39058_prime.crash_dart.scanner.expect │ │ │ │ ├── issue_39060.dart │ │ │ │ ├── issue_39060.dart.expect │ │ │ │ ├── issue_39060.dart.intertwined.expect │ │ │ │ ├── issue_39060.dart.parser.expect │ │ │ │ ├── issue_39060.dart.scanner.expect │ │ │ │ ├── issue_39202.crash_dart │ │ │ │ ├── issue_39202.crash_dart.expect │ │ │ │ ├── issue_39202.crash_dart.intertwined.expect │ │ │ │ ├── issue_39202.crash_dart.parser.expect │ │ │ │ ├── issue_39202.crash_dart.scanner.expect │ │ │ │ ├── issue_39230.crash_dart │ │ │ │ ├── issue_39230.crash_dart.expect │ │ │ │ ├── issue_39230.crash_dart.intertwined.expect │ │ │ │ ├── issue_39230.crash_dart.parser.expect │ │ │ │ ├── issue_39230.crash_dart.scanner.expect │ │ │ │ ├── issue_39958_01.dart │ │ │ │ ├── issue_39958_01.dart.expect │ │ │ │ ├── issue_39958_01.dart.intertwined.expect │ │ │ │ ├── issue_39958_01.dart.parser.expect │ │ │ │ ├── issue_39958_01.dart.scanner.expect │ │ │ │ ├── issue_39958_02.dart │ │ │ │ ├── issue_39958_02.dart.expect │ │ │ │ ├── issue_39958_02.dart.intertwined.expect │ │ │ │ ├── issue_39958_02.dart.parser.expect │ │ │ │ ├── issue_39958_02.dart.scanner.expect │ │ │ │ ├── issue_39958_03.dart │ │ │ │ ├── issue_39958_03.dart.expect │ │ │ │ ├── issue_39958_03.dart.intertwined.expect │ │ │ │ ├── issue_39958_03.dart.parser.expect │ │ │ │ ├── issue_39958_03.dart.scanner.expect │ │ │ │ ├── issue_39958_04.dart │ │ │ │ ├── issue_39958_04.dart.expect │ │ │ │ ├── issue_39958_04.dart.intertwined.expect │ │ │ │ ├── issue_39958_04.dart.parser.expect │ │ │ │ ├── issue_39958_04.dart.scanner.expect │ │ │ │ ├── issue_41265.crash_dart │ │ │ │ ├── issue_41265.crash_dart.expect │ │ │ │ ├── issue_41265.crash_dart.intertwined.expect │ │ │ │ ├── issue_41265.crash_dart.parser.expect │ │ │ │ ├── issue_41265.crash_dart.scanner.expect │ │ │ │ ├── issue_42229.crash_dart │ │ │ │ ├── issue_42229.crash_dart.expect │ │ │ │ ├── issue_42229.crash_dart.intertwined.expect │ │ │ │ ├── issue_42229.crash_dart.parser.expect │ │ │ │ ├── issue_42229.crash_dart.scanner.expect │ │ │ │ ├── issue_42229_prime.crash_dart │ │ │ │ ├── issue_42229_prime.crash_dart.expect │ │ │ │ ├── issue_42229_prime.crash_dart.intertwined.expect │ │ │ │ ├── issue_42229_prime.crash_dart.parser.expect │ │ │ │ ├── issue_42229_prime.crash_dart.scanner.expect │ │ │ │ ├── issue_42229_prime_2.crash_dart │ │ │ │ ├── issue_42229_prime_2.crash_dart.expect │ │ │ │ ├── issue_42229_prime_2.crash_dart.intertwined.expect │ │ │ │ ├── issue_42229_prime_2.crash_dart.parser.expect │ │ │ │ ├── issue_42229_prime_2.crash_dart.scanner.expect │ │ │ │ ├── issue_42229_prime_3.crash_dart │ │ │ │ ├── issue_42229_prime_3.crash_dart.expect │ │ │ │ ├── issue_42229_prime_3.crash_dart.intertwined.expect │ │ │ │ ├── issue_42229_prime_3.crash_dart.parser.expect │ │ │ │ ├── issue_42229_prime_3.crash_dart.scanner.expect │ │ │ │ ├── issue_42229_prime_4.crash_dart │ │ │ │ ├── issue_42229_prime_4.crash_dart.expect │ │ │ │ ├── issue_42229_prime_4.crash_dart.intertwined.expect │ │ │ │ ├── issue_42229_prime_4.crash_dart.parser.expect │ │ │ │ ├── issue_42229_prime_4.crash_dart.scanner.expect │ │ │ │ ├── issue_42229_prime_5.dart │ │ │ │ ├── issue_42229_prime_5.dart.expect │ │ │ │ ├── issue_42229_prime_5.dart.intertwined.expect │ │ │ │ ├── issue_42229_prime_5.dart.parser.expect │ │ │ │ ├── issue_42229_prime_5.dart.scanner.expect │ │ │ │ ├── issue_42229_prime_6.dart │ │ │ │ ├── issue_42229_prime_6.dart.expect │ │ │ │ ├── issue_42229_prime_6.dart.intertwined.expect │ │ │ │ ├── issue_42229_prime_6.dart.parser.expect │ │ │ │ ├── issue_42229_prime_6.dart.scanner.expect │ │ │ │ ├── issue_42267.dart │ │ │ │ ├── issue_42267.dart.expect │ │ │ │ ├── issue_42267.dart.intertwined.expect │ │ │ │ ├── issue_42267.dart.parser.expect │ │ │ │ ├── issue_42267.dart.scanner.expect │ │ │ │ ├── issue_43090.crash_dart │ │ │ │ ├── issue_43090.crash_dart.expect │ │ │ │ ├── issue_43090.crash_dart.intertwined.expect │ │ │ │ ├── issue_43090.crash_dart.parser.expect │ │ │ │ ├── issue_43090.crash_dart.scanner.expect │ │ │ │ ├── issue_43090_prime_01.crash_dart │ │ │ │ ├── issue_43090_prime_01.crash_dart.expect │ │ │ │ ├── issue_43090_prime_01.crash_dart.intertwined.expect │ │ │ │ ├── issue_43090_prime_01.crash_dart.parser.expect │ │ │ │ ├── issue_43090_prime_01.crash_dart.scanner.expect │ │ │ │ ├── issue_43090_prime_02.crash_dart │ │ │ │ ├── issue_43090_prime_02.crash_dart.expect │ │ │ │ ├── issue_43090_prime_02.crash_dart.intertwined.expect │ │ │ │ ├── issue_43090_prime_02.crash_dart.parser.expect │ │ │ │ ├── issue_43090_prime_02.crash_dart.scanner.expect │ │ │ │ ├── issue_44785.crash_dart │ │ │ │ ├── issue_44785.crash_dart.expect │ │ │ │ ├── issue_44785.crash_dart.intertwined.expect │ │ │ │ ├── issue_44785.crash_dart.parser.expect │ │ │ │ ├── issue_44785.crash_dart.scanner.expect │ │ │ │ ├── issue_44785_prime_1.crash_dart │ │ │ │ ├── issue_44785_prime_1.crash_dart.expect │ │ │ │ ├── issue_44785_prime_1.crash_dart.intertwined.expect │ │ │ │ ├── issue_44785_prime_1.crash_dart.parser.expect │ │ │ │ ├── issue_44785_prime_1.crash_dart.scanner.expect │ │ │ │ ├── issue_44785_prime_2.crash_dart │ │ │ │ ├── issue_44785_prime_2.crash_dart.expect │ │ │ │ ├── issue_44785_prime_2.crash_dart.intertwined.expect │ │ │ │ ├── issue_44785_prime_2.crash_dart.parser.expect │ │ │ │ ├── issue_44785_prime_2.crash_dart.scanner.expect │ │ │ │ ├── issue_45251.dart │ │ │ │ ├── issue_45251.dart.expect │ │ │ │ ├── issue_45251.dart.intertwined.expect │ │ │ │ ├── issue_45251.dart.parser.expect │ │ │ │ ├── issue_45251.dart.scanner.expect │ │ │ │ ├── issue_45251_const.dart │ │ │ │ ├── issue_45251_const.dart.expect │ │ │ │ ├── issue_45251_const.dart.intertwined.expect │ │ │ │ ├── issue_45251_const.dart.parser.expect │ │ │ │ ├── issue_45251_const.dart.scanner.expect │ │ │ │ ├── issue_45251_list.dart │ │ │ │ ├── issue_45251_list.dart.expect │ │ │ │ ├── issue_45251_list.dart.intertwined.expect │ │ │ │ ├── issue_45251_list.dart.parser.expect │ │ │ │ ├── issue_45251_list.dart.scanner.expect │ │ │ │ ├── issue_45251_list_const.dart │ │ │ │ ├── issue_45251_list_const.dart.expect │ │ │ │ ├── issue_45251_list_const.dart.intertwined.expect │ │ │ │ ├── issue_45251_list_const.dart.parser.expect │ │ │ │ ├── issue_45251_list_const.dart.scanner.expect │ │ │ │ ├── issue_45251_list_new.dart │ │ │ │ ├── issue_45251_list_new.dart.expect │ │ │ │ ├── issue_45251_list_new.dart.intertwined.expect │ │ │ │ ├── issue_45251_list_new.dart.parser.expect │ │ │ │ ├── issue_45251_list_new.dart.scanner.expect │ │ │ │ ├── issue_45251_new.dart │ │ │ │ ├── issue_45251_new.dart.expect │ │ │ │ ├── issue_45251_new.dart.intertwined.expect │ │ │ │ ├── issue_45251_new.dart.parser.expect │ │ │ │ ├── issue_45251_new.dart.scanner.expect │ │ │ │ ├── issue_45251_set.dart │ │ │ │ ├── issue_45251_set.dart.expect │ │ │ │ ├── issue_45251_set.dart.intertwined.expect │ │ │ │ ├── issue_45251_set.dart.parser.expect │ │ │ │ ├── issue_45251_set.dart.scanner.expect │ │ │ │ ├── issue_45251_set_const.dart │ │ │ │ ├── issue_45251_set_const.dart.expect │ │ │ │ ├── issue_45251_set_const.dart.intertwined.expect │ │ │ │ ├── issue_45251_set_const.dart.parser.expect │ │ │ │ ├── issue_45251_set_const.dart.scanner.expect │ │ │ │ ├── issue_45251_set_new.dart │ │ │ │ ├── issue_45251_set_new.dart.expect │ │ │ │ ├── issue_45251_set_new.dart.intertwined.expect │ │ │ │ ├── issue_45251_set_new.dart.parser.expect │ │ │ │ ├── issue_45251_set_new.dart.scanner.expect │ │ │ │ ├── issue_45327.crash_dart │ │ │ │ ├── issue_45327.crash_dart.expect │ │ │ │ ├── issue_45327.crash_dart.intertwined.expect │ │ │ │ ├── issue_45327.crash_dart.parser.expect │ │ │ │ ├── issue_45327.crash_dart.scanner.expect │ │ │ │ ├── issue_45327_prime_1.crash_dart │ │ │ │ ├── issue_45327_prime_1.crash_dart.expect │ │ │ │ ├── issue_45327_prime_1.crash_dart.intertwined.expect │ │ │ │ ├── issue_45327_prime_1.crash_dart.parser.expect │ │ │ │ ├── issue_45327_prime_1.crash_dart.scanner.expect │ │ │ │ ├── issue_45662.crash_dart │ │ │ │ ├── issue_45662.crash_dart.expect │ │ │ │ ├── issue_45662.crash_dart.intertwined.expect │ │ │ │ ├── issue_45662.crash_dart.parser.expect │ │ │ │ ├── issue_45662.crash_dart.scanner.expect │ │ │ │ ├── issue_45662.equivalence_info │ │ │ │ ├── issue_45662_gt_gt.crash_dart │ │ │ │ ├── issue_45662_gt_gt.crash_dart.expect │ │ │ │ ├── issue_45662_gt_gt.crash_dart.intertwined.expect │ │ │ │ ├── issue_45662_gt_gt.crash_dart.parser.expect │ │ │ │ ├── issue_45662_gt_gt.crash_dart.scanner.expect │ │ │ │ ├── issue_45662_gt_gt.equivalence_info │ │ │ │ ├── issue_45662_gt_gt_prime.crash_dart │ │ │ │ ├── issue_45662_gt_gt_prime.crash_dart.expect │ │ │ │ ├── issue_45662_gt_gt_prime.crash_dart.intertwined.expect │ │ │ │ ├── issue_45662_gt_gt_prime.crash_dart.parser.expect │ │ │ │ ├── issue_45662_gt_gt_prime.crash_dart.scanner.expect │ │ │ │ ├── issue_45662_prime.crash_dart │ │ │ │ ├── issue_45662_prime.crash_dart.expect │ │ │ │ ├── issue_45662_prime.crash_dart.intertwined.expect │ │ │ │ ├── issue_45662_prime.crash_dart.parser.expect │ │ │ │ ├── issue_45662_prime.crash_dart.scanner.expect │ │ │ │ ├── issue_46346.dart │ │ │ │ ├── issue_46346.dart.expect │ │ │ │ ├── issue_46346.dart.intertwined.expect │ │ │ │ ├── issue_46346.dart.parser.expect │ │ │ │ ├── issue_46346.dart.scanner.expect │ │ │ │ ├── issue_46346_prime_1.dart │ │ │ │ ├── issue_46346_prime_1.dart.expect │ │ │ │ ├── issue_46346_prime_1.dart.intertwined.expect │ │ │ │ ├── issue_46346_prime_1.dart.parser.expect │ │ │ │ ├── issue_46346_prime_1.dart.scanner.expect │ │ │ │ ├── issue_46346_prime_2.dart │ │ │ │ ├── issue_46346_prime_2.dart.expect │ │ │ │ ├── issue_46346_prime_2.dart.intertwined.expect │ │ │ │ ├── issue_46346_prime_2.dart.parser.expect │ │ │ │ ├── issue_46346_prime_2.dart.scanner.expect │ │ │ │ ├── issue_46505.crash_dart │ │ │ │ ├── issue_46505.crash_dart.expect │ │ │ │ ├── issue_46505.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505.crash_dart.parser.expect │ │ │ │ ├── issue_46505.crash_dart.scanner.expect │ │ │ │ ├── issue_46505_prime_1.crash_dart │ │ │ │ ├── issue_46505_prime_1.crash_dart.expect │ │ │ │ ├── issue_46505_prime_1.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505_prime_1.crash_dart.parser.expect │ │ │ │ ├── issue_46505_prime_1.crash_dart.scanner.expect │ │ │ │ ├── issue_46505_prime_2.crash_dart │ │ │ │ ├── issue_46505_prime_2.crash_dart.expect │ │ │ │ ├── issue_46505_prime_2.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505_prime_2.crash_dart.parser.expect │ │ │ │ ├── issue_46505_prime_2.crash_dart.scanner.expect │ │ │ │ ├── issue_46505_prime_3.crash_dart │ │ │ │ ├── issue_46505_prime_3.crash_dart.expect │ │ │ │ ├── issue_46505_prime_3.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505_prime_3.crash_dart.parser.expect │ │ │ │ ├── issue_46505_prime_3.crash_dart.scanner.expect │ │ │ │ ├── issue_46505_prime_4.crash_dart │ │ │ │ ├── issue_46505_prime_4.crash_dart.expect │ │ │ │ ├── issue_46505_prime_4.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505_prime_4.crash_dart.parser.expect │ │ │ │ ├── issue_46505_prime_4.crash_dart.scanner.expect │ │ │ │ ├── issue_46505_prime_5.crash_dart │ │ │ │ ├── issue_46505_prime_5.crash_dart.expect │ │ │ │ ├── issue_46505_prime_5.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505_prime_5.crash_dart.parser.expect │ │ │ │ ├── issue_46505_prime_5.crash_dart.scanner.expect │ │ │ │ ├── issue_46505_prime_6.crash_dart │ │ │ │ ├── issue_46505_prime_6.crash_dart.expect │ │ │ │ ├── issue_46505_prime_6.crash_dart.intertwined.expect │ │ │ │ ├── issue_46505_prime_6.crash_dart.parser.expect │ │ │ │ ├── issue_46505_prime_6.crash_dart.scanner.expect │ │ │ │ ├── issue_46736.dart │ │ │ │ ├── issue_46736.dart.expect │ │ │ │ ├── issue_46736.dart.intertwined.expect │ │ │ │ ├── issue_46736.dart.parser.expect │ │ │ │ ├── issue_46736.dart.scanner.expect │ │ │ │ ├── issue_46736.equivalence_info │ │ │ │ ├── issue_46736_prime.dart │ │ │ │ ├── issue_46736_prime.dart.expect │ │ │ │ ├── issue_46736_prime.dart.intertwined.expect │ │ │ │ ├── issue_46736_prime.dart.parser.expect │ │ │ │ ├── issue_46736_prime.dart.scanner.expect │ │ │ │ ├── issue_48288.dart │ │ │ │ ├── issue_48288.dart.expect │ │ │ │ ├── issue_48288.dart.intertwined.expect │ │ │ │ ├── issue_48288.dart.parser.expect │ │ │ │ ├── issue_48288.dart.scanner.expect │ │ │ │ ├── issue_48288.equivalence_info │ │ │ │ ├── issue_48288_prime.dart │ │ │ │ ├── issue_48288_prime.dart.expect │ │ │ │ ├── issue_48288_prime.dart.intertwined.expect │ │ │ │ ├── issue_48288_prime.dart.parser.expect │ │ │ │ ├── issue_48288_prime.dart.scanner.expect │ │ │ │ ├── issue_48371.dart │ │ │ │ ├── issue_48371.dart.expect │ │ │ │ ├── issue_48371.dart.intertwined.expect │ │ │ │ ├── issue_48371.dart.parser.expect │ │ │ │ ├── issue_48371.dart.scanner.expect │ │ │ │ ├── issue_48371_prime1.dart │ │ │ │ ├── issue_48371_prime1.dart.expect │ │ │ │ ├── issue_48371_prime1.dart.intertwined.expect │ │ │ │ ├── issue_48371_prime1.dart.parser.expect │ │ │ │ ├── issue_48371_prime1.dart.scanner.expect │ │ │ │ ├── issue_48371_prime2.dart │ │ │ │ ├── issue_48371_prime2.dart.expect │ │ │ │ ├── issue_48371_prime2.dart.intertwined.expect │ │ │ │ ├── issue_48371_prime2.dart.parser.expect │ │ │ │ ├── issue_48371_prime2.dart.scanner.expect │ │ │ │ ├── issue_48371_prime3.dart │ │ │ │ ├── issue_48371_prime3.dart.expect │ │ │ │ ├── issue_48371_prime3.dart.intertwined.expect │ │ │ │ ├── issue_48371_prime3.dart.parser.expect │ │ │ │ ├── issue_48371_prime3.dart.scanner.expect │ │ │ │ ├── issue_48371_prime4.dart │ │ │ │ ├── issue_48371_prime4.dart.expect │ │ │ │ ├── issue_48371_prime4.dart.intertwined.expect │ │ │ │ ├── issue_48371_prime4.dart.parser.expect │ │ │ │ ├── issue_48371_prime4.dart.scanner.expect │ │ │ │ ├── issue_48380_1.dart │ │ │ │ ├── issue_48380_1.dart.expect │ │ │ │ ├── issue_48380_1.dart.intertwined.expect │ │ │ │ ├── issue_48380_1.dart.parser.expect │ │ │ │ ├── issue_48380_1.dart.scanner.expect │ │ │ │ ├── issue_48380_1.equivalence_info │ │ │ │ ├── issue_48380_1_comma.dart │ │ │ │ ├── issue_48380_1_comma.dart.expect │ │ │ │ ├── issue_48380_1_comma.dart.intertwined.expect │ │ │ │ ├── issue_48380_1_comma.dart.parser.expect │ │ │ │ ├── issue_48380_1_comma.dart.scanner.expect │ │ │ │ ├── issue_48380_1_comma.equivalence_info │ │ │ │ ├── issue_48380_1_comma_ok.dart │ │ │ │ ├── issue_48380_1_comma_ok.dart.expect │ │ │ │ ├── issue_48380_1_comma_ok.dart.intertwined.expect │ │ │ │ ├── issue_48380_1_comma_ok.dart.parser.expect │ │ │ │ ├── issue_48380_1_comma_ok.dart.scanner.expect │ │ │ │ ├── issue_48380_1_ok.dart │ │ │ │ ├── issue_48380_1_ok.dart.expect │ │ │ │ ├── issue_48380_1_ok.dart.intertwined.expect │ │ │ │ ├── issue_48380_1_ok.dart.parser.expect │ │ │ │ ├── issue_48380_1_ok.dart.scanner.expect │ │ │ │ ├── issue_48380_2.dart │ │ │ │ ├── issue_48380_2.dart.expect │ │ │ │ ├── issue_48380_2.dart.intertwined.expect │ │ │ │ ├── issue_48380_2.dart.parser.expect │ │ │ │ ├── issue_48380_2.dart.scanner.expect │ │ │ │ ├── issue_48380_2.equivalence_info │ │ │ │ ├── issue_48380_2_comma.dart │ │ │ │ ├── issue_48380_2_comma.dart.expect │ │ │ │ ├── issue_48380_2_comma.dart.intertwined.expect │ │ │ │ ├── issue_48380_2_comma.dart.parser.expect │ │ │ │ ├── issue_48380_2_comma.dart.scanner.expect │ │ │ │ ├── issue_48380_2_comma.equivalence_info │ │ │ │ ├── issue_48380_2_comma_ok.dart │ │ │ │ ├── issue_48380_2_comma_ok.dart.expect │ │ │ │ ├── issue_48380_2_comma_ok.dart.intertwined.expect │ │ │ │ ├── issue_48380_2_comma_ok.dart.parser.expect │ │ │ │ ├── issue_48380_2_comma_ok.dart.scanner.expect │ │ │ │ ├── issue_48380_2_ok.dart │ │ │ │ ├── issue_48380_2_ok.dart.expect │ │ │ │ ├── issue_48380_2_ok.dart.intertwined.expect │ │ │ │ ├── issue_48380_2_ok.dart.parser.expect │ │ │ │ ├── issue_48380_2_ok.dart.scanner.expect │ │ │ │ ├── issue_48380_3.dart │ │ │ │ ├── issue_48380_3.dart.expect │ │ │ │ ├── issue_48380_3.dart.intertwined.expect │ │ │ │ ├── issue_48380_3.dart.parser.expect │ │ │ │ ├── issue_48380_3.dart.scanner.expect │ │ │ │ ├── issue_48380_3.equivalence_info │ │ │ │ ├── issue_48380_3_comma.dart │ │ │ │ ├── issue_48380_3_comma.dart.expect │ │ │ │ ├── issue_48380_3_comma.dart.intertwined.expect │ │ │ │ ├── issue_48380_3_comma.dart.parser.expect │ │ │ │ ├── issue_48380_3_comma.dart.scanner.expect │ │ │ │ ├── issue_48380_3_comma.equivalence_info │ │ │ │ ├── issue_48380_3_comma_ok.dart │ │ │ │ ├── issue_48380_3_comma_ok.dart.expect │ │ │ │ ├── issue_48380_3_comma_ok.dart.intertwined.expect │ │ │ │ ├── issue_48380_3_comma_ok.dart.parser.expect │ │ │ │ ├── issue_48380_3_comma_ok.dart.scanner.expect │ │ │ │ ├── issue_48380_3_ok.dart │ │ │ │ ├── issue_48380_3_ok.dart.expect │ │ │ │ ├── issue_48380_3_ok.dart.intertwined.expect │ │ │ │ ├── issue_48380_3_ok.dart.parser.expect │ │ │ │ ├── issue_48380_3_ok.dart.scanner.expect │ │ │ │ ├── issue_48380_4.dart │ │ │ │ ├── issue_48380_4.dart.expect │ │ │ │ ├── issue_48380_4.dart.intertwined.expect │ │ │ │ ├── issue_48380_4.dart.parser.expect │ │ │ │ ├── issue_48380_4.dart.scanner.expect │ │ │ │ ├── issue_48411.dart │ │ │ │ ├── issue_48411.dart.expect │ │ │ │ ├── issue_48411.dart.intertwined.expect │ │ │ │ ├── issue_48411.dart.parser.expect │ │ │ │ ├── issue_48411.dart.scanner.expect │ │ │ │ ├── issue_48411.equivalence_info │ │ │ │ ├── issue_48411_prime.dart │ │ │ │ ├── issue_48411_prime.dart.expect │ │ │ │ ├── issue_48411_prime.dart.intertwined.expect │ │ │ │ ├── issue_48411_prime.dart.parser.expect │ │ │ │ ├── issue_48411_prime.dart.scanner.expect │ │ │ │ ├── issue_48411_prime_1.dart │ │ │ │ ├── issue_48411_prime_1.dart.expect │ │ │ │ ├── issue_48411_prime_1.dart.intertwined.expect │ │ │ │ ├── issue_48411_prime_1.dart.parser.expect │ │ │ │ ├── issue_48411_prime_1.dart.scanner.expect │ │ │ │ ├── issue_49116.dart │ │ │ │ ├── issue_49116.dart.expect │ │ │ │ ├── issue_49116.dart.intertwined.expect │ │ │ │ ├── issue_49116.dart.parser.expect │ │ │ │ ├── issue_49116.dart.scanner.expect │ │ │ │ ├── issue_50908.dart │ │ │ │ ├── issue_50908.dart.expect │ │ │ │ ├── issue_50908.dart.intertwined.expect │ │ │ │ ├── issue_50908.dart.parser.expect │ │ │ │ ├── issue_50908.dart.scanner.expect │ │ │ │ ├── issue_50908_ok.dart │ │ │ │ ├── issue_50908_ok.dart.expect │ │ │ │ ├── issue_50908_ok.dart.intertwined.expect │ │ │ │ ├── issue_50908_ok.dart.parser.expect │ │ │ │ ├── issue_50908_ok.dart.scanner.expect │ │ │ │ ├── issue_50908_ok.equivalence_info │ │ │ │ ├── issue_50908_ok_prime.dart │ │ │ │ ├── issue_50908_ok_prime.dart.expect │ │ │ │ ├── issue_50908_ok_prime.dart.intertwined.expect │ │ │ │ ├── issue_50908_ok_prime.dart.parser.expect │ │ │ │ ├── issue_50908_ok_prime.dart.scanner.expect │ │ │ │ ├── issue_51759.crash_dart │ │ │ │ ├── issue_51759.crash_dart.expect │ │ │ │ ├── issue_51759.crash_dart.intertwined.expect │ │ │ │ ├── issue_51759.crash_dart.parser.expect │ │ │ │ ├── issue_51759.crash_dart.scanner.expect │ │ │ │ ├── issue_51759.equivalence_info │ │ │ │ ├── issue_51759_as_reported.crash_dart │ │ │ │ ├── issue_51759_as_reported.crash_dart.expect │ │ │ │ ├── issue_51759_as_reported.crash_dart.intertwined.expect │ │ │ │ ├── issue_51759_as_reported.crash_dart.parser.expect │ │ │ │ ├── issue_51759_as_reported.crash_dart.scanner.expect │ │ │ │ ├── issue_51759_prime.crash_dart │ │ │ │ ├── issue_51759_prime.crash_dart.expect │ │ │ │ ├── issue_51759_prime.crash_dart.intertwined.expect │ │ │ │ ├── issue_51759_prime.crash_dart.parser.expect │ │ │ │ ├── issue_51759_prime.crash_dart.scanner.expect │ │ │ │ ├── keyword_named_class_fields.dart │ │ │ │ ├── keyword_named_class_fields.dart.expect │ │ │ │ ├── keyword_named_class_fields.dart.intertwined.expect │ │ │ │ ├── keyword_named_class_fields.dart.parser.expect │ │ │ │ ├── keyword_named_class_fields.dart.scanner.expect │ │ │ │ ├── keyword_named_class_methods.dart │ │ │ │ ├── keyword_named_class_methods.dart.expect │ │ │ │ ├── keyword_named_class_methods.dart.intertwined.expect │ │ │ │ ├── keyword_named_class_methods.dart.parser.expect │ │ │ │ ├── keyword_named_class_methods.dart.scanner.expect │ │ │ │ ├── keyword_named_formal_parameter.dart │ │ │ │ ├── keyword_named_formal_parameter.dart.expect │ │ │ │ ├── keyword_named_formal_parameter.dart.intertwined.expect │ │ │ │ ├── keyword_named_formal_parameter.dart.parser.expect │ │ │ │ ├── keyword_named_formal_parameter.dart.scanner.expect │ │ │ │ ├── keyword_named_formal_parameter.equivalence_info │ │ │ │ ├── keyword_named_formal_parameter_prime.dart │ │ │ │ ├── keyword_named_formal_parameter_prime.dart.expect │ │ │ │ ├── keyword_named_formal_parameter_prime.dart.intertwined.expect │ │ │ │ ├── keyword_named_formal_parameter_prime.dart.parser.expect │ │ │ │ ├── keyword_named_formal_parameter_prime.dart.scanner.expect │ │ │ │ ├── keyword_named_formal_parameter_start_of_next_top_level.dart │ │ │ │ ├── keyword_named_formal_parameter_start_of_next_top_level.dart.expect │ │ │ │ ├── keyword_named_formal_parameter_start_of_next_top_level.dart.intertwined.expect │ │ │ │ ├── keyword_named_formal_parameter_start_of_next_top_level.dart.parser.expect │ │ │ │ ├── keyword_named_formal_parameter_start_of_next_top_level.dart.scanner.expect │ │ │ │ ├── keyword_named_top_level_fields.dart │ │ │ │ ├── keyword_named_top_level_fields.dart.expect │ │ │ │ ├── keyword_named_top_level_fields.dart.intertwined.expect │ │ │ │ ├── keyword_named_top_level_fields.dart.parser.expect │ │ │ │ ├── keyword_named_top_level_fields.dart.scanner.expect │ │ │ │ ├── keyword_named_top_level_methods.dart │ │ │ │ ├── keyword_named_top_level_methods.dart.expect │ │ │ │ ├── keyword_named_top_level_methods.dart.intertwined.expect │ │ │ │ ├── keyword_named_top_level_methods.dart.parser.expect │ │ │ │ ├── keyword_named_top_level_methods.dart.scanner.expect │ │ │ │ ├── keyword_named_typedefs.dart │ │ │ │ ├── keyword_named_typedefs.dart.expect │ │ │ │ ├── keyword_named_typedefs.dart.intertwined.expect │ │ │ │ ├── keyword_named_typedefs.dart.parser.expect │ │ │ │ ├── keyword_named_typedefs.dart.scanner.expect │ │ │ │ ├── method_called_with.dart │ │ │ │ ├── method_called_with.dart.expect │ │ │ │ ├── method_called_with.dart.intertwined.expect │ │ │ │ ├── method_called_with.dart.parser.expect │ │ │ │ ├── method_called_with.dart.scanner.expect │ │ │ │ ├── method_called_with_prime.dart │ │ │ │ ├── method_called_with_prime.dart.expect │ │ │ │ ├── method_called_with_prime.dart.intertwined.expect │ │ │ │ ├── method_called_with_prime.dart.parser.expect │ │ │ │ ├── method_called_with_prime.dart.scanner.expect │ │ │ │ ├── method_called_with_prime2.dart │ │ │ │ ├── method_called_with_prime2.dart.expect │ │ │ │ ├── method_called_with_prime2.dart.intertwined.expect │ │ │ │ ├── method_called_with_prime2.dart.parser.expect │ │ │ │ ├── method_called_with_prime2.dart.scanner.expect │ │ │ │ ├── symbols.dart │ │ │ │ ├── symbols.dart.expect │ │ │ │ ├── symbols.dart.intertwined.expect │ │ │ │ ├── symbols.dart.parser.expect │ │ │ │ ├── symbols.dart.scanner.expect │ │ │ │ ├── utf_16_le_content.crash_dart │ │ │ │ ├── utf_16_le_content.crash_dart.expect │ │ │ │ ├── utf_16_le_content.crash_dart.intertwined.expect │ │ │ │ ├── utf_16_le_content.crash_dart.parser.expect │ │ │ │ ├── utf_16_le_content.crash_dart.scanner.expect │ │ │ │ ├── yield_not_in_generator.dart │ │ │ │ ├── yield_not_in_generator.dart.expect │ │ │ │ ├── yield_not_in_generator.dart.intertwined.expect │ │ │ │ ├── yield_not_in_generator.dart.parser.expect │ │ │ │ └── yield_not_in_generator.dart.scanner.expect │ │ │ ├── extension_named_type.dart │ │ │ ├── extension_named_type.dart.expect │ │ │ ├── extension_named_type.dart.intertwined.expect │ │ │ ├── extension_named_type.dart.parser.expect │ │ │ ├── extension_named_type.dart.scanner.expect │ │ │ ├── extension_type.dart │ │ │ ├── extension_type.dart.expect │ │ │ ├── extension_type.dart.intertwined.expect │ │ │ ├── extension_type.dart.parser.expect │ │ │ ├── extension_type.dart.scanner.expect │ │ │ ├── extensions │ │ │ │ ├── covariant.dart │ │ │ │ ├── covariant.dart.expect │ │ │ │ ├── covariant.dart.intertwined.expect │ │ │ │ ├── covariant.dart.parser.expect │ │ │ │ ├── covariant.dart.scanner.expect │ │ │ │ ├── not_covariant.dart │ │ │ │ ├── not_covariant.dart.expect │ │ │ │ ├── not_covariant.dart.intertwined.expect │ │ │ │ ├── not_covariant.dart.parser.expect │ │ │ │ ├── not_covariant.dart.scanner.expect │ │ │ │ ├── static.dart │ │ │ │ ├── static.dart.expect │ │ │ │ ├── static.dart.intertwined.expect │ │ │ │ ├── static.dart.parser.expect │ │ │ │ ├── static.dart.scanner.expect │ │ │ │ ├── static_covariant.dart │ │ │ │ ├── static_covariant.dart.expect │ │ │ │ ├── static_covariant.dart.intertwined.expect │ │ │ │ ├── static_covariant.dart.parser.expect │ │ │ │ └── static_covariant.dart.scanner.expect │ │ │ ├── general │ │ │ │ ├── ambiguous_builder_01.dart │ │ │ │ ├── ambiguous_builder_01.dart.expect │ │ │ │ ├── ambiguous_builder_01.dart.intertwined.expect │ │ │ │ ├── ambiguous_builder_01.dart.parser.expect │ │ │ │ ├── ambiguous_builder_01.dart.scanner.expect │ │ │ │ ├── assignment.dart │ │ │ │ ├── assignment.dart.expect │ │ │ │ ├── assignment.dart.intertwined.expect │ │ │ │ ├── assignment.dart.parser.expect │ │ │ │ ├── assignment.dart.scanner.expect │ │ │ │ ├── augment_super.dart │ │ │ │ ├── augment_super.dart.expect │ │ │ │ ├── augment_super.dart.intertwined.expect │ │ │ │ ├── augment_super.dart.parser.expect │ │ │ │ ├── augment_super.dart.scanner.expect │ │ │ │ ├── built_in_identifier_class_fields.dart │ │ │ │ ├── built_in_identifier_class_fields.dart.expect │ │ │ │ ├── built_in_identifier_class_fields.dart.intertwined.expect │ │ │ │ ├── built_in_identifier_class_fields.dart.parser.expect │ │ │ │ ├── built_in_identifier_class_fields.dart.scanner.expect │ │ │ │ ├── built_in_identifier_class_methods.dart │ │ │ │ ├── built_in_identifier_class_methods.dart.expect │ │ │ │ ├── built_in_identifier_class_methods.dart.intertwined.expect │ │ │ │ ├── built_in_identifier_class_methods.dart.parser.expect │ │ │ │ ├── built_in_identifier_class_methods.dart.scanner.expect │ │ │ │ ├── built_in_identifier_top_level_fields.dart │ │ │ │ ├── built_in_identifier_top_level_fields.dart.expect │ │ │ │ ├── built_in_identifier_top_level_fields.dart.intertwined.expect │ │ │ │ ├── built_in_identifier_top_level_fields.dart.parser.expect │ │ │ │ ├── built_in_identifier_top_level_fields.dart.scanner.expect │ │ │ │ ├── built_in_identifier_top_level_methods.dart │ │ │ │ ├── built_in_identifier_top_level_methods.dart.expect │ │ │ │ ├── built_in_identifier_top_level_methods.dart.intertwined.expect │ │ │ │ ├── built_in_identifier_top_level_methods.dart.parser.expect │ │ │ │ ├── built_in_identifier_top_level_methods.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block.dart │ │ │ │ ├── call_on_after_try_block.dart.expect │ │ │ │ ├── call_on_after_try_block.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block.dart.parser.expect │ │ │ │ ├── call_on_after_try_block.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block2.dart │ │ │ │ ├── call_on_after_try_block2.dart.expect │ │ │ │ ├── call_on_after_try_block2.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block2.dart.parser.expect │ │ │ │ ├── call_on_after_try_block2.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block2_prime.dart │ │ │ │ ├── call_on_after_try_block2_prime.dart.expect │ │ │ │ ├── call_on_after_try_block2_prime.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block2_prime.dart.parser.expect │ │ │ │ ├── call_on_after_try_block2_prime.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block3.dart │ │ │ │ ├── call_on_after_try_block3.dart.expect │ │ │ │ ├── call_on_after_try_block3.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block3.dart.parser.expect │ │ │ │ ├── call_on_after_try_block3.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block3_prime.dart │ │ │ │ ├── call_on_after_try_block3_prime.dart.expect │ │ │ │ ├── call_on_after_try_block3_prime.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block3_prime.dart.parser.expect │ │ │ │ ├── call_on_after_try_block3_prime.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block4.dart │ │ │ │ ├── call_on_after_try_block4.dart.expect │ │ │ │ ├── call_on_after_try_block4.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block4.dart.parser.expect │ │ │ │ ├── call_on_after_try_block4.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block4_prime.dart │ │ │ │ ├── call_on_after_try_block4_prime.dart.expect │ │ │ │ ├── call_on_after_try_block4_prime.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block4_prime.dart.parser.expect │ │ │ │ ├── call_on_after_try_block4_prime.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block5.dart │ │ │ │ ├── call_on_after_try_block5.dart.expect │ │ │ │ ├── call_on_after_try_block5.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block5.dart.parser.expect │ │ │ │ ├── call_on_after_try_block5.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block5_prime.dart │ │ │ │ ├── call_on_after_try_block5_prime.dart.expect │ │ │ │ ├── call_on_after_try_block5_prime.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block5_prime.dart.parser.expect │ │ │ │ ├── call_on_after_try_block5_prime.dart.scanner.expect │ │ │ │ ├── call_on_after_try_block_prime.dart │ │ │ │ ├── call_on_after_try_block_prime.dart.expect │ │ │ │ ├── call_on_after_try_block_prime.dart.intertwined.expect │ │ │ │ ├── call_on_after_try_block_prime.dart.parser.expect │ │ │ │ ├── call_on_after_try_block_prime.dart.scanner.expect │ │ │ │ ├── chained_call_01.dart │ │ │ │ ├── chained_call_01.dart.expect │ │ │ │ ├── chained_call_01.dart.intertwined.expect │ │ │ │ ├── chained_call_01.dart.parser.expect │ │ │ │ ├── chained_call_01.dart.scanner.expect │ │ │ │ ├── chained_call_02.dart │ │ │ │ ├── chained_call_02.dart.expect │ │ │ │ ├── chained_call_02.dart.intertwined.expect │ │ │ │ ├── chained_call_02.dart.parser.expect │ │ │ │ ├── chained_call_02.dart.scanner.expect │ │ │ │ ├── chained_call_03.dart │ │ │ │ ├── chained_call_03.dart.expect │ │ │ │ ├── chained_call_03.dart.intertwined.expect │ │ │ │ ├── chained_call_03.dart.parser.expect │ │ │ │ ├── chained_call_03.dart.scanner.expect │ │ │ │ ├── chained_call_04.dart │ │ │ │ ├── chained_call_04.dart.expect │ │ │ │ ├── chained_call_04.dart.intertwined.expect │ │ │ │ ├── chained_call_04.dart.parser.expect │ │ │ │ ├── chained_call_04.dart.scanner.expect │ │ │ │ ├── chained_call_05.dart │ │ │ │ ├── chained_call_05.dart.expect │ │ │ │ ├── chained_call_05.dart.intertwined.expect │ │ │ │ ├── chained_call_05.dart.parser.expect │ │ │ │ ├── chained_call_05.dart.scanner.expect │ │ │ │ ├── chained_call_06.dart │ │ │ │ ├── chained_call_06.dart.expect │ │ │ │ ├── chained_call_06.dart.intertwined.expect │ │ │ │ ├── chained_call_06.dart.parser.expect │ │ │ │ ├── chained_call_06.dart.scanner.expect │ │ │ │ ├── chained_call_07.dart │ │ │ │ ├── chained_call_07.dart.expect │ │ │ │ ├── chained_call_07.dart.intertwined.expect │ │ │ │ ├── chained_call_07.dart.parser.expect │ │ │ │ ├── chained_call_07.dart.scanner.expect │ │ │ │ ├── for.dart │ │ │ │ ├── for.dart.expect │ │ │ │ ├── for.dart.intertwined.expect │ │ │ │ ├── for.dart.parser.expect │ │ │ │ ├── for.dart.scanner.expect │ │ │ │ ├── for_in.dart │ │ │ │ ├── for_in.dart.expect │ │ │ │ ├── for_in.dart.intertwined.expect │ │ │ │ ├── for_in.dart.parser.expect │ │ │ │ ├── for_in.dart.scanner.expect │ │ │ │ ├── for_in_no_decl.dart │ │ │ │ ├── for_in_no_decl.dart.expect │ │ │ │ ├── for_in_no_decl.dart.intertwined.expect │ │ │ │ ├── for_in_no_decl.dart.parser.expect │ │ │ │ ├── for_in_no_decl.dart.scanner.expect │ │ │ │ ├── for_no_decl.dart │ │ │ │ ├── for_no_decl.dart.expect │ │ │ │ ├── for_no_decl.dart.intertwined.expect │ │ │ │ ├── for_no_decl.dart.parser.expect │ │ │ │ ├── for_no_decl.dart.scanner.expect │ │ │ │ ├── function_declaration.dart │ │ │ │ ├── function_declaration.dart.expect │ │ │ │ ├── function_declaration.dart.intertwined.expect │ │ │ │ ├── function_declaration.dart.parser.expect │ │ │ │ ├── function_declaration.dart.scanner.expect │ │ │ │ ├── function_expression.dart │ │ │ │ ├── function_expression.dart.expect │ │ │ │ ├── function_expression.dart.intertwined.expect │ │ │ │ ├── function_expression.dart.parser.expect │ │ │ │ ├── function_expression.dart.scanner.expect │ │ │ │ ├── function_reference_following_token.dart │ │ │ │ ├── function_reference_following_token.dart.expect │ │ │ │ ├── function_reference_following_token.dart.intertwined.expect │ │ │ │ ├── function_reference_following_token.dart.parser.expect │ │ │ │ ├── function_reference_following_token.dart.scanner.expect │ │ │ │ ├── function_reference_kinds.dart │ │ │ │ ├── function_reference_kinds.dart.expect │ │ │ │ ├── function_reference_kinds.dart.intertwined.expect │ │ │ │ ├── function_reference_kinds.dart.parser.expect │ │ │ │ ├── function_reference_kinds.dart.scanner.expect │ │ │ │ ├── generic_function_typedef.dart │ │ │ │ ├── generic_function_typedef.dart.expect │ │ │ │ ├── generic_function_typedef.dart.intertwined.expect │ │ │ │ ├── generic_function_typedef.dart.parser.expect │ │ │ │ ├── generic_function_typedef.dart.scanner.expect │ │ │ │ ├── issue_41121.dart │ │ │ │ ├── issue_41121.dart.expect │ │ │ │ ├── issue_41121.dart.intertwined.expect │ │ │ │ ├── issue_41121.dart.parser.expect │ │ │ │ ├── issue_41121.dart.scanner.expect │ │ │ │ ├── issue_45120.dart │ │ │ │ ├── issue_45120.dart.expect │ │ │ │ ├── issue_45120.dart.intertwined.expect │ │ │ │ ├── issue_45120.dart.parser.expect │ │ │ │ ├── issue_45120.dart.scanner.expect │ │ │ │ ├── issue_45703.dart │ │ │ │ ├── issue_45703.dart.expect │ │ │ │ ├── issue_45703.dart.intertwined.expect │ │ │ │ ├── issue_45703.dart.parser.expect │ │ │ │ ├── issue_45703.dart.scanner.expect │ │ │ │ ├── issue_45848_01.dart │ │ │ │ ├── issue_45848_01.dart.expect │ │ │ │ ├── issue_45848_01.dart.intertwined.expect │ │ │ │ ├── issue_45848_01.dart.parser.expect │ │ │ │ ├── issue_45848_01.dart.scanner.expect │ │ │ │ ├── issue_45848_01.equivalence_info │ │ │ │ ├── issue_45848_01_prime.dart │ │ │ │ ├── issue_45848_01_prime.dart.expect │ │ │ │ ├── issue_45848_01_prime.dart.intertwined.expect │ │ │ │ ├── issue_45848_01_prime.dart.parser.expect │ │ │ │ ├── issue_45848_01_prime.dart.scanner.expect │ │ │ │ ├── issue_45848_02.dart │ │ │ │ ├── issue_45848_02.dart.expect │ │ │ │ ├── issue_45848_02.dart.intertwined.expect │ │ │ │ ├── issue_45848_02.dart.parser.expect │ │ │ │ ├── issue_45848_02.dart.scanner.expect │ │ │ │ ├── issue_45848_02.equivalence_info │ │ │ │ ├── issue_45848_02_prime.dart │ │ │ │ ├── issue_45848_02_prime.dart.expect │ │ │ │ ├── issue_45848_02_prime.dart.intertwined.expect │ │ │ │ ├── issue_45848_02_prime.dart.parser.expect │ │ │ │ ├── issue_45848_02_prime.dart.scanner.expect │ │ │ │ ├── issue_45848_03.dart │ │ │ │ ├── issue_45848_03.dart.expect │ │ │ │ ├── issue_45848_03.dart.intertwined.expect │ │ │ │ ├── issue_45848_03.dart.parser.expect │ │ │ │ ├── issue_45848_03.dart.scanner.expect │ │ │ │ ├── issue_45848_03.equivalence_info │ │ │ │ ├── issue_45848_03_prime.dart │ │ │ │ ├── issue_45848_03_prime.dart.expect │ │ │ │ ├── issue_45848_03_prime.dart.intertwined.expect │ │ │ │ ├── issue_45848_03_prime.dart.parser.expect │ │ │ │ ├── issue_45848_03_prime.dart.scanner.expect │ │ │ │ ├── issue_45848_04.dart │ │ │ │ ├── issue_45848_04.dart.expect │ │ │ │ ├── issue_45848_04.dart.intertwined.expect │ │ │ │ ├── issue_45848_04.dart.parser.expect │ │ │ │ ├── issue_45848_04.dart.scanner.expect │ │ │ │ ├── issue_45848_04.equivalence_info │ │ │ │ ├── issue_45848_04_prime.dart │ │ │ │ ├── issue_45848_04_prime.dart.expect │ │ │ │ ├── issue_45848_04_prime.dart.intertwined.expect │ │ │ │ ├── issue_45848_04_prime.dart.parser.expect │ │ │ │ ├── issue_45848_04_prime.dart.scanner.expect │ │ │ │ ├── issue_45848_05.dart │ │ │ │ ├── issue_45848_05.dart.expect │ │ │ │ ├── issue_45848_05.dart.intertwined.expect │ │ │ │ ├── issue_45848_05.dart.parser.expect │ │ │ │ ├── issue_45848_05.dart.scanner.expect │ │ │ │ ├── issue_45848_06.dart │ │ │ │ ├── issue_45848_06.dart.expect │ │ │ │ ├── issue_45848_06.dart.intertwined.expect │ │ │ │ ├── issue_45848_06.dart.parser.expect │ │ │ │ ├── issue_45848_06.dart.scanner.expect │ │ │ │ ├── issue_45848_07.dart │ │ │ │ ├── issue_45848_07.dart.expect │ │ │ │ ├── issue_45848_07.dart.intertwined.expect │ │ │ │ ├── issue_45848_07.dart.parser.expect │ │ │ │ ├── issue_45848_07.dart.scanner.expect │ │ │ │ ├── issue_47008_01.dart │ │ │ │ ├── issue_47008_01.dart.expect │ │ │ │ ├── issue_47008_01.dart.intertwined.expect │ │ │ │ ├── issue_47008_01.dart.parser.expect │ │ │ │ ├── issue_47008_01.dart.scanner.expect │ │ │ │ ├── issue_47008_02.dart │ │ │ │ ├── issue_47008_02.dart.expect │ │ │ │ ├── issue_47008_02.dart.intertwined.expect │ │ │ │ ├── issue_47008_02.dart.parser.expect │ │ │ │ ├── issue_47008_02.dart.scanner.expect │ │ │ │ ├── issue_47009_01.dart │ │ │ │ ├── issue_47009_01.dart.expect │ │ │ │ ├── issue_47009_01.dart.intertwined.expect │ │ │ │ ├── issue_47009_01.dart.parser.expect │ │ │ │ ├── issue_47009_01.dart.scanner.expect │ │ │ │ ├── issue_47009_02.dart │ │ │ │ ├── issue_47009_02.dart.expect │ │ │ │ ├── issue_47009_02.dart.intertwined.expect │ │ │ │ ├── issue_47009_02.dart.parser.expect │ │ │ │ ├── issue_47009_02.dart.scanner.expect │ │ │ │ ├── issue_47009_03.dart │ │ │ │ ├── issue_47009_03.dart.expect │ │ │ │ ├── issue_47009_03.dart.intertwined.expect │ │ │ │ ├── issue_47009_03.dart.parser.expect │ │ │ │ ├── issue_47009_03.dart.scanner.expect │ │ │ │ ├── issue_49197.dart │ │ │ │ ├── issue_49197.dart.expect │ │ │ │ ├── issue_49197.dart.intertwined.expect │ │ │ │ ├── issue_49197.dart.parser.expect │ │ │ │ ├── issue_49197.dart.scanner.expect │ │ │ │ ├── metadata.dart │ │ │ │ ├── metadata.dart.expect │ │ │ │ ├── metadata.dart.intertwined.expect │ │ │ │ ├── metadata.dart.parser.expect │ │ │ │ ├── metadata.dart.scanner.expect │ │ │ │ ├── missing_end_bracket.dart │ │ │ │ ├── missing_end_bracket.dart.expect │ │ │ │ ├── missing_end_bracket.dart.intertwined.expect │ │ │ │ ├── missing_end_bracket.dart.parser.expect │ │ │ │ ├── missing_end_bracket.dart.scanner.expect │ │ │ │ ├── new_as_identifier.dart │ │ │ │ ├── new_as_identifier.dart.expect │ │ │ │ ├── new_as_identifier.dart.intertwined.expect │ │ │ │ ├── new_as_identifier.dart.parser.expect │ │ │ │ ├── new_as_identifier.dart.scanner.expect │ │ │ │ ├── not_call_on_after_try_block.dart │ │ │ │ ├── not_call_on_after_try_block.dart.expect │ │ │ │ ├── not_call_on_after_try_block.dart.intertwined.expect │ │ │ │ ├── not_call_on_after_try_block.dart.parser.expect │ │ │ │ ├── not_call_on_after_try_block.dart.scanner.expect │ │ │ │ ├── operator_01.dart │ │ │ │ ├── operator_01.dart.expect │ │ │ │ ├── operator_01.dart.intertwined.expect │ │ │ │ ├── operator_01.dart.parser.expect │ │ │ │ ├── operator_01.dart.scanner.expect │ │ │ │ ├── operator_hat_class.crash_dart │ │ │ │ ├── operator_hat_class.crash_dart.expect │ │ │ │ ├── operator_hat_class.crash_dart.intertwined.expect │ │ │ │ ├── operator_hat_class.crash_dart.parser.expect │ │ │ │ ├── operator_hat_class.crash_dart.scanner.expect │ │ │ │ ├── toplevel_get_called_get.dart │ │ │ │ ├── toplevel_get_called_get.dart.expect │ │ │ │ ├── toplevel_get_called_get.dart.intertwined.expect │ │ │ │ ├── toplevel_get_called_get.dart.parser.expect │ │ │ │ ├── toplevel_get_called_get.dart.scanner.expect │ │ │ │ ├── try_catch.dart │ │ │ │ ├── try_catch.dart.expect │ │ │ │ ├── try_catch.dart.intertwined.expect │ │ │ │ ├── try_catch.dart.parser.expect │ │ │ │ ├── try_catch.dart.scanner.expect │ │ │ │ ├── try_finally.dart │ │ │ │ ├── try_finally.dart.expect │ │ │ │ ├── try_finally.dart.intertwined.expect │ │ │ │ ├── try_finally.dart.parser.expect │ │ │ │ └── try_finally.dart.scanner.expect │ │ │ ├── inline_class │ │ │ │ ├── inline_class.dart │ │ │ │ ├── inline_class.dart.expect │ │ │ │ ├── inline_class.dart.intertwined.expect │ │ │ │ ├── inline_class.dart.parser.expect │ │ │ │ └── inline_class.dart.scanner.expect │ │ │ ├── macros │ │ │ │ ├── augment_class.dart │ │ │ │ ├── augment_class.dart.expect │ │ │ │ ├── augment_class.dart.intertwined.expect │ │ │ │ ├── augment_class.dart.parser.expect │ │ │ │ ├── augment_class.dart.scanner.expect │ │ │ │ ├── macro_class.dart │ │ │ │ ├── macro_class.dart.expect │ │ │ │ ├── macro_class.dart.intertwined.expect │ │ │ │ ├── macro_class.dart.parser.expect │ │ │ │ └── macro_class.dart.scanner.expect │ │ │ ├── nnbd │ │ │ │ ├── chained_call_01.dart │ │ │ │ ├── chained_call_01.dart.expect │ │ │ │ ├── chained_call_01.dart.intertwined.expect │ │ │ │ ├── chained_call_01.dart.parser.expect │ │ │ │ ├── chained_call_01.dart.scanner.expect │ │ │ │ ├── chained_call_02.dart │ │ │ │ ├── chained_call_02.dart.expect │ │ │ │ ├── chained_call_02.dart.intertwined.expect │ │ │ │ ├── chained_call_02.dart.parser.expect │ │ │ │ ├── chained_call_02.dart.scanner.expect │ │ │ │ ├── chained_call_03.dart │ │ │ │ ├── chained_call_03.dart.expect │ │ │ │ ├── chained_call_03.dart.intertwined.expect │ │ │ │ ├── chained_call_03.dart.parser.expect │ │ │ │ ├── chained_call_03.dart.scanner.expect │ │ │ │ ├── chained_call_04.dart │ │ │ │ ├── chained_call_04.dart.expect │ │ │ │ ├── chained_call_04.dart.intertwined.expect │ │ │ │ ├── chained_call_04.dart.parser.expect │ │ │ │ ├── chained_call_04.dart.scanner.expect │ │ │ │ ├── chained_call_05.dart │ │ │ │ ├── chained_call_05.dart.expect │ │ │ │ ├── chained_call_05.dart.intertwined.expect │ │ │ │ ├── chained_call_05.dart.parser.expect │ │ │ │ ├── chained_call_05.dart.scanner.expect │ │ │ │ ├── chained_call_06.dart │ │ │ │ ├── chained_call_06.dart.expect │ │ │ │ ├── chained_call_06.dart.intertwined.expect │ │ │ │ ├── chained_call_06.dart.parser.expect │ │ │ │ ├── chained_call_06.dart.scanner.expect │ │ │ │ ├── chained_call_07.dart │ │ │ │ ├── chained_call_07.dart.expect │ │ │ │ ├── chained_call_07.dart.intertwined.expect │ │ │ │ ├── chained_call_07.dart.parser.expect │ │ │ │ ├── chained_call_07.dart.scanner.expect │ │ │ │ ├── chained_call_08.dart │ │ │ │ ├── chained_call_08.dart.expect │ │ │ │ ├── chained_call_08.dart.intertwined.expect │ │ │ │ ├── chained_call_08.dart.parser.expect │ │ │ │ ├── chained_call_08.dart.scanner.expect │ │ │ │ ├── chained_call_with_index_01.dart.dart │ │ │ │ ├── chained_call_with_index_01.dart.dart.expect │ │ │ │ ├── chained_call_with_index_01.dart.dart.intertwined.expect │ │ │ │ ├── chained_call_with_index_01.dart.dart.parser.expect │ │ │ │ ├── chained_call_with_index_01.dart.dart.scanner.expect │ │ │ │ ├── error_recovery │ │ │ │ │ ├── abstract_placement.dart │ │ │ │ │ ├── abstract_placement.dart.expect │ │ │ │ │ ├── abstract_placement.dart.intertwined.expect │ │ │ │ │ ├── abstract_placement.dart.parser.expect │ │ │ │ │ ├── abstract_placement.dart.scanner.expect │ │ │ │ │ ├── external_placement.dart │ │ │ │ │ ├── external_placement.dart.expect │ │ │ │ │ ├── external_placement.dart.intertwined.expect │ │ │ │ │ ├── external_placement.dart.parser.expect │ │ │ │ │ ├── external_placement.dart.scanner.expect │ │ │ │ │ ├── late_without_var_etc.dart │ │ │ │ │ ├── late_without_var_etc.dart.expect │ │ │ │ │ ├── late_without_var_etc.dart.intertwined.expect │ │ │ │ │ ├── late_without_var_etc.dart.parser.expect │ │ │ │ │ └── late_without_var_etc.dart.scanner.expect │ │ │ │ ├── issue_39286.dart │ │ │ │ ├── issue_39286.dart.expect │ │ │ │ ├── issue_39286.dart.intertwined.expect │ │ │ │ ├── issue_39286.dart.parser.expect │ │ │ │ ├── issue_39286.dart.scanner.expect │ │ │ │ ├── issue_39286_2.dart │ │ │ │ ├── issue_39286_2.dart.expect │ │ │ │ ├── issue_39286_2.dart.intertwined.expect │ │ │ │ ├── issue_39286_2.dart.parser.expect │ │ │ │ ├── issue_39286_2.dart.scanner.expect │ │ │ │ ├── issue_39286_2_prime.dart │ │ │ │ ├── issue_39286_2_prime.dart.expect │ │ │ │ ├── issue_39286_2_prime.dart.intertwined.expect │ │ │ │ ├── issue_39286_2_prime.dart.parser.expect │ │ │ │ ├── issue_39286_2_prime.dart.scanner.expect │ │ │ │ ├── issue_39286_prime.dart │ │ │ │ ├── issue_39286_prime.dart.expect │ │ │ │ ├── issue_39286_prime.dart.intertwined.expect │ │ │ │ ├── issue_39286_prime.dart.parser.expect │ │ │ │ ├── issue_39286_prime.dart.scanner.expect │ │ │ │ ├── issue_39326.dart │ │ │ │ ├── issue_39326.dart.expect │ │ │ │ ├── issue_39326.dart.intertwined.expect │ │ │ │ ├── issue_39326.dart.parser.expect │ │ │ │ ├── issue_39326.dart.scanner.expect │ │ │ │ ├── issue_39697.dart │ │ │ │ ├── issue_39697.dart.expect │ │ │ │ ├── issue_39697.dart.intertwined.expect │ │ │ │ ├── issue_39697.dart.parser.expect │ │ │ │ ├── issue_39697.dart.scanner.expect │ │ │ │ ├── issue_39697_prime.dart │ │ │ │ ├── issue_39697_prime.dart.expect │ │ │ │ ├── issue_39697_prime.dart.intertwined.expect │ │ │ │ ├── issue_39697_prime.dart.parser.expect │ │ │ │ ├── issue_39697_prime.dart.scanner.expect │ │ │ │ ├── issue_39723.dart │ │ │ │ ├── issue_39723.dart.expect │ │ │ │ ├── issue_39723.dart.intertwined.expect │ │ │ │ ├── issue_39723.dart.parser.expect │ │ │ │ ├── issue_39723.dart.scanner.expect │ │ │ │ ├── issue_39723_prime.dart │ │ │ │ ├── issue_39723_prime.dart.expect │ │ │ │ ├── issue_39723_prime.dart.intertwined.expect │ │ │ │ ├── issue_39723_prime.dart.parser.expect │ │ │ │ ├── issue_39723_prime.dart.scanner.expect │ │ │ │ ├── issue_39776.dart │ │ │ │ ├── issue_39776.dart.expect │ │ │ │ ├── issue_39776.dart.intertwined.expect │ │ │ │ ├── issue_39776.dart.parser.expect │ │ │ │ ├── issue_39776.dart.scanner.expect │ │ │ │ ├── issue_39776_prime1.dart │ │ │ │ ├── issue_39776_prime1.dart.expect │ │ │ │ ├── issue_39776_prime1.dart.intertwined.expect │ │ │ │ ├── issue_39776_prime1.dart.parser.expect │ │ │ │ ├── issue_39776_prime1.dart.scanner.expect │ │ │ │ ├── issue_39776_prime2.dart │ │ │ │ ├── issue_39776_prime2.dart.expect │ │ │ │ ├── issue_39776_prime2.dart.intertwined.expect │ │ │ │ ├── issue_39776_prime2.dart.parser.expect │ │ │ │ ├── issue_39776_prime2.dart.scanner.expect │ │ │ │ ├── issue_39776_prime3.dart │ │ │ │ ├── issue_39776_prime3.dart.expect │ │ │ │ ├── issue_39776_prime3.dart.intertwined.expect │ │ │ │ ├── issue_39776_prime3.dart.parser.expect │ │ │ │ ├── issue_39776_prime3.dart.scanner.expect │ │ │ │ ├── issue_39776_prime4.dart │ │ │ │ ├── issue_39776_prime4.dart.expect │ │ │ │ ├── issue_39776_prime4.dart.intertwined.expect │ │ │ │ ├── issue_39776_prime4.dart.parser.expect │ │ │ │ ├── issue_39776_prime4.dart.scanner.expect │ │ │ │ ├── issue_39776_prime5.dart │ │ │ │ ├── issue_39776_prime5.dart.expect │ │ │ │ ├── issue_39776_prime5.dart.intertwined.expect │ │ │ │ ├── issue_39776_prime5.dart.parser.expect │ │ │ │ ├── issue_39776_prime5.dart.scanner.expect │ │ │ │ ├── issue_39776_prime6.dart │ │ │ │ ├── issue_39776_prime6.dart.expect │ │ │ │ ├── issue_39776_prime6.dart.intertwined.expect │ │ │ │ ├── issue_39776_prime6.dart.parser.expect │ │ │ │ ├── issue_39776_prime6.dart.scanner.expect │ │ │ │ ├── issue_39858.dart │ │ │ │ ├── issue_39858.dart.expect │ │ │ │ ├── issue_39858.dart.intertwined.expect │ │ │ │ ├── issue_39858.dart.parser.expect │ │ │ │ ├── issue_39858.dart.scanner.expect │ │ │ │ ├── issue_39858_prime1.dart │ │ │ │ ├── issue_39858_prime1.dart.expect │ │ │ │ ├── issue_39858_prime1.dart.intertwined.expect │ │ │ │ ├── issue_39858_prime1.dart.parser.expect │ │ │ │ ├── issue_39858_prime1.dart.scanner.expect │ │ │ │ ├── issue_40267_case_01.dart │ │ │ │ ├── issue_40267_case_01.dart.expect │ │ │ │ ├── issue_40267_case_01.dart.intertwined.expect │ │ │ │ ├── issue_40267_case_01.dart.parser.expect │ │ │ │ ├── issue_40267_case_01.dart.scanner.expect │ │ │ │ ├── issue_40267_case_02.dart │ │ │ │ ├── issue_40267_case_02.dart.expect │ │ │ │ ├── issue_40267_case_02.dart.intertwined.expect │ │ │ │ ├── issue_40267_case_02.dart.parser.expect │ │ │ │ ├── issue_40267_case_02.dart.scanner.expect │ │ │ │ ├── issue_40267_case_03.dart │ │ │ │ ├── issue_40267_case_03.dart.expect │ │ │ │ ├── issue_40267_case_03.dart.intertwined.expect │ │ │ │ ├── issue_40267_case_03.dart.parser.expect │ │ │ │ ├── issue_40267_case_03.dart.scanner.expect │ │ │ │ ├── issue_40267_case_04.dart │ │ │ │ ├── issue_40267_case_04.dart.expect │ │ │ │ ├── issue_40267_case_04.dart.intertwined.expect │ │ │ │ ├── issue_40267_case_04.dart.parser.expect │ │ │ │ ├── issue_40267_case_04.dart.scanner.expect │ │ │ │ ├── issue_40267_case_05.dart │ │ │ │ ├── issue_40267_case_05.dart.expect │ │ │ │ ├── issue_40267_case_05.dart.intertwined.expect │ │ │ │ ├── issue_40267_case_05.dart.parser.expect │ │ │ │ ├── issue_40267_case_05.dart.scanner.expect │ │ │ │ ├── issue_40267_conditional.dart │ │ │ │ ├── issue_40267_conditional.dart.expect │ │ │ │ ├── issue_40267_conditional.dart.intertwined.expect │ │ │ │ ├── issue_40267_conditional.dart.parser.expect │ │ │ │ ├── issue_40267_conditional.dart.scanner.expect │ │ │ │ ├── issue_40267_conditional_2.dart │ │ │ │ ├── issue_40267_conditional_2.dart.expect │ │ │ │ ├── issue_40267_conditional_2.dart.intertwined.expect │ │ │ │ ├── issue_40267_conditional_2.dart.parser.expect │ │ │ │ ├── issue_40267_conditional_2.dart.scanner.expect │ │ │ │ ├── issue_40267_index_access.dart │ │ │ │ ├── issue_40267_index_access.dart.expect │ │ │ │ ├── issue_40267_index_access.dart.intertwined.expect │ │ │ │ ├── issue_40267_index_access.dart.parser.expect │ │ │ │ ├── issue_40267_index_access.dart.scanner.expect │ │ │ │ ├── issue_40267_index_set.dart │ │ │ │ ├── issue_40267_index_set.dart.expect │ │ │ │ ├── issue_40267_index_set.dart.intertwined.expect │ │ │ │ ├── issue_40267_index_set.dart.parser.expect │ │ │ │ ├── issue_40267_index_set.dart.scanner.expect │ │ │ │ ├── issue_40267_lookup_plus.dart │ │ │ │ ├── issue_40267_lookup_plus.dart.expect │ │ │ │ ├── issue_40267_lookup_plus.dart.intertwined.expect │ │ │ │ ├── issue_40267_lookup_plus.dart.parser.expect │ │ │ │ ├── issue_40267_lookup_plus.dart.scanner.expect │ │ │ │ ├── issue_40267_lookup_plus_plus.dart │ │ │ │ ├── issue_40267_lookup_plus_plus.dart.expect │ │ │ │ ├── issue_40267_lookup_plus_plus.dart.intertwined.expect │ │ │ │ ├── issue_40267_lookup_plus_plus.dart.parser.expect │ │ │ │ ├── issue_40267_lookup_plus_plus.dart.scanner.expect │ │ │ │ ├── issue_40267_method_call_no_type_arguments.dart │ │ │ │ ├── issue_40267_method_call_no_type_arguments.dart.expect │ │ │ │ ├── issue_40267_method_call_no_type_arguments.dart.intertwined.expect │ │ │ │ ├── issue_40267_method_call_no_type_arguments.dart.parser.expect │ │ │ │ ├── issue_40267_method_call_no_type_arguments.dart.scanner.expect │ │ │ │ ├── issue_40267_method_call_with_type_arguments.dart │ │ │ │ ├── issue_40267_method_call_with_type_arguments.dart.expect │ │ │ │ ├── issue_40267_method_call_with_type_arguments.dart.intertwined.expect │ │ │ │ ├── issue_40267_method_call_with_type_arguments.dart.parser.expect │ │ │ │ ├── issue_40267_method_call_with_type_arguments.dart.scanner.expect │ │ │ │ ├── issue_40267_plus_plus_lookup.dart │ │ │ │ ├── issue_40267_plus_plus_lookup.dart.expect │ │ │ │ ├── issue_40267_plus_plus_lookup.dart.intertwined.expect │ │ │ │ ├── issue_40267_plus_plus_lookup.dart.parser.expect │ │ │ │ ├── issue_40267_plus_plus_lookup.dart.scanner.expect │ │ │ │ ├── issue_40793.dart │ │ │ │ ├── issue_40793.dart.expect │ │ │ │ ├── issue_40793.dart.intertwined.expect │ │ │ │ ├── issue_40793.dart.parser.expect │ │ │ │ ├── issue_40793.dart.scanner.expect │ │ │ │ ├── issue_40793_prime.dart │ │ │ │ ├── issue_40793_prime.dart.expect │ │ │ │ ├── issue_40793_prime.dart.intertwined.expect │ │ │ │ ├── issue_40793_prime.dart.parser.expect │ │ │ │ ├── issue_40793_prime.dart.scanner.expect │ │ │ │ ├── issue_40793_prime2.dart │ │ │ │ ├── issue_40793_prime2.dart.expect │ │ │ │ ├── issue_40793_prime2.dart.intertwined.expect │ │ │ │ ├── issue_40793_prime2.dart.parser.expect │ │ │ │ ├── issue_40793_prime2.dart.scanner.expect │ │ │ │ ├── issue_40793_prime3.dart │ │ │ │ ├── issue_40793_prime3.dart.expect │ │ │ │ ├── issue_40793_prime3.dart.intertwined.expect │ │ │ │ ├── issue_40793_prime3.dart.parser.expect │ │ │ │ ├── issue_40793_prime3.dart.scanner.expect │ │ │ │ ├── issue_40793_prime4.dart │ │ │ │ ├── issue_40793_prime4.dart.expect │ │ │ │ ├── issue_40793_prime4.dart.intertwined.expect │ │ │ │ ├── issue_40793_prime4.dart.parser.expect │ │ │ │ ├── issue_40793_prime4.dart.scanner.expect │ │ │ │ ├── issue_40793_prime5.dart │ │ │ │ ├── issue_40793_prime5.dart.expect │ │ │ │ ├── issue_40793_prime5.dart.intertwined.expect │ │ │ │ ├── issue_40793_prime5.dart.parser.expect │ │ │ │ ├── issue_40793_prime5.dart.scanner.expect │ │ │ │ ├── issue_40805_01.dart │ │ │ │ ├── issue_40805_01.dart.expect │ │ │ │ ├── issue_40805_01.dart.intertwined.expect │ │ │ │ ├── issue_40805_01.dart.parser.expect │ │ │ │ ├── issue_40805_01.dart.scanner.expect │ │ │ │ ├── issue_40805_02.dart │ │ │ │ ├── issue_40805_02.dart.expect │ │ │ │ ├── issue_40805_02.dart.intertwined.expect │ │ │ │ ├── issue_40805_02.dart.parser.expect │ │ │ │ ├── issue_40805_02.dart.scanner.expect │ │ │ │ ├── issue_40805_03.dart │ │ │ │ ├── issue_40805_03.dart.expect │ │ │ │ ├── issue_40805_03.dart.intertwined.expect │ │ │ │ ├── issue_40805_03.dart.parser.expect │ │ │ │ ├── issue_40805_03.dart.scanner.expect │ │ │ │ ├── issue_40834_01.dart │ │ │ │ ├── issue_40834_01.dart.expect │ │ │ │ ├── issue_40834_01.dart.intertwined.expect │ │ │ │ ├── issue_40834_01.dart.parser.expect │ │ │ │ ├── issue_40834_01.dart.scanner.expect │ │ │ │ ├── issue_40834_02.dart │ │ │ │ ├── issue_40834_02.dart.expect │ │ │ │ ├── issue_40834_02.dart.intertwined.expect │ │ │ │ ├── issue_40834_02.dart.parser.expect │ │ │ │ ├── issue_40834_02.dart.scanner.expect │ │ │ │ ├── issue_40834_03.dart │ │ │ │ ├── issue_40834_03.dart.expect │ │ │ │ ├── issue_40834_03.dart.intertwined.expect │ │ │ │ ├── issue_40834_03.dart.parser.expect │ │ │ │ ├── issue_40834_03.dart.scanner.expect │ │ │ │ ├── issue_41177.dart │ │ │ │ ├── issue_41177.dart.expect │ │ │ │ ├── issue_41177.dart.intertwined.expect │ │ │ │ ├── issue_41177.dart.parser.expect │ │ │ │ ├── issue_41177.dart.scanner.expect │ │ │ │ ├── issue_41597.dart │ │ │ │ ├── issue_41597.dart.expect │ │ │ │ ├── issue_41597.dart.intertwined.expect │ │ │ │ ├── issue_41597.dart.parser.expect │ │ │ │ ├── issue_41597.dart.scanner.expect │ │ │ │ ├── issue_42621.dart │ │ │ │ ├── issue_42621.dart.expect │ │ │ │ ├── issue_42621.dart.intertwined.expect │ │ │ │ ├── issue_42621.dart.parser.expect │ │ │ │ ├── issue_42621.dart.scanner.expect │ │ │ │ ├── issue_44477.dart │ │ │ │ ├── issue_44477.dart.expect │ │ │ │ ├── issue_44477.dart.intertwined.expect │ │ │ │ ├── issue_44477.dart.parser.expect │ │ │ │ ├── issue_44477.dart.scanner.expect │ │ │ │ ├── issue_47020.dart │ │ │ │ ├── issue_47020.dart.expect │ │ │ │ ├── issue_47020.dart.intertwined.expect │ │ │ │ ├── issue_47020.dart.parser.expect │ │ │ │ ├── issue_47020.dart.scanner.expect │ │ │ │ ├── issue_48999.dart │ │ │ │ ├── issue_48999.dart.expect │ │ │ │ ├── issue_48999.dart.intertwined.expect │ │ │ │ ├── issue_48999.dart.parser.expect │ │ │ │ ├── issue_48999.dart.scanner.expect │ │ │ │ ├── issue_48999.equivalence_info │ │ │ │ ├── issue_48999_prime.dart │ │ │ │ ├── issue_48999_prime.dart.expect │ │ │ │ ├── issue_48999_prime.dart.intertwined.expect │ │ │ │ ├── issue_48999_prime.dart.parser.expect │ │ │ │ ├── issue_48999_prime.dart.scanner.expect │ │ │ │ ├── issue_49132.dart │ │ │ │ ├── issue_49132.dart.expect │ │ │ │ ├── issue_49132.dart.intertwined.expect │ │ │ │ ├── issue_49132.dart.parser.expect │ │ │ │ ├── issue_49132.dart.scanner.expect │ │ │ │ ├── issue_49132.equivalence_info │ │ │ │ ├── issue_49132_not_nullable.dart │ │ │ │ ├── issue_49132_not_nullable.dart.expect │ │ │ │ ├── issue_49132_not_nullable.dart.intertwined.expect │ │ │ │ ├── issue_49132_not_nullable.dart.parser.expect │ │ │ │ ├── issue_49132_not_nullable.dart.scanner.expect │ │ │ │ ├── issue_49132_prime.dart │ │ │ │ ├── issue_49132_prime.dart.expect │ │ │ │ ├── issue_49132_prime.dart.intertwined.expect │ │ │ │ ├── issue_49132_prime.dart.parser.expect │ │ │ │ ├── issue_49132_prime.dart.scanner.expect │ │ │ │ ├── issue_49678.dart │ │ │ │ ├── issue_49678.dart.expect │ │ │ │ ├── issue_49678.dart.intertwined.expect │ │ │ │ ├── issue_49678.dart.parser.expect │ │ │ │ ├── issue_49678.dart.scanner.expect │ │ │ │ ├── issue_49678.equivalence_info │ │ │ │ ├── issue_49678_prime.dart │ │ │ │ ├── issue_49678_prime.dart.expect │ │ │ │ ├── issue_49678_prime.dart.intertwined.expect │ │ │ │ ├── issue_49678_prime.dart.parser.expect │ │ │ │ ├── issue_49678_prime.dart.scanner.expect │ │ │ │ ├── late_member.dart │ │ │ │ ├── late_member.dart.expect │ │ │ │ ├── late_member.dart.intertwined.expect │ │ │ │ ├── late_member.dart.parser.expect │ │ │ │ ├── late_member.dart.scanner.expect │ │ │ │ ├── late_modifier.dart │ │ │ │ ├── late_modifier.dart.expect │ │ │ │ ├── late_modifier.dart.intertwined.expect │ │ │ │ ├── late_modifier.dart.parser.expect │ │ │ │ ├── late_modifier.dart.scanner.expect │ │ │ │ ├── nullCheckBeforeIndex.dart │ │ │ │ ├── nullCheckBeforeIndex.dart.expect │ │ │ │ ├── nullCheckBeforeIndex.dart.intertwined.expect │ │ │ │ ├── nullCheckBeforeIndex.dart.parser.expect │ │ │ │ ├── nullCheckBeforeIndex.dart.scanner.expect │ │ │ │ ├── nullCheckBeforeIndex_with_parens.dart │ │ │ │ ├── nullCheckBeforeIndex_with_parens.dart.expect │ │ │ │ ├── nullCheckBeforeIndex_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckBeforeIndex_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckBeforeIndex_with_parens.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex.dart │ │ │ │ ├── nullCheckOnIndex.dart.expect │ │ │ │ ├── nullCheckOnIndex.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex2.dart │ │ │ │ ├── nullCheckOnIndex2.dart.expect │ │ │ │ ├── nullCheckOnIndex2.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex2.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex2.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex2_with_parens.dart │ │ │ │ ├── nullCheckOnIndex2_with_parens.dart.expect │ │ │ │ ├── nullCheckOnIndex2_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex2_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex2_with_parens.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex3.dart │ │ │ │ ├── nullCheckOnIndex3.dart.expect │ │ │ │ ├── nullCheckOnIndex3.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex3.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex3.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex3_with_parens.dart │ │ │ │ ├── nullCheckOnIndex3_with_parens.dart.expect │ │ │ │ ├── nullCheckOnIndex3_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex3_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex3_with_parens.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex4.dart │ │ │ │ ├── nullCheckOnIndex4.dart.expect │ │ │ │ ├── nullCheckOnIndex4.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex4.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex4.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex4_with_parens.dart │ │ │ │ ├── nullCheckOnIndex4_with_parens.dart.expect │ │ │ │ ├── nullCheckOnIndex4_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex4_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex4_with_parens.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex5.dart │ │ │ │ ├── nullCheckOnIndex5.dart.expect │ │ │ │ ├── nullCheckOnIndex5.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex5.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex5.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex5_with_parens.dart │ │ │ │ ├── nullCheckOnIndex5_with_parens.dart.expect │ │ │ │ ├── nullCheckOnIndex5_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex5_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex5_with_parens.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex6.dart │ │ │ │ ├── nullCheckOnIndex6.dart.expect │ │ │ │ ├── nullCheckOnIndex6.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex6.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex6.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex6_with_parens.dart │ │ │ │ ├── nullCheckOnIndex6_with_parens.dart.expect │ │ │ │ ├── nullCheckOnIndex6_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex6_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex6_with_parens.dart.scanner.expect │ │ │ │ ├── nullCheckOnIndex_with_parens.dart │ │ │ │ ├── nullCheckOnIndex_with_parens.dart.expect │ │ │ │ ├── nullCheckOnIndex_with_parens.dart.intertwined.expect │ │ │ │ ├── nullCheckOnIndex_with_parens.dart.parser.expect │ │ │ │ ├── nullCheckOnIndex_with_parens.dart.scanner.expect │ │ │ │ ├── null_shorting_index.dart │ │ │ │ ├── null_shorting_index.dart.expect │ │ │ │ ├── null_shorting_index.dart.intertwined.expect │ │ │ │ ├── null_shorting_index.dart.parser.expect │ │ │ │ ├── null_shorting_index.dart.scanner.expect │ │ │ │ ├── required_member.dart │ │ │ │ ├── required_member.dart.expect │ │ │ │ ├── required_member.dart.intertwined.expect │ │ │ │ ├── required_member.dart.parser.expect │ │ │ │ ├── required_member.dart.scanner.expect │ │ │ │ ├── required_modifier.dart │ │ │ │ ├── required_modifier.dart.expect │ │ │ │ ├── required_modifier.dart.intertwined.expect │ │ │ │ ├── required_modifier.dart.parser.expect │ │ │ │ └── required_modifier.dart.scanner.expect │ │ │ ├── no-triple-shift │ │ │ │ ├── define_triple_shift_method.dart │ │ │ │ ├── define_triple_shift_method.dart.expect │ │ │ │ ├── define_triple_shift_method.dart.intertwined.expect │ │ │ │ ├── define_triple_shift_method.dart.parser.expect │ │ │ │ ├── define_triple_shift_method.dart.scanner.expect │ │ │ │ ├── define_triple_shift_method.equivalence_info │ │ │ │ ├── define_triple_shift_method_prime.dart │ │ │ │ ├── define_triple_shift_method_prime.dart.expect │ │ │ │ ├── define_triple_shift_method_prime.dart.intertwined.expect │ │ │ │ ├── define_triple_shift_method_prime.dart.parser.expect │ │ │ │ ├── define_triple_shift_method_prime.dart.scanner.expect │ │ │ │ ├── simple_attempted_usage_of_triple_shift.dart │ │ │ │ ├── simple_attempted_usage_of_triple_shift.dart.expect │ │ │ │ ├── simple_attempted_usage_of_triple_shift.dart.intertwined.expect │ │ │ │ ├── simple_attempted_usage_of_triple_shift.dart.parser.expect │ │ │ │ ├── simple_attempted_usage_of_triple_shift.dart.scanner.expect │ │ │ │ ├── triple_shift_not_triple_shift.dart │ │ │ │ ├── triple_shift_not_triple_shift.dart.expect │ │ │ │ ├── triple_shift_not_triple_shift.dart.intertwined.expect │ │ │ │ ├── triple_shift_not_triple_shift.dart.parser.expect │ │ │ │ ├── triple_shift_not_triple_shift.dart.scanner.expect │ │ │ │ ├── triple_shift_symbol.dart │ │ │ │ ├── triple_shift_symbol.dart.expect │ │ │ │ ├── triple_shift_symbol.dart.intertwined.expect │ │ │ │ ├── triple_shift_symbol.dart.parser.expect │ │ │ │ └── triple_shift_symbol.dart.scanner.expect │ │ │ ├── non-nnbd │ │ │ │ ├── issue_39326.dart │ │ │ │ ├── issue_39326.dart.expect │ │ │ │ ├── issue_39326.dart.intertwined.expect │ │ │ │ ├── issue_39326.dart.parser.expect │ │ │ │ ├── issue_39326.dart.scanner.expect │ │ │ │ ├── issue_40267_conditional.dart │ │ │ │ ├── issue_40267_conditional.dart.expect │ │ │ │ ├── issue_40267_conditional.dart.intertwined.expect │ │ │ │ ├── issue_40267_conditional.dart.parser.expect │ │ │ │ ├── issue_40267_conditional.dart.scanner.expect │ │ │ │ ├── issue_40267_conditional_2.dart │ │ │ │ ├── issue_40267_conditional_2.dart.expect │ │ │ │ ├── issue_40267_conditional_2.dart.intertwined.expect │ │ │ │ ├── issue_40267_conditional_2.dart.parser.expect │ │ │ │ ├── issue_40267_conditional_2.dart.scanner.expect │ │ │ │ ├── issue_40267_conditional_3.dart │ │ │ │ ├── issue_40267_conditional_3.dart.expect │ │ │ │ ├── issue_40267_conditional_3.dart.intertwined.expect │ │ │ │ ├── issue_40267_conditional_3.dart.parser.expect │ │ │ │ ├── issue_40267_conditional_3.dart.scanner.expect │ │ │ │ ├── issue_40267_conditional_4.dart │ │ │ │ ├── issue_40267_conditional_4.dart.expect │ │ │ │ ├── issue_40267_conditional_4.dart.intertwined.expect │ │ │ │ ├── issue_40267_conditional_4.dart.parser.expect │ │ │ │ ├── issue_40267_conditional_4.dart.scanner.expect │ │ │ │ ├── issue_40288.dart │ │ │ │ ├── issue_40288.dart.expect │ │ │ │ ├── issue_40288.dart.intertwined.expect │ │ │ │ ├── issue_40288.dart.parser.expect │ │ │ │ ├── issue_40288.dart.scanner.expect │ │ │ │ ├── issue_40288_prime.dart │ │ │ │ ├── issue_40288_prime.dart.expect │ │ │ │ ├── issue_40288_prime.dart.intertwined.expect │ │ │ │ ├── issue_40288_prime.dart.parser.expect │ │ │ │ ├── issue_40288_prime.dart.scanner.expect │ │ │ │ ├── nullable_type_argument.dart │ │ │ │ ├── nullable_type_argument.dart.expect │ │ │ │ ├── nullable_type_argument.dart.intertwined.expect │ │ │ │ ├── nullable_type_argument.dart.parser.expect │ │ │ │ ├── nullable_type_argument.dart.scanner.expect │ │ │ │ ├── use_late_in_non_nnbd.dart │ │ │ │ ├── use_late_in_non_nnbd.dart.expect │ │ │ │ ├── use_late_in_non_nnbd.dart.intertwined.expect │ │ │ │ ├── use_late_in_non_nnbd.dart.parser.expect │ │ │ │ ├── use_late_in_non_nnbd.dart.scanner.expect │ │ │ │ ├── use_required_in_non_nnbd.dart │ │ │ │ ├── use_required_in_non_nnbd.dart.expect │ │ │ │ ├── use_required_in_non_nnbd.dart.intertwined.expect │ │ │ │ ├── use_required_in_non_nnbd.dart.parser.expect │ │ │ │ └── use_required_in_non_nnbd.dart.scanner.expect │ │ │ ├── parser.status │ │ │ ├── parser_all.status │ │ │ ├── parser_equivalence.status │ │ │ ├── patterns │ │ │ │ ├── boolean_literal_inside_case.dart │ │ │ │ ├── boolean_literal_inside_case.dart.expect │ │ │ │ ├── boolean_literal_inside_case.dart.intertwined.expect │ │ │ │ ├── boolean_literal_inside_case.dart.parser.expect │ │ │ │ ├── boolean_literal_inside_case.dart.scanner.expect │ │ │ │ ├── boolean_literal_inside_cast.dart │ │ │ │ ├── boolean_literal_inside_cast.dart.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.intertwined.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.parser.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.scanner.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart │ │ │ │ ├── boolean_literal_inside_if_case.dart.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.intertwined.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.parser.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.scanner.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart │ │ │ │ ├── boolean_literal_inside_null_assert.dart.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.parser.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.scanner.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart │ │ │ │ ├── boolean_literal_inside_null_check.dart.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.intertwined.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.parser.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.scanner.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.parser.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.parser.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideIfStatement.dart │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideIfStatement.dart.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideIfStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideIfStatement.dart.parser.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideIfStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideSwitchStatement.dart │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideSwitchStatement.dart.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideSwitchStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideSwitchStatement.dart.parser.expect │ │ │ │ ├── caseHead_withClassicPattern_unguarded_insideSwitchStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.parser.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.parser.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideIfStatement.dart │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideIfStatement.dart.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideIfStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideIfStatement.dart.parser.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideIfStatement.dart.scanner.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideSwitchStatement.dart │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideSwitchStatement.dart.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideSwitchStatement.dart.intertwined.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideSwitchStatement.dart.parser.expect │ │ │ │ ├── caseHead_withNewPattern_unguarded_insideSwitchStatement.dart.scanner.expect │ │ │ │ ├── case_identifier_dot_incomplete.dart │ │ │ │ ├── case_identifier_dot_incomplete.dart.expect │ │ │ │ ├── case_identifier_dot_incomplete.dart.intertwined.expect │ │ │ │ ├── case_identifier_dot_incomplete.dart.parser.expect │ │ │ │ ├── case_identifier_dot_incomplete.dart.scanner.expect │ │ │ │ ├── cast_insideCast.dart │ │ │ │ ├── cast_insideCast.dart.expect │ │ │ │ ├── cast_insideCast.dart.intertwined.expect │ │ │ │ ├── cast_insideCast.dart.parser.expect │ │ │ │ ├── cast_insideCast.dart.scanner.expect │ │ │ │ ├── cast_insideCast_parenthesized.dart │ │ │ │ ├── cast_insideCast_parenthesized.dart.expect │ │ │ │ ├── cast_insideCast_parenthesized.dart.intertwined.expect │ │ │ │ ├── cast_insideCast_parenthesized.dart.parser.expect │ │ │ │ ├── cast_insideCast_parenthesized.dart.scanner.expect │ │ │ │ ├── cast_insideNullAssert.dart │ │ │ │ ├── cast_insideNullAssert.dart.expect │ │ │ │ ├── cast_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── cast_insideNullAssert.dart.parser.expect │ │ │ │ ├── cast_insideNullAssert.dart.scanner.expect │ │ │ │ ├── cast_insideNullCheck.dart │ │ │ │ ├── cast_insideNullCheck.dart.expect │ │ │ │ ├── cast_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── cast_insideNullCheck.dart.parser.expect │ │ │ │ ├── cast_insideNullCheck.dart.scanner.expect │ │ │ │ ├── cast_inside_case.dart │ │ │ │ ├── cast_inside_case.dart.expect │ │ │ │ ├── cast_inside_case.dart.intertwined.expect │ │ │ │ ├── cast_inside_case.dart.parser.expect │ │ │ │ ├── cast_inside_case.dart.scanner.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart │ │ │ │ ├── cast_inside_extractor_pattern.dart.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.intertwined.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.parser.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.scanner.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.intertwined.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.parser.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── cast_inside_if_case.dart │ │ │ │ ├── cast_inside_if_case.dart.expect │ │ │ │ ├── cast_inside_if_case.dart.intertwined.expect │ │ │ │ ├── cast_inside_if_case.dart.parser.expect │ │ │ │ ├── cast_inside_if_case.dart.scanner.expect │ │ │ │ ├── cast_inside_list_pattern.dart │ │ │ │ ├── cast_inside_list_pattern.dart.expect │ │ │ │ ├── cast_inside_list_pattern.dart.intertwined.expect │ │ │ │ ├── cast_inside_list_pattern.dart.parser.expect │ │ │ │ ├── cast_inside_list_pattern.dart.scanner.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart │ │ │ │ ├── cast_inside_logical_and_lhs.dart.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.intertwined.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.parser.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.scanner.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart │ │ │ │ ├── cast_inside_logical_and_rhs.dart.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.intertwined.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.parser.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.scanner.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart │ │ │ │ ├── cast_inside_logical_or_lhs.dart.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.intertwined.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.parser.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.scanner.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart │ │ │ │ ├── cast_inside_logical_or_rhs.dart.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.intertwined.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.parser.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.scanner.expect │ │ │ │ ├── cast_inside_map_pattern.dart │ │ │ │ ├── cast_inside_map_pattern.dart.expect │ │ │ │ ├── cast_inside_map_pattern.dart.intertwined.expect │ │ │ │ ├── cast_inside_map_pattern.dart.parser.expect │ │ │ │ ├── cast_inside_map_pattern.dart.scanner.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.intertwined.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.parser.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.scanner.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.intertwined.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.parser.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart │ │ │ │ ├── cast_inside_record_pattern_named.dart.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.intertwined.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.parser.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.scanner.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.intertwined.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.parser.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.scanner.expect │ │ │ │ ├── const_patterns.dart │ │ │ │ ├── const_patterns.dart.expect │ │ │ │ ├── const_patterns.dart.intertwined.expect │ │ │ │ ├── const_patterns.dart.parser.expect │ │ │ │ ├── const_patterns.dart.scanner.expect │ │ │ │ ├── const_patterns_binary.dart │ │ │ │ ├── const_patterns_binary.dart.expect │ │ │ │ ├── const_patterns_binary.dart.intertwined.expect │ │ │ │ ├── const_patterns_binary.dart.parser.expect │ │ │ │ ├── const_patterns_binary.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_builtin.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_builtin.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_builtin.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_builtin.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_builtin.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCase.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCase.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCase.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCase.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCast.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCast.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCast.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideCast.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideIfCase.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_insideIfCase.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullAssert.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullAssert.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullCheck.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullCheck.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_pseudoKeyword.dart │ │ │ │ ├── constant_identifier_doublyPrefixed_pseudoKeyword.dart.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_pseudoKeyword.dart.intertwined.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_pseudoKeyword.dart.parser.expect │ │ │ │ ├── constant_identifier_doublyPrefixed_pseudoKeyword.dart.scanner.expect │ │ │ │ ├── constant_identifier_inside_case.dart │ │ │ │ ├── constant_identifier_inside_case.dart.expect │ │ │ │ ├── constant_identifier_inside_case.dart.intertwined.expect │ │ │ │ ├── constant_identifier_inside_case.dart.parser.expect │ │ │ │ ├── constant_identifier_inside_case.dart.scanner.expect │ │ │ │ ├── constant_identifier_inside_cast.dart │ │ │ │ ├── constant_identifier_inside_cast.dart.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.intertwined.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.parser.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.scanner.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart │ │ │ │ ├── constant_identifier_inside_if_case.dart.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.intertwined.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.parser.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.scanner.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart │ │ │ │ ├── constant_identifier_inside_null_assert.dart.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.parser.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.scanner.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart │ │ │ │ ├── constant_identifier_inside_null_check.dart.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.intertwined.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.parser.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixedWithUnderscore_insideCase.dart │ │ │ │ ├── constant_identifier_prefixedWithUnderscore_insideCase.dart.expect │ │ │ │ ├── constant_identifier_prefixedWithUnderscore_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixedWithUnderscore_insideCase.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixedWithUnderscore_insideCase.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_builtin.dart │ │ │ │ ├── constant_identifier_prefixed_builtin.dart.expect │ │ │ │ ├── constant_identifier_prefixed_builtin.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_builtin.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_builtin.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_insideCase.dart │ │ │ │ ├── constant_identifier_prefixed_insideCase.dart.expect │ │ │ │ ├── constant_identifier_prefixed_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_insideCase.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_insideCase.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_insideCast.dart │ │ │ │ ├── constant_identifier_prefixed_insideCast.dart.expect │ │ │ │ ├── constant_identifier_prefixed_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_insideCast.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_insideCast.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_insideIfCase.dart │ │ │ │ ├── constant_identifier_prefixed_insideIfCase.dart.expect │ │ │ │ ├── constant_identifier_prefixed_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullAssert.dart │ │ │ │ ├── constant_identifier_prefixed_insideNullAssert.dart.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullCheck.dart │ │ │ │ ├── constant_identifier_prefixed_insideNullCheck.dart.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_identifier_prefixed_pseudoKeyword.dart │ │ │ │ ├── constant_identifier_prefixed_pseudoKeyword.dart.expect │ │ │ │ ├── constant_identifier_prefixed_pseudoKeyword.dart.intertwined.expect │ │ │ │ ├── constant_identifier_prefixed_pseudoKeyword.dart.parser.expect │ │ │ │ ├── constant_identifier_prefixed_pseudoKeyword.dart.scanner.expect │ │ │ │ ├── constant_identifier_unprefixed_beforeWhen.dart │ │ │ │ ├── constant_identifier_unprefixed_beforeWhen.dart.expect │ │ │ │ ├── constant_identifier_unprefixed_beforeWhen.dart.intertwined.expect │ │ │ │ ├── constant_identifier_unprefixed_beforeWhen.dart.parser.expect │ │ │ │ ├── constant_identifier_unprefixed_beforeWhen.dart.scanner.expect │ │ │ │ ├── constant_identifier_unprefixed_builtin.dart │ │ │ │ ├── constant_identifier_unprefixed_builtin.dart.expect │ │ │ │ ├── constant_identifier_unprefixed_builtin.dart.intertwined.expect │ │ │ │ ├── constant_identifier_unprefixed_builtin.dart.parser.expect │ │ │ │ ├── constant_identifier_unprefixed_builtin.dart.scanner.expect │ │ │ │ ├── constant_identifier_unprefixed_insideSwitchExpression.dart │ │ │ │ ├── constant_identifier_unprefixed_insideSwitchExpression.dart.expect │ │ │ │ ├── constant_identifier_unprefixed_insideSwitchExpression.dart.intertwined.expect │ │ │ │ ├── constant_identifier_unprefixed_insideSwitchExpression.dart.parser.expect │ │ │ │ ├── constant_identifier_unprefixed_insideSwitchExpression.dart.scanner.expect │ │ │ │ ├── constant_identifier_unprefixed_pseudoKeyword.dart │ │ │ │ ├── constant_identifier_unprefixed_pseudoKeyword.dart.expect │ │ │ │ ├── constant_identifier_unprefixed_pseudoKeyword.dart.intertwined.expect │ │ │ │ ├── constant_identifier_unprefixed_pseudoKeyword.dart.parser.expect │ │ │ │ ├── constant_identifier_unprefixed_pseudoKeyword.dart.scanner.expect │ │ │ │ ├── constant_list_typed_empty_insideCase.dart │ │ │ │ ├── constant_list_typed_empty_insideCase.dart.expect │ │ │ │ ├── constant_list_typed_empty_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_empty_insideCase.dart.parser.expect │ │ │ │ ├── constant_list_typed_empty_insideCase.dart.scanner.expect │ │ │ │ ├── constant_list_typed_empty_insideCast.dart │ │ │ │ ├── constant_list_typed_empty_insideCast.dart.expect │ │ │ │ ├── constant_list_typed_empty_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_empty_insideCast.dart.parser.expect │ │ │ │ ├── constant_list_typed_empty_insideCast.dart.scanner.expect │ │ │ │ ├── constant_list_typed_empty_insideIfCase.dart │ │ │ │ ├── constant_list_typed_empty_insideIfCase.dart.expect │ │ │ │ ├── constant_list_typed_empty_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_empty_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_list_typed_empty_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_list_typed_empty_insideNullAssert.dart │ │ │ │ ├── constant_list_typed_empty_insideNullAssert.dart.expect │ │ │ │ ├── constant_list_typed_empty_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_empty_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_list_typed_empty_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_list_typed_empty_insideNullCheck.dart │ │ │ │ ├── constant_list_typed_empty_insideNullCheck.dart.expect │ │ │ │ ├── constant_list_typed_empty_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_empty_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_list_typed_empty_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCase.dart │ │ │ │ ├── constant_list_typed_nonEmpty_insideCase.dart.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCase.dart.parser.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCase.dart.scanner.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCast.dart │ │ │ │ ├── constant_list_typed_nonEmpty_insideCast.dart.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCast.dart.parser.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideCast.dart.scanner.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideIfCase.dart │ │ │ │ ├── constant_list_typed_nonEmpty_insideIfCase.dart.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullAssert.dart │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullAssert.dart.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullCheck.dart │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullCheck.dart.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_list_typed_nonEmpty_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_empty_insideCase.dart │ │ │ │ ├── constant_list_untyped_empty_insideCase.dart.expect │ │ │ │ ├── constant_list_untyped_empty_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_empty_insideCase.dart.parser.expect │ │ │ │ ├── constant_list_untyped_empty_insideCase.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_empty_insideCast.dart │ │ │ │ ├── constant_list_untyped_empty_insideCast.dart.expect │ │ │ │ ├── constant_list_untyped_empty_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_empty_insideCast.dart.parser.expect │ │ │ │ ├── constant_list_untyped_empty_insideCast.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_empty_insideIfCase.dart │ │ │ │ ├── constant_list_untyped_empty_insideIfCase.dart.expect │ │ │ │ ├── constant_list_untyped_empty_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_empty_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_list_untyped_empty_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullAssert.dart │ │ │ │ ├── constant_list_untyped_empty_insideNullAssert.dart.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullCheck.dart │ │ │ │ ├── constant_list_untyped_empty_insideNullCheck.dart.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_list_untyped_empty_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCase.dart │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCase.dart.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCase.dart.parser.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCase.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCast.dart │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCast.dart.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCast.dart.parser.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideCast.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideIfCase.dart │ │ │ │ ├── constant_list_untyped_nonEmpty_insideIfCase.dart.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullAssert.dart │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullAssert.dart.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullCheck.dart │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullCheck.dart.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_list_untyped_nonEmpty_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_map_typed_insideCase.dart │ │ │ │ ├── constant_map_typed_insideCase.dart.expect │ │ │ │ ├── constant_map_typed_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_map_typed_insideCase.dart.parser.expect │ │ │ │ ├── constant_map_typed_insideCase.dart.scanner.expect │ │ │ │ ├── constant_map_typed_insideCast.dart │ │ │ │ ├── constant_map_typed_insideCast.dart.expect │ │ │ │ ├── constant_map_typed_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_map_typed_insideCast.dart.parser.expect │ │ │ │ ├── constant_map_typed_insideCast.dart.scanner.expect │ │ │ │ ├── constant_map_typed_insideIfCase.dart │ │ │ │ ├── constant_map_typed_insideIfCase.dart.expect │ │ │ │ ├── constant_map_typed_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_map_typed_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_map_typed_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_map_typed_insideNullAssert.dart │ │ │ │ ├── constant_map_typed_insideNullAssert.dart.expect │ │ │ │ ├── constant_map_typed_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_map_typed_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_map_typed_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_map_typed_insideNullCheck.dart │ │ │ │ ├── constant_map_typed_insideNullCheck.dart.expect │ │ │ │ ├── constant_map_typed_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_map_typed_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_map_typed_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_map_untyped_insideCase.dart │ │ │ │ ├── constant_map_untyped_insideCase.dart.expect │ │ │ │ ├── constant_map_untyped_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_map_untyped_insideCase.dart.parser.expect │ │ │ │ ├── constant_map_untyped_insideCase.dart.scanner.expect │ │ │ │ ├── constant_map_untyped_insideCast.dart │ │ │ │ ├── constant_map_untyped_insideCast.dart.expect │ │ │ │ ├── constant_map_untyped_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_map_untyped_insideCast.dart.parser.expect │ │ │ │ ├── constant_map_untyped_insideCast.dart.scanner.expect │ │ │ │ ├── constant_map_untyped_insideIfCase.dart │ │ │ │ ├── constant_map_untyped_insideIfCase.dart.expect │ │ │ │ ├── constant_map_untyped_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_map_untyped_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_map_untyped_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_map_untyped_insideNullAssert.dart │ │ │ │ ├── constant_map_untyped_insideNullAssert.dart.expect │ │ │ │ ├── constant_map_untyped_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_map_untyped_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_map_untyped_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_map_untyped_insideNullCheck.dart │ │ │ │ ├── constant_map_untyped_insideNullCheck.dart.expect │ │ │ │ ├── constant_map_untyped_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_map_untyped_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_map_untyped_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_objectExpression_insideCase.dart │ │ │ │ ├── constant_objectExpression_insideCase.dart.expect │ │ │ │ ├── constant_objectExpression_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_objectExpression_insideCase.dart.parser.expect │ │ │ │ ├── constant_objectExpression_insideCase.dart.scanner.expect │ │ │ │ ├── constant_objectExpression_insideCast.dart │ │ │ │ ├── constant_objectExpression_insideCast.dart.expect │ │ │ │ ├── constant_objectExpression_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_objectExpression_insideCast.dart.parser.expect │ │ │ │ ├── constant_objectExpression_insideCast.dart.scanner.expect │ │ │ │ ├── constant_objectExpression_insideIfCase.dart │ │ │ │ ├── constant_objectExpression_insideIfCase.dart.expect │ │ │ │ ├── constant_objectExpression_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_objectExpression_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_objectExpression_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_objectExpression_insideNullAssert.dart │ │ │ │ ├── constant_objectExpression_insideNullAssert.dart.expect │ │ │ │ ├── constant_objectExpression_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_objectExpression_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_objectExpression_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_objectExpression_insideNullCheck.dart │ │ │ │ ├── constant_objectExpression_insideNullCheck.dart.expect │ │ │ │ ├── constant_objectExpression_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_objectExpression_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_objectExpression_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_parenthesized_insideCase.dart │ │ │ │ ├── constant_parenthesized_insideCase.dart.expect │ │ │ │ ├── constant_parenthesized_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_parenthesized_insideCase.dart.parser.expect │ │ │ │ ├── constant_parenthesized_insideCase.dart.scanner.expect │ │ │ │ ├── constant_parenthesized_insideCast.dart │ │ │ │ ├── constant_parenthesized_insideCast.dart.expect │ │ │ │ ├── constant_parenthesized_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_parenthesized_insideCast.dart.parser.expect │ │ │ │ ├── constant_parenthesized_insideCast.dart.scanner.expect │ │ │ │ ├── constant_parenthesized_insideIfCase.dart │ │ │ │ ├── constant_parenthesized_insideIfCase.dart.expect │ │ │ │ ├── constant_parenthesized_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_parenthesized_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_parenthesized_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_parenthesized_insideNullAssert.dart │ │ │ │ ├── constant_parenthesized_insideNullAssert.dart.expect │ │ │ │ ├── constant_parenthesized_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_parenthesized_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_parenthesized_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_parenthesized_insideNullCheck.dart │ │ │ │ ├── constant_parenthesized_insideNullCheck.dart.expect │ │ │ │ ├── constant_parenthesized_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_parenthesized_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_parenthesized_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_set_typed_insideCase.dart │ │ │ │ ├── constant_set_typed_insideCase.dart.expect │ │ │ │ ├── constant_set_typed_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_set_typed_insideCase.dart.parser.expect │ │ │ │ ├── constant_set_typed_insideCase.dart.scanner.expect │ │ │ │ ├── constant_set_typed_insideCast.dart │ │ │ │ ├── constant_set_typed_insideCast.dart.expect │ │ │ │ ├── constant_set_typed_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_set_typed_insideCast.dart.parser.expect │ │ │ │ ├── constant_set_typed_insideCast.dart.scanner.expect │ │ │ │ ├── constant_set_typed_insideIfCase.dart │ │ │ │ ├── constant_set_typed_insideIfCase.dart.expect │ │ │ │ ├── constant_set_typed_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_set_typed_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_set_typed_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_set_typed_insideNullAssert.dart │ │ │ │ ├── constant_set_typed_insideNullAssert.dart.expect │ │ │ │ ├── constant_set_typed_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_set_typed_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_set_typed_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_set_typed_insideNullCheck.dart │ │ │ │ ├── constant_set_typed_insideNullCheck.dart.expect │ │ │ │ ├── constant_set_typed_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_set_typed_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_set_typed_insideNullCheck.dart.scanner.expect │ │ │ │ ├── constant_set_untyped_insideCase.dart │ │ │ │ ├── constant_set_untyped_insideCase.dart.expect │ │ │ │ ├── constant_set_untyped_insideCase.dart.intertwined.expect │ │ │ │ ├── constant_set_untyped_insideCase.dart.parser.expect │ │ │ │ ├── constant_set_untyped_insideCase.dart.scanner.expect │ │ │ │ ├── constant_set_untyped_insideCast.dart │ │ │ │ ├── constant_set_untyped_insideCast.dart.expect │ │ │ │ ├── constant_set_untyped_insideCast.dart.intertwined.expect │ │ │ │ ├── constant_set_untyped_insideCast.dart.parser.expect │ │ │ │ ├── constant_set_untyped_insideCast.dart.scanner.expect │ │ │ │ ├── constant_set_untyped_insideIfCase.dart │ │ │ │ ├── constant_set_untyped_insideIfCase.dart.expect │ │ │ │ ├── constant_set_untyped_insideIfCase.dart.intertwined.expect │ │ │ │ ├── constant_set_untyped_insideIfCase.dart.parser.expect │ │ │ │ ├── constant_set_untyped_insideIfCase.dart.scanner.expect │ │ │ │ ├── constant_set_untyped_insideNullAssert.dart │ │ │ │ ├── constant_set_untyped_insideNullAssert.dart.expect │ │ │ │ ├── constant_set_untyped_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── constant_set_untyped_insideNullAssert.dart.parser.expect │ │ │ │ ├── constant_set_untyped_insideNullAssert.dart.scanner.expect │ │ │ │ ├── constant_set_untyped_insideNullCheck.dart │ │ │ │ ├── constant_set_untyped_insideNullCheck.dart.expect │ │ │ │ ├── constant_set_untyped_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── constant_set_untyped_insideNullCheck.dart.parser.expect │ │ │ │ ├── constant_set_untyped_insideNullCheck.dart.scanner.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinal.dart │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinal.dart.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinal.dart.intertwined.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinal.dart.parser.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinal.dart.scanner.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinalAndType.dart │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinalAndType.dart.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinalAndType.dart.intertwined.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinalAndType.dart.parser.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingFinalAndType.dart.scanner.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingType.dart │ │ │ │ ├── declaredVariable_inPatternAssignment_usingType.dart.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingType.dart.intertwined.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingType.dart.parser.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingType.dart.scanner.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVar.dart │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVar.dart.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVar.dart.intertwined.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVar.dart.parser.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVar.dart.scanner.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVarAndType.dart │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVarAndType.dart.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVarAndType.dart.intertwined.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVarAndType.dart.parser.expect │ │ │ │ ├── declaredVariable_inPatternAssignment_usingVarAndType.dart.scanner.expect │ │ │ │ ├── double_literal_inside_case.dart │ │ │ │ ├── double_literal_inside_case.dart.expect │ │ │ │ ├── double_literal_inside_case.dart.intertwined.expect │ │ │ │ ├── double_literal_inside_case.dart.parser.expect │ │ │ │ ├── double_literal_inside_case.dart.scanner.expect │ │ │ │ ├── double_literal_inside_cast.dart │ │ │ │ ├── double_literal_inside_cast.dart.expect │ │ │ │ ├── double_literal_inside_cast.dart.intertwined.expect │ │ │ │ ├── double_literal_inside_cast.dart.parser.expect │ │ │ │ ├── double_literal_inside_cast.dart.scanner.expect │ │ │ │ ├── double_literal_inside_if_case.dart │ │ │ │ ├── double_literal_inside_if_case.dart.expect │ │ │ │ ├── double_literal_inside_if_case.dart.intertwined.expect │ │ │ │ ├── double_literal_inside_if_case.dart.parser.expect │ │ │ │ ├── double_literal_inside_if_case.dart.scanner.expect │ │ │ │ ├── double_literal_inside_null_assert.dart │ │ │ │ ├── double_literal_inside_null_assert.dart.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.parser.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.scanner.expect │ │ │ │ ├── double_literal_inside_null_check.dart │ │ │ │ ├── double_literal_inside_null_check.dart.expect │ │ │ │ ├── double_literal_inside_null_check.dart.intertwined.expect │ │ │ │ ├── double_literal_inside_null_check.dart.parser.expect │ │ │ │ ├── double_literal_inside_null_check.dart.scanner.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.intertwined.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.parser.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.scanner.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart │ │ │ │ ├── extractor_pattern_inside_cast.dart.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.intertwined.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.parser.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.scanner.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.parser.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.scanner.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart │ │ │ │ ├── extractor_pattern_inside_null_check.dart.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.intertwined.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.parser.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.scanner.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart │ │ │ │ ├── extractor_pattern_with_type_args.dart.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.intertwined.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.parser.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.scanner.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.parser.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.scanner.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withTypeArgs_insideCase.dart │ │ │ │ ├── extractor_prefixedNamedUnderscore_withTypeArgs_insideCase.dart.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withTypeArgs_insideCase.dart.intertwined.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withTypeArgs_insideCase.dart.parser.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withTypeArgs_insideCase.dart.scanner.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withoutTypeArgs_insideCase.dart │ │ │ │ ├── extractor_prefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.intertwined.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.parser.expect │ │ │ │ ├── extractor_prefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.scanner.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withTypeArgs_insideCase.dart │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withTypeArgs_insideCase.dart.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withTypeArgs_insideCase.dart.intertwined.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withTypeArgs_insideCase.dart.parser.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withTypeArgs_insideCase.dart.scanner.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withoutTypeArgs_insideCase.dart │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.intertwined.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.parser.expect │ │ │ │ ├── extractor_unprefixedNamedUnderscore_withoutTypeArgs_insideCase.dart.scanner.expect │ │ │ │ ├── final_variable_inside_case.dart │ │ │ │ ├── final_variable_inside_case.dart.expect │ │ │ │ ├── final_variable_inside_case.dart.intertwined.expect │ │ │ │ ├── final_variable_inside_case.dart.parser.expect │ │ │ │ ├── final_variable_inside_case.dart.scanner.expect │ │ │ │ ├── final_variable_inside_cast.dart │ │ │ │ ├── final_variable_inside_cast.dart.expect │ │ │ │ ├── final_variable_inside_cast.dart.intertwined.expect │ │ │ │ ├── final_variable_inside_cast.dart.parser.expect │ │ │ │ ├── final_variable_inside_cast.dart.scanner.expect │ │ │ │ ├── final_variable_inside_if_case.dart │ │ │ │ ├── final_variable_inside_if_case.dart.expect │ │ │ │ ├── final_variable_inside_if_case.dart.intertwined.expect │ │ │ │ ├── final_variable_inside_if_case.dart.parser.expect │ │ │ │ ├── final_variable_inside_if_case.dart.scanner.expect │ │ │ │ ├── final_variable_inside_null_assert.dart │ │ │ │ ├── final_variable_inside_null_assert.dart.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.parser.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.scanner.expect │ │ │ │ ├── final_variable_inside_null_check.dart │ │ │ │ ├── final_variable_inside_null_check.dart.expect │ │ │ │ ├── final_variable_inside_null_check.dart.intertwined.expect │ │ │ │ ├── final_variable_inside_null_check.dart.parser.expect │ │ │ │ ├── final_variable_inside_null_check.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_afterSwitchExpression.dart │ │ │ │ ├── functionExpression_allowed_afterSwitchExpression.dart.expect │ │ │ │ ├── functionExpression_allowed_afterSwitchExpression.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_afterSwitchExpression.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_afterSwitchExpression.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_element.dart │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_element.dart.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_element.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_element.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_element.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_statement.dart │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_statement.dart.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_statement.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_statement.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideIfCaseWhenClause_statement.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideListPattern.dart │ │ │ │ ├── functionExpression_allowed_insideListPattern.dart.expect │ │ │ │ ├── functionExpression_allowed_insideListPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideListPattern.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideListPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideMapPattern.dart │ │ │ │ ├── functionExpression_allowed_insideMapPattern.dart.expect │ │ │ │ ├── functionExpression_allowed_insideMapPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideMapPattern.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideMapPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideObjectPattern.dart │ │ │ │ ├── functionExpression_allowed_insideObjectPattern.dart.expect │ │ │ │ ├── functionExpression_allowed_insideObjectPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideObjectPattern.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideObjectPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedConstPattern.dart │ │ │ │ ├── functionExpression_allowed_insideParenthesizedConstPattern.dart.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedConstPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedConstPattern.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedConstPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedPattern.dart │ │ │ │ ├── functionExpression_allowed_insideParenthesizedPattern.dart.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedPattern.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideParenthesizedPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_guarded.dart │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_guarded.dart.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_guarded.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_guarded.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_guarded.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_unguarded.dart │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_unguarded.dart.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_unguarded.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_unguarded.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionCase_unguarded.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionScrutinee.dart │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionScrutinee.dart.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionScrutinee.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionScrutinee.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchExpressionScrutinee.dart.scanner.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchStatementInWhenClause.dart │ │ │ │ ├── functionExpression_allowed_insideSwitchStatementInWhenClause.dart.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchStatementInWhenClause.dart.intertwined.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchStatementInWhenClause.dart.parser.expect │ │ │ │ ├── functionExpression_allowed_insideSwitchStatementInWhenClause.dart.scanner.expect │ │ │ │ ├── functionExpression_disallowed_afterListPattern.dart │ │ │ │ ├── functionExpression_disallowed_afterListPattern.dart.expect │ │ │ │ ├── functionExpression_disallowed_afterListPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_disallowed_afterListPattern.dart.parser.expect │ │ │ │ ├── functionExpression_disallowed_afterListPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_disallowed_afterMapPattern.dart │ │ │ │ ├── functionExpression_disallowed_afterMapPattern.dart.expect │ │ │ │ ├── functionExpression_disallowed_afterMapPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_disallowed_afterMapPattern.dart.parser.expect │ │ │ │ ├── functionExpression_disallowed_afterMapPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_disallowed_afterObjectPattern.dart │ │ │ │ ├── functionExpression_disallowed_afterObjectPattern.dart.expect │ │ │ │ ├── functionExpression_disallowed_afterObjectPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_disallowed_afterObjectPattern.dart.parser.expect │ │ │ │ ├── functionExpression_disallowed_afterObjectPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_disallowed_afterParenthesizedPattern.dart │ │ │ │ ├── functionExpression_disallowed_afterParenthesizedPattern.dart.expect │ │ │ │ ├── functionExpression_disallowed_afterParenthesizedPattern.dart.intertwined.expect │ │ │ │ ├── functionExpression_disallowed_afterParenthesizedPattern.dart.parser.expect │ │ │ │ ├── functionExpression_disallowed_afterParenthesizedPattern.dart.scanner.expect │ │ │ │ ├── functionExpression_disallowed_afterSwitchExpressionInWhenClause.dart │ │ │ │ ├── functionExpression_disallowed_afterSwitchExpressionInWhenClause.dart.expect │ │ │ │ ├── functionExpression_disallowed_afterSwitchExpressionInWhenClause.dart.intertwined.expect │ │ │ │ ├── functionExpression_disallowed_afterSwitchExpressionInWhenClause.dart.parser.expect │ │ │ │ ├── functionExpression_disallowed_afterSwitchExpressionInWhenClause.dart.scanner.expect │ │ │ │ ├── functionExpression_disallowed_insideSwitchExpressionInWhenClause.dart │ │ │ │ ├── functionExpression_disallowed_insideSwitchExpressionInWhenClause.dart.expect │ │ │ │ ├── functionExpression_disallowed_insideSwitchExpressionInWhenClause.dart.intertwined.expect │ │ │ │ ├── functionExpression_disallowed_insideSwitchExpressionInWhenClause.dart.parser.expect │ │ │ │ ├── functionExpression_disallowed_insideSwitchExpressionInWhenClause.dart.scanner.expect │ │ │ │ ├── identifier_as_when.dart │ │ │ │ ├── identifier_as_when.dart.expect │ │ │ │ ├── identifier_as_when.dart.intertwined.expect │ │ │ │ ├── identifier_as_when.dart.parser.expect │ │ │ │ ├── identifier_as_when.dart.scanner.expect │ │ │ │ ├── identifier_when_as.dart │ │ │ │ ├── identifier_when_as.dart.expect │ │ │ │ ├── identifier_when_as.dart.intertwined.expect │ │ │ │ ├── identifier_when_as.dart.parser.expect │ │ │ │ ├── identifier_when_as.dart.scanner.expect │ │ │ │ ├── identifier_when_not.dart │ │ │ │ ├── identifier_when_not.dart.expect │ │ │ │ ├── identifier_when_not.dart.intertwined.expect │ │ │ │ ├── identifier_when_not.dart.parser.expect │ │ │ │ ├── identifier_when_not.dart.scanner.expect │ │ │ │ ├── identifier_when_when.dart │ │ │ │ ├── identifier_when_when.dart.expect │ │ │ │ ├── identifier_when_when.dart.intertwined.expect │ │ │ │ ├── identifier_when_when.dart.parser.expect │ │ │ │ ├── identifier_when_when.dart.scanner.expect │ │ │ │ ├── integer_literal_inside_case.dart │ │ │ │ ├── integer_literal_inside_case.dart.expect │ │ │ │ ├── integer_literal_inside_case.dart.intertwined.expect │ │ │ │ ├── integer_literal_inside_case.dart.parser.expect │ │ │ │ ├── integer_literal_inside_case.dart.scanner.expect │ │ │ │ ├── integer_literal_inside_cast.dart │ │ │ │ ├── integer_literal_inside_cast.dart.expect │ │ │ │ ├── integer_literal_inside_cast.dart.intertwined.expect │ │ │ │ ├── integer_literal_inside_cast.dart.parser.expect │ │ │ │ ├── integer_literal_inside_cast.dart.scanner.expect │ │ │ │ ├── integer_literal_inside_if_case.dart │ │ │ │ ├── integer_literal_inside_if_case.dart.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.intertwined.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.parser.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.scanner.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart │ │ │ │ ├── integer_literal_inside_null_assert.dart.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.parser.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.scanner.expect │ │ │ │ ├── integer_literal_inside_null_check.dart │ │ │ │ ├── integer_literal_inside_null_check.dart.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.intertwined.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.parser.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.scanner.expect │ │ │ │ ├── issue50591.dart │ │ │ │ ├── issue50591.dart.expect │ │ │ │ ├── issue50591.dart.intertwined.expect │ │ │ │ ├── issue50591.dart.parser.expect │ │ │ │ ├── issue50591.dart.scanner.expect │ │ │ │ ├── issue50591_example2.dart │ │ │ │ ├── issue50591_example2.dart.expect │ │ │ │ ├── issue50591_example2.dart.intertwined.expect │ │ │ │ ├── issue50591_example2.dart.parser.expect │ │ │ │ ├── issue50591_example2.dart.scanner.expect │ │ │ │ ├── issue51415.dart │ │ │ │ ├── issue51415.dart.expect │ │ │ │ ├── issue51415.dart.intertwined.expect │ │ │ │ ├── issue51415.dart.parser.expect │ │ │ │ ├── issue51415.dart.scanner.expect │ │ │ │ ├── issue_51169.dart │ │ │ │ ├── issue_51169.dart.expect │ │ │ │ ├── issue_51169.dart.intertwined.expect │ │ │ │ ├── issue_51169.dart.parser.expect │ │ │ │ ├── issue_51169.dart.scanner.expect │ │ │ │ ├── issue_51176.dart │ │ │ │ ├── issue_51176.dart.expect │ │ │ │ ├── issue_51176.dart.intertwined.expect │ │ │ │ ├── issue_51176.dart.parser.expect │ │ │ │ ├── issue_51176.dart.scanner.expect │ │ │ │ ├── issue_51230.dart │ │ │ │ ├── issue_51230.dart.expect │ │ │ │ ├── issue_51230.dart.intertwined.expect │ │ │ │ ├── issue_51230.dart.parser.expect │ │ │ │ ├── issue_51230.dart.scanner.expect │ │ │ │ ├── list_insideAssignment_typed_nonEmpty.dart │ │ │ │ ├── list_insideAssignment_typed_nonEmpty.dart.expect │ │ │ │ ├── list_insideAssignment_typed_nonEmpty.dart.intertwined.expect │ │ │ │ ├── list_insideAssignment_typed_nonEmpty.dart.parser.expect │ │ │ │ ├── list_insideAssignment_typed_nonEmpty.dart.scanner.expect │ │ │ │ ├── list_insideAssignment_untyped_empty.dart │ │ │ │ ├── list_insideAssignment_untyped_empty.dart.expect │ │ │ │ ├── list_insideAssignment_untyped_empty.dart.intertwined.expect │ │ │ │ ├── list_insideAssignment_untyped_empty.dart.parser.expect │ │ │ │ ├── list_insideAssignment_untyped_empty.dart.scanner.expect │ │ │ │ ├── list_insideAssignment_untyped_emptyWithWhitespace.dart │ │ │ │ ├── list_insideAssignment_untyped_emptyWithWhitespace.dart.expect │ │ │ │ ├── list_insideAssignment_untyped_emptyWithWhitespace.dart.intertwined.expect │ │ │ │ ├── list_insideAssignment_untyped_emptyWithWhitespace.dart.parser.expect │ │ │ │ ├── list_insideAssignment_untyped_emptyWithWhitespace.dart.scanner.expect │ │ │ │ ├── list_insideAssignment_untyped_nonEmpty.dart │ │ │ │ ├── list_insideAssignment_untyped_nonEmpty.dart.expect │ │ │ │ ├── list_insideAssignment_untyped_nonEmpty.dart.intertwined.expect │ │ │ │ ├── list_insideAssignment_untyped_nonEmpty.dart.parser.expect │ │ │ │ ├── list_insideAssignment_untyped_nonEmpty.dart.scanner.expect │ │ │ │ ├── list_insideDeclaration_typed_nonEmpty.dart │ │ │ │ ├── list_insideDeclaration_typed_nonEmpty.dart.expect │ │ │ │ ├── list_insideDeclaration_typed_nonEmpty.dart.intertwined.expect │ │ │ │ ├── list_insideDeclaration_typed_nonEmpty.dart.parser.expect │ │ │ │ ├── list_insideDeclaration_typed_nonEmpty.dart.scanner.expect │ │ │ │ ├── list_insideDeclaration_untyped_empty.dart │ │ │ │ ├── list_insideDeclaration_untyped_empty.dart.expect │ │ │ │ ├── list_insideDeclaration_untyped_empty.dart.intertwined.expect │ │ │ │ ├── list_insideDeclaration_untyped_empty.dart.parser.expect │ │ │ │ ├── list_insideDeclaration_untyped_empty.dart.scanner.expect │ │ │ │ ├── list_insideDeclaration_untyped_emptyWithWhitespace.dart │ │ │ │ ├── list_insideDeclaration_untyped_emptyWithWhitespace.dart.expect │ │ │ │ ├── list_insideDeclaration_untyped_emptyWithWhitespace.dart.intertwined.expect │ │ │ │ ├── list_insideDeclaration_untyped_emptyWithWhitespace.dart.parser.expect │ │ │ │ ├── list_insideDeclaration_untyped_emptyWithWhitespace.dart.scanner.expect │ │ │ │ ├── list_insideDeclaration_untyped_nonEmpty.dart │ │ │ │ ├── list_insideDeclaration_untyped_nonEmpty.dart.expect │ │ │ │ ├── list_insideDeclaration_untyped_nonEmpty.dart.intertwined.expect │ │ │ │ ├── list_insideDeclaration_untyped_nonEmpty.dart.parser.expect │ │ │ │ ├── list_insideDeclaration_untyped_nonEmpty.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_case.dart │ │ │ │ ├── list_pattern_inside_case.dart.expect │ │ │ │ ├── list_pattern_inside_case.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_case.dart.parser.expect │ │ │ │ ├── list_pattern_inside_case.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart │ │ │ │ ├── list_pattern_inside_case_empty.dart.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.parser.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.parser.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.parser.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_cast.dart │ │ │ │ ├── list_pattern_inside_cast.dart.expect │ │ │ │ ├── list_pattern_inside_cast.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_cast.dart.parser.expect │ │ │ │ ├── list_pattern_inside_cast.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart │ │ │ │ ├── list_pattern_inside_null_assert.dart.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.parser.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.scanner.expect │ │ │ │ ├── list_pattern_inside_null_check.dart │ │ │ │ ├── list_pattern_inside_null_check.dart.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.intertwined.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.parser.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.scanner.expect │ │ │ │ ├── list_recovery_bogusTokensAfterListElement.dart │ │ │ │ ├── list_recovery_bogusTokensAfterListElement.dart.expect │ │ │ │ ├── list_recovery_bogusTokensAfterListElement.dart.intertwined.expect │ │ │ │ ├── list_recovery_bogusTokensAfterListElement.dart.parser.expect │ │ │ │ ├── list_recovery_bogusTokensAfterListElement.dart.scanner.expect │ │ │ │ ├── list_recovery_missingClosingBracket.dart │ │ │ │ ├── list_recovery_missingClosingBracket.dart.expect │ │ │ │ ├── list_recovery_missingClosingBracket.dart.intertwined.expect │ │ │ │ ├── list_recovery_missingClosingBracket.dart.parser.expect │ │ │ │ ├── list_recovery_missingClosingBracket.dart.scanner.expect │ │ │ │ ├── list_recovery_missingComma.dart │ │ │ │ ├── list_recovery_missingComma.dart.expect │ │ │ │ ├── list_recovery_missingComma.dart.intertwined.expect │ │ │ │ ├── list_recovery_missingComma.dart.parser.expect │ │ │ │ ├── list_recovery_missingComma.dart.scanner.expect │ │ │ │ ├── logical_and_inside_if_case.dart │ │ │ │ ├── logical_and_inside_if_case.dart.expect │ │ │ │ ├── logical_and_inside_if_case.dart.intertwined.expect │ │ │ │ ├── logical_and_inside_if_case.dart.parser.expect │ │ │ │ ├── logical_and_inside_if_case.dart.scanner.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.intertwined.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.parser.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.scanner.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.intertwined.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.parser.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.scanner.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.intertwined.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.parser.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.scanner.expect │ │ │ │ ├── logical_or_inside_if_case.dart │ │ │ │ ├── logical_or_inside_if_case.dart.expect │ │ │ │ ├── logical_or_inside_if_case.dart.intertwined.expect │ │ │ │ ├── logical_or_inside_if_case.dart.parser.expect │ │ │ │ ├── logical_or_inside_if_case.dart.scanner.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.intertwined.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.parser.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.scanner.expect │ │ │ │ ├── map_insideAssignment_typed_nonEmpty.dart │ │ │ │ ├── map_insideAssignment_typed_nonEmpty.dart.expect │ │ │ │ ├── map_insideAssignment_typed_nonEmpty.dart.intertwined.expect │ │ │ │ ├── map_insideAssignment_typed_nonEmpty.dart.parser.expect │ │ │ │ ├── map_insideAssignment_typed_nonEmpty.dart.scanner.expect │ │ │ │ ├── map_insideAssignment_untyped_empty.dart │ │ │ │ ├── map_insideAssignment_untyped_empty.dart.expect │ │ │ │ ├── map_insideAssignment_untyped_empty.dart.intertwined.expect │ │ │ │ ├── map_insideAssignment_untyped_empty.dart.parser.expect │ │ │ │ ├── map_insideAssignment_untyped_empty.dart.scanner.expect │ │ │ │ ├── map_insideAssignment_untyped_empty_beginningOfStatement.dart │ │ │ │ ├── map_insideAssignment_untyped_empty_beginningOfStatement.dart.expect │ │ │ │ ├── map_insideAssignment_untyped_empty_beginningOfStatement.dart.intertwined.expect │ │ │ │ ├── map_insideAssignment_untyped_empty_beginningOfStatement.dart.parser.expect │ │ │ │ ├── map_insideAssignment_untyped_empty_beginningOfStatement.dart.scanner.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty.dart │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty.dart.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty.dart.intertwined.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty.dart.parser.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty.dart.scanner.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty_beginningOfStatement.dart │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty_beginningOfStatement.dart.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty_beginningOfStatement.dart.intertwined.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty_beginningOfStatement.dart.parser.expect │ │ │ │ ├── map_insideAssignment_untyped_nonEmpty_beginningOfStatement.dart.scanner.expect │ │ │ │ ├── map_insideDeclaration_typed_nonEmpty.dart │ │ │ │ ├── map_insideDeclaration_typed_nonEmpty.dart.expect │ │ │ │ ├── map_insideDeclaration_typed_nonEmpty.dart.intertwined.expect │ │ │ │ ├── map_insideDeclaration_typed_nonEmpty.dart.parser.expect │ │ │ │ ├── map_insideDeclaration_typed_nonEmpty.dart.scanner.expect │ │ │ │ ├── map_insideDeclaration_untyped_empty.dart │ │ │ │ ├── map_insideDeclaration_untyped_empty.dart.expect │ │ │ │ ├── map_insideDeclaration_untyped_empty.dart.intertwined.expect │ │ │ │ ├── map_insideDeclaration_untyped_empty.dart.parser.expect │ │ │ │ ├── map_insideDeclaration_untyped_empty.dart.scanner.expect │ │ │ │ ├── map_insideDeclaration_untyped_nonEmpty.dart │ │ │ │ ├── map_insideDeclaration_untyped_nonEmpty.dart.expect │ │ │ │ ├── map_insideDeclaration_untyped_nonEmpty.dart.intertwined.expect │ │ │ │ ├── map_insideDeclaration_untyped_nonEmpty.dart.parser.expect │ │ │ │ ├── map_insideDeclaration_untyped_nonEmpty.dart.scanner.expect │ │ │ │ ├── map_pattern_inside_case.dart │ │ │ │ ├── map_pattern_inside_case.dart.expect │ │ │ │ ├── map_pattern_inside_case.dart.intertwined.expect │ │ │ │ ├── map_pattern_inside_case.dart.parser.expect │ │ │ │ ├── map_pattern_inside_case.dart.scanner.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart │ │ │ │ ├── map_pattern_inside_case_empty.dart.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.intertwined.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.parser.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.scanner.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.intertwined.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.parser.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.scanner.expect │ │ │ │ ├── map_pattern_inside_cast.dart │ │ │ │ ├── map_pattern_inside_cast.dart.expect │ │ │ │ ├── map_pattern_inside_cast.dart.intertwined.expect │ │ │ │ ├── map_pattern_inside_cast.dart.parser.expect │ │ │ │ ├── map_pattern_inside_cast.dart.scanner.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart │ │ │ │ ├── map_pattern_inside_null_assert.dart.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.parser.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.scanner.expect │ │ │ │ ├── map_pattern_inside_null_check.dart │ │ │ │ ├── map_pattern_inside_null_check.dart.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.intertwined.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.parser.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.scanner.expect │ │ │ │ ├── map_recovery_bogusTokensAfterMapElement.dart │ │ │ │ ├── map_recovery_bogusTokensAfterMapElement.dart.expect │ │ │ │ ├── map_recovery_bogusTokensAfterMapElement.dart.intertwined.expect │ │ │ │ ├── map_recovery_bogusTokensAfterMapElement.dart.parser.expect │ │ │ │ ├── map_recovery_bogusTokensAfterMapElement.dart.scanner.expect │ │ │ │ ├── map_recovery_missingClosingBrace.dart │ │ │ │ ├── map_recovery_missingClosingBrace.dart.expect │ │ │ │ ├── map_recovery_missingClosingBrace.dart.intertwined.expect │ │ │ │ ├── map_recovery_missingClosingBrace.dart.parser.expect │ │ │ │ ├── map_recovery_missingClosingBrace.dart.scanner.expect │ │ │ │ ├── map_recovery_missingComma.dart │ │ │ │ ├── map_recovery_missingComma.dart.expect │ │ │ │ ├── map_recovery_missingComma.dart.intertwined.expect │ │ │ │ ├── map_recovery_missingComma.dart.parser.expect │ │ │ │ ├── map_recovery_missingComma.dart.scanner.expect │ │ │ │ ├── nullAssert_insideCast.dart │ │ │ │ ├── nullAssert_insideCast.dart.expect │ │ │ │ ├── nullAssert_insideCast.dart.intertwined.expect │ │ │ │ ├── nullAssert_insideCast.dart.parser.expect │ │ │ │ ├── nullAssert_insideCast.dart.scanner.expect │ │ │ │ ├── nullAssert_insideNullAssert.dart │ │ │ │ ├── nullAssert_insideNullAssert.dart.expect │ │ │ │ ├── nullAssert_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── nullAssert_insideNullAssert.dart.parser.expect │ │ │ │ ├── nullAssert_insideNullAssert.dart.scanner.expect │ │ │ │ ├── nullAssert_insideNullCheck.dart │ │ │ │ ├── nullAssert_insideNullCheck.dart.expect │ │ │ │ ├── nullAssert_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── nullAssert_insideNullCheck.dart.parser.expect │ │ │ │ ├── nullAssert_insideNullCheck.dart.scanner.expect │ │ │ │ ├── nullCheck_insideCast.dart │ │ │ │ ├── nullCheck_insideCast.dart.expect │ │ │ │ ├── nullCheck_insideCast.dart.intertwined.expect │ │ │ │ ├── nullCheck_insideCast.dart.parser.expect │ │ │ │ ├── nullCheck_insideCast.dart.scanner.expect │ │ │ │ ├── nullCheck_insideNullAssert.dart │ │ │ │ ├── nullCheck_insideNullAssert.dart.expect │ │ │ │ ├── nullCheck_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── nullCheck_insideNullAssert.dart.parser.expect │ │ │ │ ├── nullCheck_insideNullAssert.dart.scanner.expect │ │ │ │ ├── nullCheck_insideNullCheck.dart │ │ │ │ ├── nullCheck_insideNullCheck.dart.expect │ │ │ │ ├── nullCheck_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── nullCheck_insideNullCheck.dart.parser.expect │ │ │ │ ├── nullCheck_insideNullCheck.dart.scanner.expect │ │ │ │ ├── null_assert_inside_case.dart │ │ │ │ ├── null_assert_inside_case.dart.expect │ │ │ │ ├── null_assert_inside_case.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_case.dart.parser.expect │ │ │ │ ├── null_assert_inside_case.dart.scanner.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.parser.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.scanner.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.parser.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── null_assert_inside_if_case.dart │ │ │ │ ├── null_assert_inside_if_case.dart.expect │ │ │ │ ├── null_assert_inside_if_case.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_if_case.dart.parser.expect │ │ │ │ ├── null_assert_inside_if_case.dart.scanner.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart │ │ │ │ ├── null_assert_inside_list_pattern.dart.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.parser.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.scanner.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.parser.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.scanner.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.parser.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.scanner.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.parser.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.scanner.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.parser.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.scanner.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart │ │ │ │ ├── null_assert_inside_map_pattern.dart.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.parser.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.scanner.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.parser.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.scanner.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.parser.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.parser.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.scanner.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.intertwined.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.parser.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.scanner.expect │ │ │ │ ├── null_check_inside_case.dart │ │ │ │ ├── null_check_inside_case.dart.expect │ │ │ │ ├── null_check_inside_case.dart.intertwined.expect │ │ │ │ ├── null_check_inside_case.dart.parser.expect │ │ │ │ ├── null_check_inside_case.dart.scanner.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart │ │ │ │ ├── null_check_inside_extractor_pattern.dart.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.intertwined.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.parser.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.scanner.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.intertwined.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.parser.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── null_check_inside_if_case.dart │ │ │ │ ├── null_check_inside_if_case.dart.expect │ │ │ │ ├── null_check_inside_if_case.dart.intertwined.expect │ │ │ │ ├── null_check_inside_if_case.dart.parser.expect │ │ │ │ ├── null_check_inside_if_case.dart.scanner.expect │ │ │ │ ├── null_check_inside_list_pattern.dart │ │ │ │ ├── null_check_inside_list_pattern.dart.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.intertwined.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.parser.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.scanner.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.intertwined.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.parser.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.scanner.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.intertwined.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.parser.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.scanner.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.intertwined.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.parser.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.scanner.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.intertwined.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.parser.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.scanner.expect │ │ │ │ ├── null_check_inside_map_pattern.dart │ │ │ │ ├── null_check_inside_map_pattern.dart.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.intertwined.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.parser.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.scanner.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.intertwined.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.parser.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.scanner.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.intertwined.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.parser.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart │ │ │ │ ├── null_check_inside_record_pattern_named.dart.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.intertwined.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.parser.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.scanner.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.intertwined.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.parser.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.scanner.expect │ │ │ │ ├── null_literal_inside_case.dart │ │ │ │ ├── null_literal_inside_case.dart.expect │ │ │ │ ├── null_literal_inside_case.dart.intertwined.expect │ │ │ │ ├── null_literal_inside_case.dart.parser.expect │ │ │ │ ├── null_literal_inside_case.dart.scanner.expect │ │ │ │ ├── null_literal_inside_cast.dart │ │ │ │ ├── null_literal_inside_cast.dart.expect │ │ │ │ ├── null_literal_inside_cast.dart.intertwined.expect │ │ │ │ ├── null_literal_inside_cast.dart.parser.expect │ │ │ │ ├── null_literal_inside_cast.dart.scanner.expect │ │ │ │ ├── null_literal_inside_if_case.dart │ │ │ │ ├── null_literal_inside_if_case.dart.expect │ │ │ │ ├── null_literal_inside_if_case.dart.intertwined.expect │ │ │ │ ├── null_literal_inside_if_case.dart.parser.expect │ │ │ │ ├── null_literal_inside_if_case.dart.scanner.expect │ │ │ │ ├── null_literal_inside_null_assert.dart │ │ │ │ ├── null_literal_inside_null_assert.dart.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.parser.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.scanner.expect │ │ │ │ ├── null_literal_inside_null_check.dart │ │ │ │ ├── null_literal_inside_null_check.dart.expect │ │ │ │ ├── null_literal_inside_null_check.dart.intertwined.expect │ │ │ │ ├── null_literal_inside_null_check.dart.parser.expect │ │ │ │ ├── null_literal_inside_null_check.dart.scanner.expect │ │ │ │ ├── object_dynamic.dart │ │ │ │ ├── object_dynamic.dart.expect │ │ │ │ ├── object_dynamic.dart.intertwined.expect │ │ │ │ ├── object_dynamic.dart.parser.expect │ │ │ │ ├── object_dynamic.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_async.dart │ │ │ │ ├── object_otherIdentifier_async.dart.expect │ │ │ │ ├── object_otherIdentifier_async.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_async.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_async.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_await.dart │ │ │ │ ├── object_otherIdentifier_await.dart.expect │ │ │ │ ├── object_otherIdentifier_await.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_await.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_await.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_hide.dart │ │ │ │ ├── object_otherIdentifier_hide.dart.expect │ │ │ │ ├── object_otherIdentifier_hide.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_hide.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_hide.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_of.dart │ │ │ │ ├── object_otherIdentifier_of.dart.expect │ │ │ │ ├── object_otherIdentifier_of.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_of.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_of.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_on.dart │ │ │ │ ├── object_otherIdentifier_on.dart.expect │ │ │ │ ├── object_otherIdentifier_on.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_on.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_on.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_show.dart │ │ │ │ ├── object_otherIdentifier_show.dart.expect │ │ │ │ ├── object_otherIdentifier_show.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_show.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_show.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_sync.dart │ │ │ │ ├── object_otherIdentifier_sync.dart.expect │ │ │ │ ├── object_otherIdentifier_sync.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_sync.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_sync.dart.scanner.expect │ │ │ │ ├── object_otherIdentifier_yield.dart │ │ │ │ ├── object_otherIdentifier_yield.dart.expect │ │ │ │ ├── object_otherIdentifier_yield.dart.intertwined.expect │ │ │ │ ├── object_otherIdentifier_yield.dart.parser.expect │ │ │ │ ├── object_otherIdentifier_yield.dart.scanner.expect │ │ │ │ ├── object_prefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart │ │ │ │ ├── object_prefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.expect │ │ │ │ ├── object_prefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.intertwined.expect │ │ │ │ ├── object_prefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.parser.expect │ │ │ │ ├── object_prefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.scanner.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideAssignment.dart │ │ │ │ ├── object_prefixed_withTypeArgs_insideAssignment.dart.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideAssignment.dart.intertwined.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideAssignment.dart.parser.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideAssignment.dart.scanner.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideDeclaration.dart │ │ │ │ ├── object_prefixed_withTypeArgs_insideDeclaration.dart.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideDeclaration.dart.intertwined.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideDeclaration.dart.parser.expect │ │ │ │ ├── object_prefixed_withTypeArgs_insideDeclaration.dart.scanner.expect │ │ │ │ ├── object_recovery_bogusTokensAfterPatternField.dart │ │ │ │ ├── object_recovery_bogusTokensAfterPatternField.dart.expect │ │ │ │ ├── object_recovery_bogusTokensAfterPatternField.dart.intertwined.expect │ │ │ │ ├── object_recovery_bogusTokensAfterPatternField.dart.parser.expect │ │ │ │ ├── object_recovery_bogusTokensAfterPatternField.dart.scanner.expect │ │ │ │ ├── object_recovery_missingClosingParen.dart │ │ │ │ ├── object_recovery_missingClosingParen.dart.expect │ │ │ │ ├── object_recovery_missingClosingParen.dart.intertwined.expect │ │ │ │ ├── object_recovery_missingClosingParen.dart.parser.expect │ │ │ │ ├── object_recovery_missingClosingParen.dart.scanner.expect │ │ │ │ ├── object_recovery_missingComma.dart │ │ │ │ ├── object_recovery_missingComma.dart.expect │ │ │ │ ├── object_recovery_missingComma.dart.intertwined.expect │ │ │ │ ├── object_recovery_missingComma.dart.parser.expect │ │ │ │ ├── object_recovery_missingComma.dart.scanner.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withTypeArgs_insideDeclaration.dart │ │ │ │ ├── object_unprefixedNamedUnderscore_withTypeArgs_insideDeclaration.dart.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withTypeArgs_insideDeclaration.dart.intertwined.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withTypeArgs_insideDeclaration.dart.parser.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withTypeArgs_insideDeclaration.dart.scanner.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart │ │ │ │ ├── object_unprefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.intertwined.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.parser.expect │ │ │ │ ├── object_unprefixedNamedUnderscore_withoutTypeArgs_insideDeclaration.dart.scanner.expect │ │ │ │ ├── object_unprefixed_withTypeArgs_insideDeclaration.dart │ │ │ │ ├── object_unprefixed_withTypeArgs_insideDeclaration.dart.expect │ │ │ │ ├── object_unprefixed_withTypeArgs_insideDeclaration.dart.intertwined.expect │ │ │ │ ├── object_unprefixed_withTypeArgs_insideDeclaration.dart.parser.expect │ │ │ │ ├── object_unprefixed_withTypeArgs_insideDeclaration.dart.scanner.expect │ │ │ │ ├── parenthesized_insideAssignment.dart │ │ │ │ ├── parenthesized_insideAssignment.dart.expect │ │ │ │ ├── parenthesized_insideAssignment.dart.intertwined.expect │ │ │ │ ├── parenthesized_insideAssignment.dart.parser.expect │ │ │ │ ├── parenthesized_insideAssignment.dart.scanner.expect │ │ │ │ ├── parenthesized_insideCase.dart │ │ │ │ ├── parenthesized_insideCase.dart.expect │ │ │ │ ├── parenthesized_insideCase.dart.intertwined.expect │ │ │ │ ├── parenthesized_insideCase.dart.parser.expect │ │ │ │ ├── parenthesized_insideCase.dart.scanner.expect │ │ │ │ ├── parenthesized_insideDeclaration.dart │ │ │ │ ├── parenthesized_insideDeclaration.dart.expect │ │ │ │ ├── parenthesized_insideDeclaration.dart.intertwined.expect │ │ │ │ ├── parenthesized_insideDeclaration.dart.parser.expect │ │ │ │ ├── parenthesized_insideDeclaration.dart.scanner.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.intertwined.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.parser.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.scanner.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.parser.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.scanner.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.intertwined.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.parser.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsConst.dart │ │ │ │ ├── patternVariableDeclarationStatement_disallowsConst.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsConst.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsConst.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsConst.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.scanner.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.parser.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.scanner.expect │ │ │ │ ├── patternVariableDeclaration_inClass.dart │ │ │ │ ├── patternVariableDeclaration_inClass.dart.expect │ │ │ │ ├── patternVariableDeclaration_inClass.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclaration_inClass.dart.parser.expect │ │ │ │ ├── patternVariableDeclaration_inClass.dart.scanner.expect │ │ │ │ ├── patternVariableDeclaration_topLevel.dart │ │ │ │ ├── patternVariableDeclaration_topLevel.dart.expect │ │ │ │ ├── patternVariableDeclaration_topLevel.dart.intertwined.expect │ │ │ │ ├── patternVariableDeclaration_topLevel.dart.parser.expect │ │ │ │ ├── patternVariableDeclaration_topLevel.dart.scanner.expect │ │ │ │ ├── pattern_inForIn_element.dart │ │ │ │ ├── pattern_inForIn_element.dart.expect │ │ │ │ ├── pattern_inForIn_element.dart.intertwined.expect │ │ │ │ ├── pattern_inForIn_element.dart.parser.expect │ │ │ │ ├── pattern_inForIn_element.dart.scanner.expect │ │ │ │ ├── pattern_inForIn_element_withMetadata.dart │ │ │ │ ├── pattern_inForIn_element_withMetadata.dart.expect │ │ │ │ ├── pattern_inForIn_element_withMetadata.dart.intertwined.expect │ │ │ │ ├── pattern_inForIn_element_withMetadata.dart.parser.expect │ │ │ │ ├── pattern_inForIn_element_withMetadata.dart.scanner.expect │ │ │ │ ├── pattern_inForIn_statement.dart │ │ │ │ ├── pattern_inForIn_statement.dart.expect │ │ │ │ ├── pattern_inForIn_statement.dart.intertwined.expect │ │ │ │ ├── pattern_inForIn_statement.dart.parser.expect │ │ │ │ ├── pattern_inForIn_statement.dart.scanner.expect │ │ │ │ ├── pattern_inForIn_statement_withMetadata.dart │ │ │ │ ├── pattern_inForIn_statement_withMetadata.dart.expect │ │ │ │ ├── pattern_inForIn_statement_withMetadata.dart.intertwined.expect │ │ │ │ ├── pattern_inForIn_statement_withMetadata.dart.parser.expect │ │ │ │ ├── pattern_inForIn_statement_withMetadata.dart.scanner.expect │ │ │ │ ├── pattern_inForInitializer_element.dart │ │ │ │ ├── pattern_inForInitializer_element.dart.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.intertwined.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.parser.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.scanner.expect │ │ │ │ ├── pattern_inForInitializer_statement.dart │ │ │ │ ├── pattern_inForInitializer_statement.dart.expect │ │ │ │ ├── pattern_inForInitializer_statement.dart.intertwined.expect │ │ │ │ ├── pattern_inForInitializer_statement.dart.parser.expect │ │ │ │ ├── pattern_inForInitializer_statement.dart.scanner.expect │ │ │ │ ├── prefixedIdentifier_when_not.dart │ │ │ │ ├── prefixedIdentifier_when_not.dart.expect │ │ │ │ ├── prefixedIdentifier_when_not.dart.intertwined.expect │ │ │ │ ├── prefixedIdentifier_when_not.dart.parser.expect │ │ │ │ ├── prefixedIdentifier_when_not.dart.scanner.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.intertwined.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.parser.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.scanner.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.intertwined.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.parser.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.scanner.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.parser.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.scanner.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.intertwined.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.parser.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.scanner.expect │ │ │ │ ├── record_insideAssignment_empty.dart │ │ │ │ ├── record_insideAssignment_empty.dart.expect │ │ │ │ ├── record_insideAssignment_empty.dart.intertwined.expect │ │ │ │ ├── record_insideAssignment_empty.dart.parser.expect │ │ │ │ ├── record_insideAssignment_empty.dart.scanner.expect │ │ │ │ ├── record_insideAssignment_oneField.dart │ │ │ │ ├── record_insideAssignment_oneField.dart.expect │ │ │ │ ├── record_insideAssignment_oneField.dart.intertwined.expect │ │ │ │ ├── record_insideAssignment_oneField.dart.parser.expect │ │ │ │ ├── record_insideAssignment_oneField.dart.scanner.expect │ │ │ │ ├── record_insideAssignment_twoFields.dart │ │ │ │ ├── record_insideAssignment_twoFields.dart.expect │ │ │ │ ├── record_insideAssignment_twoFields.dart.intertwined.expect │ │ │ │ ├── record_insideAssignment_twoFields.dart.parser.expect │ │ │ │ ├── record_insideAssignment_twoFields.dart.scanner.expect │ │ │ │ ├── record_insideDeclaration_empty.dart │ │ │ │ ├── record_insideDeclaration_empty.dart.expect │ │ │ │ ├── record_insideDeclaration_empty.dart.intertwined.expect │ │ │ │ ├── record_insideDeclaration_empty.dart.parser.expect │ │ │ │ ├── record_insideDeclaration_empty.dart.scanner.expect │ │ │ │ ├── record_insideDeclaration_oneField.dart │ │ │ │ ├── record_insideDeclaration_oneField.dart.expect │ │ │ │ ├── record_insideDeclaration_oneField.dart.intertwined.expect │ │ │ │ ├── record_insideDeclaration_oneField.dart.parser.expect │ │ │ │ ├── record_insideDeclaration_oneField.dart.scanner.expect │ │ │ │ ├── record_insideDeclaration_twoFields.dart │ │ │ │ ├── record_insideDeclaration_twoFields.dart.expect │ │ │ │ ├── record_insideDeclaration_twoFields.dart.intertwined.expect │ │ │ │ ├── record_insideDeclaration_twoFields.dart.parser.expect │ │ │ │ ├── record_insideDeclaration_twoFields.dart.scanner.expect │ │ │ │ ├── record_pattern_inside_case.dart │ │ │ │ ├── record_pattern_inside_case.dart.expect │ │ │ │ ├── record_pattern_inside_case.dart.intertwined.expect │ │ │ │ ├── record_pattern_inside_case.dart.parser.expect │ │ │ │ ├── record_pattern_inside_case.dart.scanner.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart │ │ │ │ ├── record_pattern_inside_case_empty.dart.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.intertwined.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.parser.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.scanner.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart │ │ │ │ ├── record_pattern_inside_case_singleton.dart.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.intertwined.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.parser.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.scanner.expect │ │ │ │ ├── record_pattern_inside_cast.dart │ │ │ │ ├── record_pattern_inside_cast.dart.expect │ │ │ │ ├── record_pattern_inside_cast.dart.intertwined.expect │ │ │ │ ├── record_pattern_inside_cast.dart.parser.expect │ │ │ │ ├── record_pattern_inside_cast.dart.scanner.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart │ │ │ │ ├── record_pattern_inside_null_assert.dart.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.parser.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.scanner.expect │ │ │ │ ├── record_pattern_inside_null_check.dart │ │ │ │ ├── record_pattern_inside_null_check.dart.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.intertwined.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.parser.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.scanner.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_equality.dart │ │ │ │ ├── relational_containingBitwiseOrExpression_equality.dart.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_equality.dart.intertwined.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_equality.dart.parser.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_equality.dart.scanner.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_relational.dart │ │ │ │ ├── relational_containingBitwiseOrExpression_relational.dart.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_relational.dart.intertwined.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_relational.dart.parser.expect │ │ │ │ ├── relational_containingBitwiseOrExpression_relational.dart.scanner.expect │ │ │ │ ├── relational_containingRelationalExpression_equality.dart │ │ │ │ ├── relational_containingRelationalExpression_equality.dart.expect │ │ │ │ ├── relational_containingRelationalExpression_equality.dart.intertwined.expect │ │ │ │ ├── relational_containingRelationalExpression_equality.dart.parser.expect │ │ │ │ ├── relational_containingRelationalExpression_equality.dart.scanner.expect │ │ │ │ ├── relational_containingRelationalExpression_relational.dart │ │ │ │ ├── relational_containingRelationalExpression_relational.dart.expect │ │ │ │ ├── relational_containingRelationalExpression_relational.dart.intertwined.expect │ │ │ │ ├── relational_containingRelationalExpression_relational.dart.parser.expect │ │ │ │ ├── relational_containingRelationalExpression_relational.dart.scanner.expect │ │ │ │ ├── relational_insideNullCheck_equal.dart │ │ │ │ ├── relational_insideNullCheck_equal.dart.expect │ │ │ │ ├── relational_insideNullCheck_equal.dart.intertwined.expect │ │ │ │ ├── relational_insideNullCheck_equal.dart.parser.expect │ │ │ │ ├── relational_insideNullCheck_equal.dart.scanner.expect │ │ │ │ ├── relational_insideNullCheck_greaterThan.dart │ │ │ │ ├── relational_insideNullCheck_greaterThan.dart.expect │ │ │ │ ├── relational_insideNullCheck_greaterThan.dart.intertwined.expect │ │ │ │ ├── relational_insideNullCheck_greaterThan.dart.parser.expect │ │ │ │ ├── relational_insideNullCheck_greaterThan.dart.scanner.expect │ │ │ │ ├── relational_inside_case_equal.dart │ │ │ │ ├── relational_inside_case_equal.dart.expect │ │ │ │ ├── relational_inside_case_equal.dart.intertwined.expect │ │ │ │ ├── relational_inside_case_equal.dart.parser.expect │ │ │ │ ├── relational_inside_case_equal.dart.scanner.expect │ │ │ │ ├── relational_inside_case_greater_than.dart │ │ │ │ ├── relational_inside_case_greater_than.dart.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.intertwined.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.parser.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.scanner.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.intertwined.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.parser.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.scanner.expect │ │ │ │ ├── relational_inside_case_less_than.dart │ │ │ │ ├── relational_inside_case_less_than.dart.expect │ │ │ │ ├── relational_inside_case_less_than.dart.intertwined.expect │ │ │ │ ├── relational_inside_case_less_than.dart.parser.expect │ │ │ │ ├── relational_inside_case_less_than.dart.scanner.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.intertwined.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.parser.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.scanner.expect │ │ │ │ ├── relational_inside_case_not_equal.dart │ │ │ │ ├── relational_inside_case_not_equal.dart.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.intertwined.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.parser.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.scanner.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart │ │ │ │ ├── relational_inside_extractor_pattern.dart.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.intertwined.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.parser.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.scanner.expect │ │ │ │ ├── relational_inside_if_case.dart │ │ │ │ ├── relational_inside_if_case.dart.expect │ │ │ │ ├── relational_inside_if_case.dart.intertwined.expect │ │ │ │ ├── relational_inside_if_case.dart.parser.expect │ │ │ │ ├── relational_inside_if_case.dart.scanner.expect │ │ │ │ ├── relational_inside_list_pattern.dart │ │ │ │ ├── relational_inside_list_pattern.dart.expect │ │ │ │ ├── relational_inside_list_pattern.dart.intertwined.expect │ │ │ │ ├── relational_inside_list_pattern.dart.parser.expect │ │ │ │ ├── relational_inside_list_pattern.dart.scanner.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart │ │ │ │ ├── relational_inside_logical_and_lhs.dart.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.intertwined.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.parser.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.scanner.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart │ │ │ │ ├── relational_inside_logical_and_rhs.dart.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.intertwined.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.parser.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.scanner.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart │ │ │ │ ├── relational_inside_logical_or_lhs.dart.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.intertwined.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.parser.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.scanner.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart │ │ │ │ ├── relational_inside_logical_or_rhs.dart.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.intertwined.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.parser.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.scanner.expect │ │ │ │ ├── relational_inside_map_pattern.dart │ │ │ │ ├── relational_inside_map_pattern.dart.expect │ │ │ │ ├── relational_inside_map_pattern.dart.intertwined.expect │ │ │ │ ├── relational_inside_map_pattern.dart.parser.expect │ │ │ │ ├── relational_inside_map_pattern.dart.scanner.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.intertwined.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.parser.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.scanner.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart │ │ │ │ ├── relational_inside_record_pattern_named.dart.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.intertwined.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.parser.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.scanner.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.intertwined.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.parser.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.scanner.expect │ │ │ │ ├── rest_subpatternStartingTokens.dart │ │ │ │ ├── rest_subpatternStartingTokens.dart.expect │ │ │ │ ├── rest_subpatternStartingTokens.dart.intertwined.expect │ │ │ │ ├── rest_subpatternStartingTokens.dart.parser.expect │ │ │ │ ├── rest_subpatternStartingTokens.dart.scanner.expect │ │ │ │ ├── rest_withSubpattern_insideList.dart │ │ │ │ ├── rest_withSubpattern_insideList.dart.expect │ │ │ │ ├── rest_withSubpattern_insideList.dart.intertwined.expect │ │ │ │ ├── rest_withSubpattern_insideList.dart.parser.expect │ │ │ │ ├── rest_withSubpattern_insideList.dart.scanner.expect │ │ │ │ ├── rest_withSubpattern_insideMap.dart │ │ │ │ ├── rest_withSubpattern_insideMap.dart.expect │ │ │ │ ├── rest_withSubpattern_insideMap.dart.intertwined.expect │ │ │ │ ├── rest_withSubpattern_insideMap.dart.parser.expect │ │ │ │ ├── rest_withSubpattern_insideMap.dart.scanner.expect │ │ │ │ ├── rest_withoutSubpattern_insideList.dart │ │ │ │ ├── rest_withoutSubpattern_insideList.dart.expect │ │ │ │ ├── rest_withoutSubpattern_insideList.dart.intertwined.expect │ │ │ │ ├── rest_withoutSubpattern_insideList.dart.parser.expect │ │ │ │ ├── rest_withoutSubpattern_insideList.dart.scanner.expect │ │ │ │ ├── rest_withoutSubpattern_insideMap.dart │ │ │ │ ├── rest_withoutSubpattern_insideMap.dart.expect │ │ │ │ ├── rest_withoutSubpattern_insideMap.dart.intertwined.expect │ │ │ │ ├── rest_withoutSubpattern_insideMap.dart.parser.expect │ │ │ │ ├── rest_withoutSubpattern_insideMap.dart.scanner.expect │ │ │ │ ├── skipOuterPattern_eof.dart │ │ │ │ ├── skipOuterPattern_eof.dart.expect │ │ │ │ ├── skipOuterPattern_eof.dart.intertwined.expect │ │ │ │ ├── skipOuterPattern_eof.dart.parser.expect │ │ │ │ ├── skipOuterPattern_eof.dart.scanner.expect │ │ │ │ ├── string_literal_inside_case.dart │ │ │ │ ├── string_literal_inside_case.dart.expect │ │ │ │ ├── string_literal_inside_case.dart.intertwined.expect │ │ │ │ ├── string_literal_inside_case.dart.parser.expect │ │ │ │ ├── string_literal_inside_case.dart.scanner.expect │ │ │ │ ├── string_literal_inside_cast.dart │ │ │ │ ├── string_literal_inside_cast.dart.expect │ │ │ │ ├── string_literal_inside_cast.dart.intertwined.expect │ │ │ │ ├── string_literal_inside_cast.dart.parser.expect │ │ │ │ ├── string_literal_inside_cast.dart.scanner.expect │ │ │ │ ├── string_literal_inside_if_case.dart │ │ │ │ ├── string_literal_inside_if_case.dart.expect │ │ │ │ ├── string_literal_inside_if_case.dart.intertwined.expect │ │ │ │ ├── string_literal_inside_if_case.dart.parser.expect │ │ │ │ ├── string_literal_inside_if_case.dart.scanner.expect │ │ │ │ ├── string_literal_inside_null_assert.dart │ │ │ │ ├── string_literal_inside_null_assert.dart.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.parser.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.scanner.expect │ │ │ │ ├── string_literal_inside_null_check.dart │ │ │ │ ├── string_literal_inside_null_check.dart.expect │ │ │ │ ├── string_literal_inside_null_check.dart.intertwined.expect │ │ │ │ ├── string_literal_inside_null_check.dart.parser.expect │ │ │ │ ├── string_literal_inside_null_check.dart.scanner.expect │ │ │ │ ├── switchExpression_empty.dart │ │ │ │ ├── switchExpression_empty.dart.expect │ │ │ │ ├── switchExpression_empty.dart.intertwined.expect │ │ │ │ ├── switchExpression_empty.dart.parser.expect │ │ │ │ ├── switchExpression_empty.dart.scanner.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart │ │ │ │ ├── switchExpression_onePattern_guarded.dart.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.intertwined.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.parser.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.scanner.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.intertwined.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.parser.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.scanner.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.intertwined.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.parser.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase.dart │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase.dart.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_laterComma.dart │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_laterComma.dart.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_laterComma.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_laterComma.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_laterComma.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_nestedComma.dart │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_nestedComma.dart.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_nestedComma.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_nestedComma.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_bogusTokensAfterCase_nestedComma.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_caseKeyword.dart │ │ │ │ ├── switchExpression_recovery_caseKeyword.dart.expect │ │ │ │ ├── switchExpression_recovery_caseKeyword.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_caseKeyword.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_caseKeyword.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_colonInsteadOfArrow.dart │ │ │ │ ├── switchExpression_recovery_colonInsteadOfArrow.dart.expect │ │ │ │ ├── switchExpression_recovery_colonInsteadOfArrow.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_colonInsteadOfArrow.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_colonInsteadOfArrow.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_defaultKeyword.dart │ │ │ │ ├── switchExpression_recovery_defaultKeyword.dart.expect │ │ │ │ ├── switchExpression_recovery_defaultKeyword.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_defaultKeyword.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_defaultKeyword.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard.dart │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard.dart.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard_semicolon.dart │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard_semicolon.dart.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard_semicolon.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard_semicolon.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_illegalFunctionExpressionInGuard_semicolon.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_missingComma.dart │ │ │ │ ├── switchExpression_recovery_missingComma.dart.expect │ │ │ │ ├── switchExpression_recovery_missingComma.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_missingComma.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_missingComma.dart.scanner.expect │ │ │ │ ├── switchExpression_recovery_semicolonInsteadOfComma.dart │ │ │ │ ├── switchExpression_recovery_semicolonInsteadOfComma.dart.expect │ │ │ │ ├── switchExpression_recovery_semicolonInsteadOfComma.dart.intertwined.expect │ │ │ │ ├── switchExpression_recovery_semicolonInsteadOfComma.dart.parser.expect │ │ │ │ ├── switchExpression_recovery_semicolonInsteadOfComma.dart.scanner.expect │ │ │ │ ├── switchExpression_twoPatterns.dart │ │ │ │ ├── switchExpression_twoPatterns.dart.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.intertwined.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.parser.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.scanner.expect │ │ │ │ ├── typeQuestionBeforeWhen_conditional.dart │ │ │ │ ├── typeQuestionBeforeWhen_conditional.dart.expect │ │ │ │ ├── typeQuestionBeforeWhen_conditional.dart.intertwined.expect │ │ │ │ ├── typeQuestionBeforeWhen_conditional.dart.parser.expect │ │ │ │ ├── typeQuestionBeforeWhen_conditional.dart.scanner.expect │ │ │ │ ├── typeQuestionBeforeWhen_guard.dart │ │ │ │ ├── typeQuestionBeforeWhen_guard.dart.expect │ │ │ │ ├── typeQuestionBeforeWhen_guard.dart.intertwined.expect │ │ │ │ ├── typeQuestionBeforeWhen_guard.dart.parser.expect │ │ │ │ ├── typeQuestionBeforeWhen_guard.dart.scanner.expect │ │ │ │ ├── typed_final_variable_inside_case.dart │ │ │ │ ├── typed_final_variable_inside_case.dart.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.intertwined.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.parser.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.scanner.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart │ │ │ │ ├── typed_final_variable_inside_cast.dart.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.intertwined.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.parser.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.scanner.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart │ │ │ │ ├── typed_final_variable_inside_if_case.dart.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.intertwined.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.parser.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.scanner.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.parser.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.scanner.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart │ │ │ │ ├── typed_final_variable_inside_null_check.dart.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.intertwined.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.parser.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.scanner.expect │ │ │ │ ├── typed_variable_inside_case.dart │ │ │ │ ├── typed_variable_inside_case.dart.expect │ │ │ │ ├── typed_variable_inside_case.dart.intertwined.expect │ │ │ │ ├── typed_variable_inside_case.dart.parser.expect │ │ │ │ ├── typed_variable_inside_case.dart.scanner.expect │ │ │ │ ├── typed_variable_inside_cast.dart │ │ │ │ ├── typed_variable_inside_cast.dart.expect │ │ │ │ ├── typed_variable_inside_cast.dart.intertwined.expect │ │ │ │ ├── typed_variable_inside_cast.dart.parser.expect │ │ │ │ ├── typed_variable_inside_cast.dart.scanner.expect │ │ │ │ ├── typed_variable_inside_if_case.dart │ │ │ │ ├── typed_variable_inside_if_case.dart.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.intertwined.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.parser.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.scanner.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart │ │ │ │ ├── typed_variable_inside_null_assert.dart.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.parser.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.scanner.expect │ │ │ │ ├── typed_variable_inside_null_check.dart │ │ │ │ ├── typed_variable_inside_null_check.dart.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.intertwined.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.parser.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.scanner.expect │ │ │ │ ├── typed_variable_named_as_inside_extractor_pattern.dart.scanner.expect │ │ │ │ ├── typed_variable_named_as_inside_extractor_pattern_implicitly_named.dart.scanner.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext.dart │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext.dart.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext.dart.intertwined.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext.dart.parser.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext.dart.scanner.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext_wildcard.dart │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext_wildcard.dart.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext_wildcard.dart.intertwined.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext_wildcard.dart.parser.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_declarationContext_wildcard.dart.scanner.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext.dart │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext.dart.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext.dart.intertwined.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext.dart.parser.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext.dart.scanner.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext_wildcard.dart │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext_wildcard.dart.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext_wildcard.dart.intertwined.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext_wildcard.dart.parser.expect │ │ │ │ ├── varKeywordInTypedVariablePattern_matchingContext_wildcard.dart.scanner.expect │ │ │ │ ├── var_variable_inside_case.dart │ │ │ │ ├── var_variable_inside_case.dart.expect │ │ │ │ ├── var_variable_inside_case.dart.intertwined.expect │ │ │ │ ├── var_variable_inside_case.dart.parser.expect │ │ │ │ ├── var_variable_inside_case.dart.scanner.expect │ │ │ │ ├── var_variable_inside_cast.dart │ │ │ │ ├── var_variable_inside_cast.dart.expect │ │ │ │ ├── var_variable_inside_cast.dart.intertwined.expect │ │ │ │ ├── var_variable_inside_cast.dart.parser.expect │ │ │ │ ├── var_variable_inside_cast.dart.scanner.expect │ │ │ │ ├── var_variable_inside_if_case.dart │ │ │ │ ├── var_variable_inside_if_case.dart.expect │ │ │ │ ├── var_variable_inside_if_case.dart.intertwined.expect │ │ │ │ ├── var_variable_inside_if_case.dart.parser.expect │ │ │ │ ├── var_variable_inside_if_case.dart.scanner.expect │ │ │ │ ├── var_variable_inside_null_assert.dart │ │ │ │ ├── var_variable_inside_null_assert.dart.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.intertwined.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.parser.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.scanner.expect │ │ │ │ ├── var_variable_inside_null_check.dart │ │ │ │ ├── var_variable_inside_null_check.dart.expect │ │ │ │ ├── var_variable_inside_null_check.dart.intertwined.expect │ │ │ │ ├── var_variable_inside_null_check.dart.parser.expect │ │ │ │ ├── var_variable_inside_null_check.dart.scanner.expect │ │ │ │ ├── variable_bare_insideCast.dart │ │ │ │ ├── variable_bare_insideCast.dart.expect │ │ │ │ ├── variable_bare_insideCast.dart.intertwined.expect │ │ │ │ ├── variable_bare_insideCast.dart.parser.expect │ │ │ │ ├── variable_bare_insideCast.dart.scanner.expect │ │ │ │ ├── variable_bare_insideNullAssert.dart │ │ │ │ ├── variable_bare_insideNullAssert.dart.expect │ │ │ │ ├── variable_bare_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── variable_bare_insideNullAssert.dart.parser.expect │ │ │ │ ├── variable_bare_insideNullAssert.dart.scanner.expect │ │ │ │ ├── variable_final_inDeclarationContext.dart │ │ │ │ ├── variable_final_inDeclarationContext.dart.expect │ │ │ │ ├── variable_final_inDeclarationContext.dart.intertwined.expect │ │ │ │ ├── variable_final_inDeclarationContext.dart.parser.expect │ │ │ │ ├── variable_final_inDeclarationContext.dart.scanner.expect │ │ │ │ ├── variable_type_record_empty_inDeclarationContext.dart │ │ │ │ ├── variable_type_record_empty_inDeclarationContext.dart.expect │ │ │ │ ├── variable_type_record_empty_inDeclarationContext.dart.intertwined.expect │ │ │ │ ├── variable_type_record_empty_inDeclarationContext.dart.parser.expect │ │ │ │ ├── variable_type_record_empty_inDeclarationContext.dart.scanner.expect │ │ │ │ ├── variable_type_record_empty_inMatchingContext.dart │ │ │ │ ├── variable_type_record_empty_inMatchingContext.dart.expect │ │ │ │ ├── variable_type_record_empty_inMatchingContext.dart.intertwined.expect │ │ │ │ ├── variable_type_record_empty_inMatchingContext.dart.parser.expect │ │ │ │ ├── variable_type_record_empty_inMatchingContext.dart.scanner.expect │ │ │ │ ├── variable_type_record_nonEmpty_inDeclarationContext.dart │ │ │ │ ├── variable_type_record_nonEmpty_inDeclarationContext.dart.expect │ │ │ │ ├── variable_type_record_nonEmpty_inDeclarationContext.dart.intertwined.expect │ │ │ │ ├── variable_type_record_nonEmpty_inDeclarationContext.dart.parser.expect │ │ │ │ ├── variable_type_record_nonEmpty_inDeclarationContext.dart.scanner.expect │ │ │ │ ├── variable_type_record_nonEmpty_inMatchingContext.dart │ │ │ │ ├── variable_type_record_nonEmpty_inMatchingContext.dart.expect │ │ │ │ ├── variable_type_record_nonEmpty_inMatchingContext.dart.intertwined.expect │ │ │ │ ├── variable_type_record_nonEmpty_inMatchingContext.dart.parser.expect │ │ │ │ ├── variable_type_record_nonEmpty_inMatchingContext.dart.scanner.expect │ │ │ │ ├── variable_var_inDeclarationContext.dart │ │ │ │ ├── variable_var_inDeclarationContext.dart.expect │ │ │ │ ├── variable_var_inDeclarationContext.dart.intertwined.expect │ │ │ │ ├── variable_var_inDeclarationContext.dart.parser.expect │ │ │ │ ├── variable_var_inDeclarationContext.dart.scanner.expect │ │ │ │ ├── wildcard_bare_beforeWhen.dart │ │ │ │ ├── wildcard_bare_beforeWhen.dart.expect │ │ │ │ ├── wildcard_bare_beforeWhen.dart.intertwined.expect │ │ │ │ ├── wildcard_bare_beforeWhen.dart.parser.expect │ │ │ │ ├── wildcard_bare_beforeWhen.dart.scanner.expect │ │ │ │ ├── wildcard_bare_insideCase.dart │ │ │ │ ├── wildcard_bare_insideCase.dart.expect │ │ │ │ ├── wildcard_bare_insideCase.dart.intertwined.expect │ │ │ │ ├── wildcard_bare_insideCase.dart.parser.expect │ │ │ │ ├── wildcard_bare_insideCase.dart.scanner.expect │ │ │ │ ├── wildcard_bare_insideCast.dart │ │ │ │ ├── wildcard_bare_insideCast.dart.expect │ │ │ │ ├── wildcard_bare_insideCast.dart.intertwined.expect │ │ │ │ ├── wildcard_bare_insideCast.dart.parser.expect │ │ │ │ ├── wildcard_bare_insideCast.dart.scanner.expect │ │ │ │ ├── wildcard_bare_insideIfCase.dart │ │ │ │ ├── wildcard_bare_insideIfCase.dart.expect │ │ │ │ ├── wildcard_bare_insideIfCase.dart.intertwined.expect │ │ │ │ ├── wildcard_bare_insideIfCase.dart.parser.expect │ │ │ │ ├── wildcard_bare_insideIfCase.dart.scanner.expect │ │ │ │ ├── wildcard_bare_insideNullAssert.dart │ │ │ │ ├── wildcard_bare_insideNullAssert.dart.expect │ │ │ │ ├── wildcard_bare_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── wildcard_bare_insideNullAssert.dart.parser.expect │ │ │ │ ├── wildcard_bare_insideNullAssert.dart.scanner.expect │ │ │ │ ├── wildcard_bare_insideNullCheck.dart │ │ │ │ ├── wildcard_bare_insideNullCheck.dart.expect │ │ │ │ ├── wildcard_bare_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── wildcard_bare_insideNullCheck.dart.parser.expect │ │ │ │ ├── wildcard_bare_insideNullCheck.dart.scanner.expect │ │ │ │ ├── wildcard_final_typed_insideCase.dart │ │ │ │ ├── wildcard_final_typed_insideCase.dart.expect │ │ │ │ ├── wildcard_final_typed_insideCase.dart.intertwined.expect │ │ │ │ ├── wildcard_final_typed_insideCase.dart.parser.expect │ │ │ │ ├── wildcard_final_typed_insideCase.dart.scanner.expect │ │ │ │ ├── wildcard_final_typed_insideCast.dart │ │ │ │ ├── wildcard_final_typed_insideCast.dart.expect │ │ │ │ ├── wildcard_final_typed_insideCast.dart.intertwined.expect │ │ │ │ ├── wildcard_final_typed_insideCast.dart.parser.expect │ │ │ │ ├── wildcard_final_typed_insideCast.dart.scanner.expect │ │ │ │ ├── wildcard_final_typed_insideIfCase.dart │ │ │ │ ├── wildcard_final_typed_insideIfCase.dart.expect │ │ │ │ ├── wildcard_final_typed_insideIfCase.dart.intertwined.expect │ │ │ │ ├── wildcard_final_typed_insideIfCase.dart.parser.expect │ │ │ │ ├── wildcard_final_typed_insideIfCase.dart.scanner.expect │ │ │ │ ├── wildcard_final_typed_insideNullAssert.dart │ │ │ │ ├── wildcard_final_typed_insideNullAssert.dart.expect │ │ │ │ ├── wildcard_final_typed_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── wildcard_final_typed_insideNullAssert.dart.parser.expect │ │ │ │ ├── wildcard_final_typed_insideNullAssert.dart.scanner.expect │ │ │ │ ├── wildcard_final_typed_insideNullCheck.dart │ │ │ │ ├── wildcard_final_typed_insideNullCheck.dart.expect │ │ │ │ ├── wildcard_final_typed_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── wildcard_final_typed_insideNullCheck.dart.parser.expect │ │ │ │ ├── wildcard_final_typed_insideNullCheck.dart.scanner.expect │ │ │ │ ├── wildcard_final_untyped_insideCase.dart │ │ │ │ ├── wildcard_final_untyped_insideCase.dart.expect │ │ │ │ ├── wildcard_final_untyped_insideCase.dart.intertwined.expect │ │ │ │ ├── wildcard_final_untyped_insideCase.dart.parser.expect │ │ │ │ ├── wildcard_final_untyped_insideCase.dart.scanner.expect │ │ │ │ ├── wildcard_final_untyped_insideCast.dart │ │ │ │ ├── wildcard_final_untyped_insideCast.dart.expect │ │ │ │ ├── wildcard_final_untyped_insideCast.dart.intertwined.expect │ │ │ │ ├── wildcard_final_untyped_insideCast.dart.parser.expect │ │ │ │ ├── wildcard_final_untyped_insideCast.dart.scanner.expect │ │ │ │ ├── wildcard_final_untyped_insideIfCase.dart │ │ │ │ ├── wildcard_final_untyped_insideIfCase.dart.expect │ │ │ │ ├── wildcard_final_untyped_insideIfCase.dart.intertwined.expect │ │ │ │ ├── wildcard_final_untyped_insideIfCase.dart.parser.expect │ │ │ │ ├── wildcard_final_untyped_insideIfCase.dart.scanner.expect │ │ │ │ ├── wildcard_final_untyped_insideNullAssert.dart │ │ │ │ ├── wildcard_final_untyped_insideNullAssert.dart.expect │ │ │ │ ├── wildcard_final_untyped_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── wildcard_final_untyped_insideNullAssert.dart.parser.expect │ │ │ │ ├── wildcard_final_untyped_insideNullAssert.dart.scanner.expect │ │ │ │ ├── wildcard_final_untyped_insideNullCheck.dart │ │ │ │ ├── wildcard_final_untyped_insideNullCheck.dart.expect │ │ │ │ ├── wildcard_final_untyped_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── wildcard_final_untyped_insideNullCheck.dart.parser.expect │ │ │ │ ├── wildcard_final_untyped_insideNullCheck.dart.scanner.expect │ │ │ │ ├── wildcard_inPatternAssignment_bareIdentifier.dart │ │ │ │ ├── wildcard_inPatternAssignment_bareIdentifier.dart.expect │ │ │ │ ├── wildcard_inPatternAssignment_bareIdentifier.dart.intertwined.expect │ │ │ │ ├── wildcard_inPatternAssignment_bareIdentifier.dart.parser.expect │ │ │ │ ├── wildcard_inPatternAssignment_bareIdentifier.dart.scanner.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinal.dart │ │ │ │ ├── wildcard_inPatternAssignment_usingFinal.dart.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinal.dart.intertwined.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinal.dart.parser.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinal.dart.scanner.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinalAndType.dart │ │ │ │ ├── wildcard_inPatternAssignment_usingFinalAndType.dart.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinalAndType.dart.intertwined.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinalAndType.dart.parser.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingFinalAndType.dart.scanner.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingType.dart │ │ │ │ ├── wildcard_inPatternAssignment_usingType.dart.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingType.dart.intertwined.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingType.dart.parser.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingType.dart.scanner.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVar.dart │ │ │ │ ├── wildcard_inPatternAssignment_usingVar.dart.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVar.dart.intertwined.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVar.dart.parser.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVar.dart.scanner.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVarAndType.dart │ │ │ │ ├── wildcard_inPatternAssignment_usingVarAndType.dart.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVarAndType.dart.intertwined.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVarAndType.dart.parser.expect │ │ │ │ ├── wildcard_inPatternAssignment_usingVarAndType.dart.scanner.expect │ │ │ │ ├── wildcard_typed_insideCase.dart │ │ │ │ ├── wildcard_typed_insideCase.dart.expect │ │ │ │ ├── wildcard_typed_insideCase.dart.intertwined.expect │ │ │ │ ├── wildcard_typed_insideCase.dart.parser.expect │ │ │ │ ├── wildcard_typed_insideCase.dart.scanner.expect │ │ │ │ ├── wildcard_typed_insideCast.dart │ │ │ │ ├── wildcard_typed_insideCast.dart.expect │ │ │ │ ├── wildcard_typed_insideCast.dart.intertwined.expect │ │ │ │ ├── wildcard_typed_insideCast.dart.parser.expect │ │ │ │ ├── wildcard_typed_insideCast.dart.scanner.expect │ │ │ │ ├── wildcard_typed_insideIfCase.dart │ │ │ │ ├── wildcard_typed_insideIfCase.dart.expect │ │ │ │ ├── wildcard_typed_insideIfCase.dart.intertwined.expect │ │ │ │ ├── wildcard_typed_insideIfCase.dart.parser.expect │ │ │ │ ├── wildcard_typed_insideIfCase.dart.scanner.expect │ │ │ │ ├── wildcard_typed_insideNullAssert.dart │ │ │ │ ├── wildcard_typed_insideNullAssert.dart.expect │ │ │ │ ├── wildcard_typed_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── wildcard_typed_insideNullAssert.dart.parser.expect │ │ │ │ ├── wildcard_typed_insideNullAssert.dart.scanner.expect │ │ │ │ ├── wildcard_typed_insideNullCheck.dart │ │ │ │ ├── wildcard_typed_insideNullCheck.dart.expect │ │ │ │ ├── wildcard_typed_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── wildcard_typed_insideNullCheck.dart.parser.expect │ │ │ │ ├── wildcard_typed_insideNullCheck.dart.scanner.expect │ │ │ │ ├── wildcard_var_insideCase.dart │ │ │ │ ├── wildcard_var_insideCase.dart.expect │ │ │ │ ├── wildcard_var_insideCase.dart.intertwined.expect │ │ │ │ ├── wildcard_var_insideCase.dart.parser.expect │ │ │ │ ├── wildcard_var_insideCase.dart.scanner.expect │ │ │ │ ├── wildcard_var_insideCast.dart │ │ │ │ ├── wildcard_var_insideCast.dart.expect │ │ │ │ ├── wildcard_var_insideCast.dart.intertwined.expect │ │ │ │ ├── wildcard_var_insideCast.dart.parser.expect │ │ │ │ ├── wildcard_var_insideCast.dart.scanner.expect │ │ │ │ ├── wildcard_var_insideIfCase.dart │ │ │ │ ├── wildcard_var_insideIfCase.dart.expect │ │ │ │ ├── wildcard_var_insideIfCase.dart.intertwined.expect │ │ │ │ ├── wildcard_var_insideIfCase.dart.parser.expect │ │ │ │ ├── wildcard_var_insideIfCase.dart.scanner.expect │ │ │ │ ├── wildcard_var_insideNullAssert.dart │ │ │ │ ├── wildcard_var_insideNullAssert.dart.expect │ │ │ │ ├── wildcard_var_insideNullAssert.dart.intertwined.expect │ │ │ │ ├── wildcard_var_insideNullAssert.dart.parser.expect │ │ │ │ ├── wildcard_var_insideNullAssert.dart.scanner.expect │ │ │ │ ├── wildcard_var_insideNullCheck.dart │ │ │ │ ├── wildcard_var_insideNullCheck.dart.expect │ │ │ │ ├── wildcard_var_insideNullCheck.dart.intertwined.expect │ │ │ │ ├── wildcard_var_insideNullCheck.dart.parser.expect │ │ │ │ └── wildcard_var_insideNullCheck.dart.scanner.expect │ │ │ ├── record │ │ │ │ ├── field_formal_parameter_with_explicit_record_type.dart │ │ │ │ ├── field_formal_parameter_with_explicit_record_type.dart.expect │ │ │ │ ├── field_formal_parameter_with_explicit_record_type.dart.intertwined.expect │ │ │ │ ├── field_formal_parameter_with_explicit_record_type.dart.parser.expect │ │ │ │ ├── field_formal_parameter_with_explicit_record_type.dart.scanner.expect │ │ │ │ ├── is_and_as.dart │ │ │ │ ├── is_and_as.dart.expect │ │ │ │ ├── is_and_as.dart.intertwined.expect │ │ │ │ ├── is_and_as.dart.parser.expect │ │ │ │ ├── is_and_as.dart.scanner.expect │ │ │ │ ├── is_record_conditional_expression.dart │ │ │ │ ├── is_record_conditional_expression.dart.expect │ │ │ │ ├── is_record_conditional_expression.dart.intertwined.expect │ │ │ │ ├── is_record_conditional_expression.dart.parser.expect │ │ │ │ ├── is_record_conditional_expression.dart.scanner.expect │ │ │ │ ├── metadata.dart │ │ │ │ ├── metadata.dart.expect │ │ │ │ ├── metadata.dart.intertwined.expect │ │ │ │ ├── metadata.dart.parser.expect │ │ │ │ ├── metadata.dart.scanner.expect │ │ │ │ ├── modifier_before_type_question.dart │ │ │ │ ├── modifier_before_type_question.dart.expect │ │ │ │ ├── modifier_before_type_question.dart.intertwined.expect │ │ │ │ ├── modifier_before_type_question.dart.parser.expect │ │ │ │ ├── modifier_before_type_question.dart.scanner.expect │ │ │ │ ├── nested_generics_with_records.dart │ │ │ │ ├── nested_generics_with_records.dart.expect │ │ │ │ ├── nested_generics_with_records.dart.intertwined.expect │ │ │ │ ├── nested_generics_with_records.dart.parser.expect │ │ │ │ ├── nested_generics_with_records.dart.scanner.expect │ │ │ │ ├── on.dart │ │ │ │ ├── on.dart.expect │ │ │ │ ├── on.dart.intertwined.expect │ │ │ │ ├── on.dart.parser.expect │ │ │ │ ├── on.dart.scanner.expect │ │ │ │ ├── operator_returning_record.dart │ │ │ │ ├── operator_returning_record.dart.expect │ │ │ │ ├── operator_returning_record.dart.intertwined.expect │ │ │ │ ├── operator_returning_record.dart.parser.expect │ │ │ │ ├── operator_returning_record.dart.scanner.expect │ │ │ │ ├── record_and_commas.dart │ │ │ │ ├── record_and_commas.dart.expect │ │ │ │ ├── record_and_commas.dart.intertwined.expect │ │ │ │ ├── record_and_commas.dart.parser.expect │ │ │ │ ├── record_and_commas.dart.scanner.expect │ │ │ │ ├── record_literal_01.dart │ │ │ │ ├── record_literal_01.dart.expect │ │ │ │ ├── record_literal_01.dart.intertwined.expect │ │ │ │ ├── record_literal_01.dart.parser.expect │ │ │ │ ├── record_literal_01.dart.scanner.expect │ │ │ │ ├── record_literal_02.dart │ │ │ │ ├── record_literal_02.dart.expect │ │ │ │ ├── record_literal_02.dart.intertwined.expect │ │ │ │ ├── record_literal_02.dart.parser.expect │ │ │ │ ├── record_literal_02.dart.scanner.expect │ │ │ │ ├── record_literal_03.dart │ │ │ │ ├── record_literal_03.dart.expect │ │ │ │ ├── record_literal_03.dart.intertwined.expect │ │ │ │ ├── record_literal_03.dart.parser.expect │ │ │ │ ├── record_literal_03.dart.scanner.expect │ │ │ │ ├── record_literal_04.dart │ │ │ │ ├── record_literal_04.dart.expect │ │ │ │ ├── record_literal_04.dart.intertwined.expect │ │ │ │ ├── record_literal_04.dart.parser.expect │ │ │ │ ├── record_literal_04.dart.scanner.expect │ │ │ │ ├── record_type_01.dart │ │ │ │ ├── record_type_01.dart.expect │ │ │ │ ├── record_type_01.dart.intertwined.expect │ │ │ │ ├── record_type_01.dart.parser.expect │ │ │ │ ├── record_type_01.dart.scanner.expect │ │ │ │ ├── record_type_02.dart │ │ │ │ ├── record_type_02.dart.expect │ │ │ │ ├── record_type_02.dart.intertwined.expect │ │ │ │ ├── record_type_02.dart.parser.expect │ │ │ │ ├── record_type_02.dart.scanner.expect │ │ │ │ ├── record_type_03.dart │ │ │ │ ├── record_type_03.dart.expect │ │ │ │ ├── record_type_03.dart.intertwined.expect │ │ │ │ ├── record_type_03.dart.parser.expect │ │ │ │ ├── record_type_03.dart.scanner.expect │ │ │ │ ├── record_type_04.dart │ │ │ │ ├── record_type_04.dart.expect │ │ │ │ ├── record_type_04.dart.intertwined.expect │ │ │ │ ├── record_type_04.dart.parser.expect │ │ │ │ ├── record_type_04.dart.scanner.expect │ │ │ │ ├── record_type_as_named_parameter.dart │ │ │ │ ├── record_type_as_named_parameter.dart.expect │ │ │ │ ├── record_type_as_named_parameter.dart.intertwined.expect │ │ │ │ ├── record_type_as_named_parameter.dart.parser.expect │ │ │ │ ├── record_type_as_named_parameter.dart.scanner.expect │ │ │ │ ├── record_type_as_optional_parameter.dart │ │ │ │ ├── record_type_as_optional_parameter.dart.expect │ │ │ │ ├── record_type_as_optional_parameter.dart.intertwined.expect │ │ │ │ ├── record_type_as_optional_parameter.dart.parser.expect │ │ │ │ ├── record_type_as_optional_parameter.dart.scanner.expect │ │ │ │ ├── record_type_as_type_arguments.dart │ │ │ │ ├── record_type_as_type_arguments.dart.expect │ │ │ │ ├── record_type_as_type_arguments.dart.intertwined.expect │ │ │ │ ├── record_type_as_type_arguments.dart.parser.expect │ │ │ │ ├── record_type_as_type_arguments.dart.scanner.expect │ │ │ │ ├── record_type_getter.dart │ │ │ │ ├── record_type_getter.dart.expect │ │ │ │ ├── record_type_getter.dart.intertwined.expect │ │ │ │ ├── record_type_getter.dart.parser.expect │ │ │ │ ├── record_type_getter.dart.scanner.expect │ │ │ │ ├── record_type_in_for_loop.dart │ │ │ │ ├── record_type_in_for_loop.dart.expect │ │ │ │ ├── record_type_in_for_loop.dart.intertwined.expect │ │ │ │ ├── record_type_in_for_loop.dart.parser.expect │ │ │ │ ├── record_type_in_for_loop.dart.scanner.expect │ │ │ │ ├── record_type_return_on_function_with_type_parameter.dart │ │ │ │ ├── record_type_return_on_function_with_type_parameter.dart.expect │ │ │ │ ├── record_type_return_on_function_with_type_parameter.dart.intertwined.expect │ │ │ │ ├── record_type_return_on_function_with_type_parameter.dart.parser.expect │ │ │ │ ├── record_type_return_on_function_with_type_parameter.dart.scanner.expect │ │ │ │ ├── record_type_setter.dart │ │ │ │ ├── record_type_setter.dart.expect │ │ │ │ ├── record_type_setter.dart.intertwined.expect │ │ │ │ ├── record_type_setter.dart.parser.expect │ │ │ │ ├── record_type_setter.dart.scanner.expect │ │ │ │ ├── record_type_with_modifiers.dart │ │ │ │ ├── record_type_with_modifiers.dart.expect │ │ │ │ ├── record_type_with_modifiers.dart.intertwined.expect │ │ │ │ ├── record_type_with_modifiers.dart.parser.expect │ │ │ │ ├── record_type_with_modifiers.dart.scanner.expect │ │ │ │ ├── record_typedef.dart │ │ │ │ ├── record_typedef.dart.expect │ │ │ │ ├── record_typedef.dart.intertwined.expect │ │ │ │ ├── record_typedef.dart.parser.expect │ │ │ │ ├── record_typedef.dart.scanner.expect │ │ │ │ ├── super_parameters_record_type.dart │ │ │ │ ├── super_parameters_record_type.dart.expect │ │ │ │ ├── super_parameters_record_type.dart.intertwined.expect │ │ │ │ ├── super_parameters_record_type.dart.parser.expect │ │ │ │ └── super_parameters_record_type.dart.scanner.expect │ │ │ └── sealed_class │ │ │ │ ├── sealed_class.dart │ │ │ │ ├── sealed_class.dart.expect │ │ │ │ ├── sealed_class.dart.intertwined.expect │ │ │ │ ├── sealed_class.dart.parser.expect │ │ │ │ └── sealed_class.dart.scanner.expect │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── analyser_ignored │ │ │ │ ├── load_dill_twice_lib_1.dart │ │ │ │ ├── load_dill_twice_lib_2.dart │ │ │ │ └── load_dill_twice_test.dart │ │ │ ├── ast_nodes_has_to_string_test.dart │ │ │ ├── async_but_no_await_git_test.dart │ │ │ ├── binary_md_dill_reader.dart │ │ │ ├── binary_md_vm_tags_and_version_git_test.dart │ │ │ ├── class_hierarchy │ │ │ │ ├── class_hierarchy_test.dart │ │ │ │ └── data │ │ │ │ │ ├── abstract_extends_field.dart │ │ │ │ │ ├── abstract_extends_final_field.dart │ │ │ │ │ ├── abstract_extends_getter.dart │ │ │ │ │ ├── abstract_extends_method.dart │ │ │ │ │ ├── abstract_extends_setter.dart │ │ │ │ │ ├── abstract_implements_field.dart │ │ │ │ │ ├── abstract_implements_final_field.dart │ │ │ │ │ ├── abstract_implements_getter.dart │ │ │ │ │ ├── abstract_implements_method.dart │ │ │ │ │ ├── abstract_implements_setter.dart │ │ │ │ │ ├── concrete_extends_field.dart │ │ │ │ │ ├── concrete_extends_final_field.dart │ │ │ │ │ ├── concrete_extends_getter.dart │ │ │ │ │ ├── concrete_extends_method.dart │ │ │ │ │ ├── concrete_extends_setter.dart │ │ │ │ │ ├── concrete_implements_field.dart │ │ │ │ │ ├── concrete_implements_final_field.dart │ │ │ │ │ ├── concrete_implements_getter.dart │ │ │ │ │ ├── concrete_implements_method.dart │ │ │ │ │ ├── concrete_implements_setter.dart │ │ │ │ │ ├── conflict.dart │ │ │ │ │ ├── covariance.dart │ │ │ │ │ ├── covariant_equals.dart │ │ │ │ │ ├── declares.dart │ │ │ │ │ ├── extend_multiple_field.dart │ │ │ │ │ ├── extend_multiple_final_field.dart │ │ │ │ │ ├── extend_multiple_getter.dart │ │ │ │ │ ├── extend_multiple_method.dart │ │ │ │ │ ├── extend_multiple_setter.dart │ │ │ │ │ ├── forwarding_stubs_field.dart │ │ │ │ │ ├── forwarding_stubs_method.dart │ │ │ │ │ ├── forwarding_stubs_setter.dart │ │ │ │ │ ├── getter_setter.dart │ │ │ │ │ ├── implement_multiple_field.dart │ │ │ │ │ ├── implement_multiple_final_field.dart │ │ │ │ │ ├── implement_multiple_getter.dart │ │ │ │ │ ├── implement_multiple_method.dart │ │ │ │ │ ├── implement_multiple_setter.dart │ │ │ │ │ ├── in_out_in │ │ │ │ │ ├── in.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ └── out.dart │ │ │ │ │ ├── infer_parameter_opt_out.dart │ │ │ │ │ ├── late.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── member_signatures │ │ │ │ │ ├── lib.dart │ │ │ │ │ └── main.dart │ │ │ │ │ ├── mix_in_field.dart │ │ │ │ │ ├── mix_in_final_field.dart │ │ │ │ │ ├── mix_in_getter.dart │ │ │ │ │ ├── mix_in_method.dart │ │ │ │ │ ├── mix_in_override.dart │ │ │ │ │ ├── mix_in_setter.dart │ │ │ │ │ ├── no_such_method.dart │ │ │ │ │ └── override.dart │ │ │ ├── comments_on_certain_arguments_tool.dart │ │ │ ├── compile_benchmark.dart │ │ │ ├── compile_benchmark_helper.dart │ │ │ ├── compile_dart2js_with_no_sdk_test.dart │ │ │ ├── compile_with_no_sdk_test.dart │ │ │ ├── constant_evaluator_benchmark.dart │ │ │ ├── covariance_check │ │ │ │ ├── covariance_check_test.dart │ │ │ │ └── data │ │ │ │ │ ├── field.dart │ │ │ │ │ ├── getter.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ └── method.dart │ │ │ ├── crashing_test_case_minimizer.dart │ │ │ ├── crashing_test_case_minimizer_impl.dart │ │ │ ├── dartdoc_test_test.dart │ │ │ ├── dartdoctest_suite.dart │ │ │ ├── dartdoctest_suite.status │ │ │ ├── deps_git_test.dart │ │ │ ├── desugar_test.dart │ │ │ ├── dijkstras_sssp_algorithm.dart │ │ │ ├── dill_round_trip_test.dart │ │ │ ├── enable_non_nullable │ │ │ │ ├── data │ │ │ │ │ ├── allowed_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ │ │ ├── versioned_2_11_lib.dart │ │ │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── not_allowed_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ │ │ ├── versioned_2_11_lib.dart │ │ │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ ├── versioned_2_11_lib.dart │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ └── enable_non_nullable_test.dart │ │ │ ├── explicit_creation_git_test.dart │ │ │ ├── expression_compilation_tools_test.dart │ │ │ ├── extensions │ │ │ │ ├── data │ │ │ │ │ ├── ambiguous │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── as_show │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── origin.dart │ │ │ │ │ ├── explicit_this.dart │ │ │ │ │ ├── export_twice │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── export_unnamed │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── extension_on_type_variable.dart │ │ │ │ │ ├── implicit_this.dart │ │ │ │ │ ├── instance_members.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── named_declarations.dart │ │ │ │ │ ├── other_kinds.dart │ │ │ │ │ ├── part │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── part.dart │ │ │ │ │ ├── patching │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ ├── prefix │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ ├── lib3.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── reexport │ │ │ │ │ │ ├── lib.dart │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── show_hide │ │ │ │ │ │ ├── lib1.dart │ │ │ │ │ │ ├── lib2.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── static_members.dart │ │ │ │ │ ├── super.dart │ │ │ │ │ ├── type_variables.dart │ │ │ │ │ ├── unnamed_declarations.dart │ │ │ │ │ └── use_as_type.dart │ │ │ │ └── extensions_test.dart │ │ │ ├── fasta │ │ │ │ ├── ambiguous_export_test.dart │ │ │ │ ├── analyze_git_test.dart │ │ │ │ ├── analyze_src_with_lints_git_test.dart │ │ │ │ ├── assert_locations_test.dart │ │ │ │ ├── bootstrap_test.dart │ │ │ │ ├── expression_suite.dart │ │ │ │ ├── generator_to_string_test.dart │ │ │ │ ├── incremental_dartino_suite.dart │ │ │ │ ├── incremental_expectations.dart │ │ │ │ ├── incremental_hello_test.dart │ │ │ │ ├── incremental_source_files.dart │ │ │ │ ├── link_test.dart │ │ │ │ ├── messages_suite.dart │ │ │ │ ├── modular_suite.dart │ │ │ │ ├── object_supertype_test.dart │ │ │ │ ├── outline_suite.dart │ │ │ │ ├── parser │ │ │ │ │ ├── literal_entry_info_test.dart │ │ │ │ │ ├── token_stream_rewriter_test.dart │ │ │ │ │ └── type_info_test.dart │ │ │ │ ├── reexport_test.dart │ │ │ │ ├── sdk_test.dart │ │ │ │ ├── strong_suite.dart │ │ │ │ ├── suite_utils.dart │ │ │ │ ├── super_mixins_test.dart │ │ │ │ ├── testing │ │ │ │ │ └── suite.dart │ │ │ │ ├── textual_outline_suite.dart │ │ │ │ ├── tool_git_test.dart │ │ │ │ ├── type_inference │ │ │ │ │ ├── factor_type_test.dart │ │ │ │ │ ├── type_constraint_gatherer_nnbd_test.dart │ │ │ │ │ ├── type_constraint_gatherer_test.dart │ │ │ │ │ ├── type_inference_engine_test.dart │ │ │ │ │ ├── type_schema_elimination_nnbd_test.dart │ │ │ │ │ ├── type_schema_elimination_test.dart │ │ │ │ │ ├── type_schema_environment_nnbd_test.dart │ │ │ │ │ ├── type_schema_environment_test.dart │ │ │ │ │ ├── type_schema_environment_test_base.dart │ │ │ │ │ └── type_schema_test.dart │ │ │ │ ├── types │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmark_data.tar.gz.sha1 │ │ │ │ │ ├── dart2js_benchmark.dart │ │ │ │ │ ├── dart2js_benchmark_test.dart │ │ │ │ │ ├── dill_hierarchy_test.dart │ │ │ │ │ ├── fasta_legacy_upper_bound_test.dart │ │ │ │ │ ├── fasta_types_test.dart │ │ │ │ │ ├── hashcode_test.dart │ │ │ │ │ ├── kernel_legacy_upper_bound_test.dart │ │ │ │ │ ├── kernel_type_parser_test.dart │ │ │ │ │ ├── large_app_benchmark.dart │ │ │ │ │ ├── large_app_benchmark_test.dart │ │ │ │ │ ├── legacy_upper_bound_helper.dart │ │ │ │ │ ├── shared_type_tests.dart │ │ │ │ │ └── subtypes_benchmark.dart │ │ │ │ ├── uri_translator_test.dart │ │ │ │ ├── util │ │ │ │ │ ├── parser_ast_test.dart │ │ │ │ │ └── parser_ast_test_data │ │ │ │ │ │ ├── class.txt │ │ │ │ │ │ ├── mixin.txt │ │ │ │ │ │ ├── script_handle.txt │ │ │ │ │ │ ├── top_level_stuff.txt │ │ │ │ │ │ └── top_level_stuff_helper.txt │ │ │ │ └── weak_suite.dart │ │ │ ├── ffi_test.dart │ │ │ ├── flutter_gallery_leak_tester.dart │ │ │ ├── generated_files_up_to_date_git_test.dart │ │ │ ├── hot_reload_e2e_test.dart │ │ │ ├── id_testing │ │ │ │ ├── data │ │ │ │ │ ├── declarations.dart │ │ │ │ │ ├── directory_testing │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── library.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── errors.dart │ │ │ │ │ ├── library_with_name.dart │ │ │ │ │ └── marker.options │ │ │ │ └── id_testing_test.dart │ │ │ ├── id_tests │ │ │ │ ├── assigned_variables_test.dart │ │ │ │ ├── constant_test.dart │ │ │ │ ├── definite_assignment_test.dart │ │ │ │ ├── definite_unassignment_test.dart │ │ │ │ ├── exhaustiveness_test.dart │ │ │ │ ├── inferred_type_arguments_test.dart │ │ │ │ ├── inferred_variable_types_test.dart │ │ │ │ ├── inheritance_test.dart │ │ │ │ ├── nullability_test.dart │ │ │ │ ├── reachability_test.dart │ │ │ │ ├── type_promotion_test.dart │ │ │ │ └── why_not_promoted_test.dart │ │ │ ├── incremental_bulk_compiler_full.dart │ │ │ ├── incremental_bulk_compiler_smoke_suite.dart │ │ │ ├── incremental_compiler_leak_test.dart │ │ │ ├── incremental_dart2js_load_from_dill_test.dart │ │ │ ├── incremental_dart2js_test.dart │ │ │ ├── incremental_dart2js_tester.dart │ │ │ ├── incremental_flutter_tester.dart │ │ │ ├── incremental_load_from_invalid_dill_test.dart │ │ │ ├── incremental_suite.dart │ │ │ ├── incremental_utils.dart │ │ │ ├── issue_34856_test.dart │ │ │ ├── kernel_generator_test.dart │ │ │ ├── language_versioning │ │ │ │ ├── data │ │ │ │ │ ├── allowed_experiments_with_json │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ └── bin_file.dart │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── test_file.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── both_packages_and_json │ │ │ │ │ │ ├── foo1 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── foo2 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── issue42661a │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pack │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── part.dart │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── pack.dart │ │ │ │ │ ├── issue42661b │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── part.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── pack.dart │ │ │ │ │ ├── library_with_bad_version.dart │ │ │ │ │ ├── library_with_bad_version_before_good_version.dart │ │ │ │ │ ├── library_with_no_version.dart │ │ │ │ │ ├── library_with_two_versions.dart │ │ │ │ │ ├── library_with_two_versions_2.dart │ │ │ │ │ ├── library_with_version.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── package_default_version │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ ├── foo2.dart │ │ │ │ │ │ │ ├── foo3.dart │ │ │ │ │ │ │ ├── foo4.dart │ │ │ │ │ │ │ ├── foo_with_part.dart │ │ │ │ │ │ │ └── foos_part.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_default_version_is_empty │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── foo2.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_default_version_is_wrong │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── foo2.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_default_version_is_wrong_2 │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── foo2.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_default_version_is_wrong_3 │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── foo2.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_default_version_is_wrong_4 │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── foo2.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_no_default_version │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_non_package_default_version │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_non_package_no_default_version │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_to_high_default_version │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ ├── foo2.dart │ │ │ │ │ │ │ └── foo3.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── package_with_test_json │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ └── bin_file.dart │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── test_file.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── package_without_test_json │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ └── bin_file.dart │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── test_file.dart │ │ │ │ │ │ └── main.dart │ │ │ │ │ ├── parts_agreeing │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── part.dart │ │ │ │ │ ├── parts_agreeing_two_versions │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── part.dart │ │ │ │ │ ├── parts_disagreeing │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── part.dart │ │ │ │ │ ├── parts_disagreeing_has_package │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── part.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── parts_disagreeing_has_package_2 │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── foo.dart │ │ │ │ │ │ │ └── part.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── pubspec.yaml │ │ │ │ │ ├── specified_packages_01 │ │ │ │ │ │ ├── foo1 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── foo2 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── pubspec.yaml │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── specified_packages_02 │ │ │ │ │ │ ├── .packagesX │ │ │ │ │ │ ├── foo1 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── foo2 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── null │ │ │ │ │ │ ├── pubspec.yaml │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── specified_packages_03 │ │ │ │ │ │ ├── foo1 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── foo2 │ │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── package_config.json │ │ │ │ │ │ ├── pubspec.yaml │ │ │ │ │ │ └── test.options │ │ │ │ │ └── specified_packages_04 │ │ │ │ │ │ ├── foo1 │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── foo2 │ │ │ │ │ │ └── foo.dart │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── null │ │ │ │ │ │ ├── pubspec.yaml │ │ │ │ │ │ └── test.options │ │ │ │ ├── language_versioning_test.dart │ │ │ │ └── language_versioning_up_to_date_git_test.dart │ │ │ ├── lint_suite.dart │ │ │ ├── lint_test.status │ │ │ ├── macros │ │ │ │ ├── application │ │ │ │ │ ├── data │ │ │ │ │ │ ├── package_config.json │ │ │ │ │ │ ├── pkgs │ │ │ │ │ │ │ └── macro │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── data_class.dart │ │ │ │ │ │ │ │ ├── macro.dart │ │ │ │ │ │ │ │ ├── macro1.dart │ │ │ │ │ │ │ │ └── macro2.dart │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── data_class.dart │ │ │ │ │ │ │ ├── data_class.dart.expect │ │ │ │ │ │ │ ├── declarations.dart │ │ │ │ │ │ │ ├── declarations.dart.expect │ │ │ │ │ │ │ ├── import_conflict.dart │ │ │ │ │ │ │ ├── import_conflict.dart.expect │ │ │ │ │ │ │ ├── inferred.dart │ │ │ │ │ │ │ ├── inferred.dart.expect │ │ │ │ │ │ │ ├── layers.dart │ │ │ │ │ │ │ ├── layers.dart.expect │ │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ │ ├── parameters.dart │ │ │ │ │ │ │ ├── parameters.dart.expect │ │ │ │ │ │ │ ├── sequence.dart │ │ │ │ │ │ │ ├── sequence.dart.expect │ │ │ │ │ │ │ ├── subtypes.dart │ │ │ │ │ │ │ ├── subtypes.dart.expect │ │ │ │ │ │ │ ├── supertypes.dart │ │ │ │ │ │ │ ├── supertypes.dart.expect │ │ │ │ │ │ │ ├── to_string.dart │ │ │ │ │ │ │ ├── to_string.dart.expect │ │ │ │ │ │ │ ├── type_annotations.dart │ │ │ │ │ │ │ ├── type_annotations.dart.expect │ │ │ │ │ │ │ ├── types.dart │ │ │ │ │ │ │ └── types.dart.expect │ │ │ │ │ └── macro_application_test.dart │ │ │ │ ├── declaration │ │ │ │ │ ├── data │ │ │ │ │ │ ├── package_config.json │ │ │ │ │ │ ├── pkgs │ │ │ │ │ │ │ ├── macro │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ └── macro.dart │ │ │ │ │ │ │ └── precompiled_macro │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── precompiled_macro.dart │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── macro_base.dart │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── all_precompiled.dart │ │ │ │ │ │ │ ├── applications.dart │ │ │ │ │ │ │ ├── declare_macro.dart │ │ │ │ │ │ │ ├── declare_vs_apply │ │ │ │ │ │ │ ├── apply_lib.dart │ │ │ │ │ │ │ ├── apply_lib_dep.dart │ │ │ │ │ │ │ ├── macro_lib.dart │ │ │ │ │ │ │ ├── macro_lib_dep.dart │ │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ │ └── main_lib_dep.dart │ │ │ │ │ │ │ ├── direct_import.dart │ │ │ │ │ │ │ ├── import_macro_builder.dart │ │ │ │ │ │ │ ├── import_macro_package.dart │ │ │ │ │ │ │ ├── import_macro_source │ │ │ │ │ │ │ ├── macro_lib.dart │ │ │ │ │ │ │ └── main.dart │ │ │ │ │ │ │ ├── macro_arguments.dart │ │ │ │ │ │ │ ├── macro_declarations.dart │ │ │ │ │ │ │ ├── marker.options │ │ │ │ │ │ │ ├── multiple_macros │ │ │ │ │ │ │ ├── macro_lib1.dart │ │ │ │ │ │ │ ├── macro_lib2a.dart │ │ │ │ │ │ │ ├── macro_lib2b.dart │ │ │ │ │ │ │ └── main.dart │ │ │ │ │ │ │ ├── no_import.dart │ │ │ │ │ │ │ ├── precompiled.dart │ │ │ │ │ │ │ ├── use_macro_package.dart │ │ │ │ │ │ │ └── use_macro_source │ │ │ │ │ │ │ ├── macro_lib.dart │ │ │ │ │ │ │ └── main.dart │ │ │ │ │ └── macro_declaration_test.dart │ │ │ │ ├── incremental │ │ │ │ │ ├── data │ │ │ │ │ │ ├── package_config.json │ │ │ │ │ │ ├── pkgs │ │ │ │ │ │ │ └── macro │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── macro.dart │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ ├── data_class.0.dart │ │ │ │ │ │ │ ├── data_class.0.dart.expect │ │ │ │ │ │ │ ├── data_class.1.dart │ │ │ │ │ │ │ ├── data_class.1.dart.expect │ │ │ │ │ │ │ ├── data_class.2.dart │ │ │ │ │ │ │ ├── data_class.2.dart.expect │ │ │ │ │ │ │ ├── in_body_change.0.dart │ │ │ │ │ │ │ ├── in_body_change.0.dart.expect │ │ │ │ │ │ │ ├── in_body_change.1.dart │ │ │ │ │ │ │ ├── in_body_change.1.dart.expect │ │ │ │ │ │ │ ├── inject_macro.0.dart │ │ │ │ │ │ │ ├── inject_macro.0.dart.expect │ │ │ │ │ │ │ ├── inject_macro.1.dart │ │ │ │ │ │ │ ├── inject_macro.1.dart.expect │ │ │ │ │ │ │ └── user_macro │ │ │ │ │ │ │ ├── macro.0.dart │ │ │ │ │ │ │ ├── macro.1.dart │ │ │ │ │ │ │ ├── macro_dependency.0.dart │ │ │ │ │ │ │ ├── macro_dependency.2.dart │ │ │ │ │ │ │ ├── main.0.dart │ │ │ │ │ │ │ ├── main.0.dart.expect │ │ │ │ │ │ │ ├── main.1.dart.expect │ │ │ │ │ │ │ ├── main.2.dart.expect │ │ │ │ │ │ │ ├── main.3.dart.expect │ │ │ │ │ │ │ ├── main_lib.0.dart │ │ │ │ │ │ │ └── main_lib.3.dart │ │ │ │ │ └── incremental_macro_test.dart │ │ │ │ └── macro_api_test.dart │ │ │ ├── member_covariance_test.dart │ │ │ ├── memory_file_system_test.dart │ │ │ ├── messages_json_test.dart │ │ │ ├── mixin_export_test.dart │ │ │ ├── mock_file_system.dart │ │ │ ├── multiple_simultaneous_compiles_test.dart │ │ │ ├── outline_extractor_suite.dart │ │ │ ├── outline_extractor_tester.dart │ │ │ ├── packages_format_error_test.dart │ │ │ ├── parser_all_suite.dart │ │ │ ├── parser_equivalence_suite.dart │ │ │ ├── parser_suite.dart │ │ │ ├── parser_test_listener.dart │ │ │ ├── parser_test_listener_creator.dart │ │ │ ├── parser_test_parser.dart │ │ │ ├── parser_test_parser_creator.dart │ │ │ ├── parts │ │ │ │ ├── data │ │ │ │ │ ├── main_part_by_file │ │ │ │ │ │ ├── a.dart │ │ │ │ │ │ └── b.dart │ │ │ │ │ ├── main_part_by_name │ │ │ │ │ │ ├── a.dart │ │ │ │ │ │ └── b.dart │ │ │ │ │ ├── part_main_by_file │ │ │ │ │ │ ├── a.dart │ │ │ │ │ │ └── b.dart │ │ │ │ │ └── part_main_by_name │ │ │ │ │ │ ├── a.dart │ │ │ │ │ │ └── b.dart │ │ │ │ └── parts_test.dart │ │ │ ├── patching │ │ │ │ ├── data │ │ │ │ │ ├── abstract_class │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ ├── const_constructors │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ ├── initializing_formals │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── opt_in │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ ├── opt_in_patch │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ ├── opt_out │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ │ └── opt_out_patch │ │ │ │ │ │ ├── libraries.json │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── origin.dart │ │ │ │ │ │ └── patch.dart │ │ │ │ └── patching_test.dart │ │ │ ├── precedence_info_test.dart │ │ │ ├── predicates │ │ │ │ ├── data │ │ │ │ │ ├── extension.dart │ │ │ │ │ ├── late.dart │ │ │ │ │ ├── late_names.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── pattern_switch.dart │ │ │ │ │ └── tear_off.dart │ │ │ │ └── predicate_test.dart │ │ │ ├── read_dill_from_binary_md_git_test.dart │ │ │ ├── relativize_test.dart │ │ │ ├── scanner_fasta_test.dart │ │ │ ├── scanner_replacement_test.dart │ │ │ ├── scanner_test.dart │ │ │ ├── scheme_based_file_system_test.dart │ │ │ ├── severity_index_test.dart │ │ │ ├── simple_stats.dart │ │ │ ├── spell_checking_cleanup_lists.dart │ │ │ ├── spell_checking_list_code.txt │ │ │ ├── spell_checking_list_common.txt │ │ │ ├── spell_checking_list_denylist.txt │ │ │ ├── spell_checking_list_messages.txt │ │ │ ├── spell_checking_list_tests.txt │ │ │ ├── spell_checking_utils.dart │ │ │ ├── spell_checking_utils_test.dart │ │ │ ├── spelling_test.status │ │ │ ├── spelling_test_base.dart │ │ │ ├── spelling_test_external_targets.dart │ │ │ ├── spelling_test_not_src_suite.dart │ │ │ ├── spelling_test_src_suite.dart │ │ │ ├── split_dill_test.dart │ │ │ ├── src │ │ │ │ └── base │ │ │ │ │ └── processed_options_test.dart │ │ │ ├── standard_file_system_test.dart │ │ │ ├── static_types │ │ │ │ ├── cfe_allowed.json │ │ │ │ ├── cfe_dynamic_test.dart │ │ │ │ ├── data │ │ │ │ │ ├── binary.dart │ │ │ │ │ ├── class_call.dart │ │ │ │ │ ├── constant_from_opt_in │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── constant_from_opt_out │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── constraint_gatherer_for_future_or.dart │ │ │ │ │ ├── for_in.dart │ │ │ │ │ ├── from_opt_in │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── opt_in.dart │ │ │ │ │ ├── from_opt_out │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ └── opt_out.dart │ │ │ │ │ ├── future_value_type.dart │ │ │ │ │ ├── greatest_lower_bound_for_future_or.dart │ │ │ │ │ ├── if_null.dart │ │ │ │ │ ├── issue50112.dart │ │ │ │ │ ├── list_literals.dart │ │ │ │ │ ├── literals.dart │ │ │ │ │ ├── map_literals.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── never.dart │ │ │ │ │ ├── null_aware_for_in.dart │ │ │ │ │ ├── null_aware_spread.dart │ │ │ │ │ ├── null_check.dart │ │ │ │ │ ├── opt_out.dart │ │ │ │ │ ├── prefix_postfix.dart │ │ │ │ │ ├── promoted_access.dart │ │ │ │ │ ├── set_literals.dart │ │ │ │ │ └── throw.dart │ │ │ │ ├── static_type_test.dart │ │ │ │ ├── type_arguments.json │ │ │ │ ├── type_arguments_test.dart │ │ │ │ └── verifying_analysis.dart │ │ │ ├── summary_generator_test.dart │ │ │ ├── test_generator_test.dart │ │ │ ├── test_utils.dart │ │ │ ├── testing_utils.dart │ │ │ ├── text_representation │ │ │ │ ├── data │ │ │ │ │ ├── constants.dart │ │ │ │ │ ├── constants_opt_out.dart │ │ │ │ │ ├── expressions.dart │ │ │ │ │ ├── marker.options │ │ │ │ │ ├── statements.dart │ │ │ │ │ ├── types.dart │ │ │ │ │ └── types_opt_out.dart │ │ │ │ ├── empty_reference_test.dart │ │ │ │ ├── internal_ast_text_representation_test.dart │ │ │ │ └── text_representation_test.dart │ │ │ ├── textual_outline_test.dart │ │ │ ├── token_test.dart │ │ │ ├── tool │ │ │ │ └── reload.dart │ │ │ ├── type_labeler_test.dart │ │ │ ├── unit_test_suites.dart │ │ │ ├── utils │ │ │ │ ├── io_utils.dart │ │ │ │ ├── kernel_chain.dart │ │ │ │ ├── scanner_chain.dart │ │ │ │ ├── validating_instrumentation.dart │ │ │ │ └── values.dart │ │ │ ├── vm_service_coverage.dart │ │ │ ├── vm_service_coverage_constant_evaluator.dart │ │ │ ├── vm_service_for_leak_detection.dart │ │ │ ├── vm_service_heap_finder.dart │ │ │ ├── vm_service_heap_helper.dart │ │ │ ├── vm_service_heap_helper_test.dart │ │ │ ├── vm_service_helper.dart │ │ │ ├── web_parser_git_test.dart │ │ │ ├── web_parser_git_test_helper.dart │ │ │ └── weekly_tester.dart │ │ ├── testcases │ │ │ ├── README.md │ │ │ ├── agnostic │ │ │ │ ├── as.dart │ │ │ │ ├── as.dart.strong.expect │ │ │ │ ├── as.dart.strong.transformed.expect │ │ │ │ ├── as.dart.textual_outline.expect │ │ │ │ ├── as.dart.textual_outline_modelled.expect │ │ │ │ ├── as.dart.weak.expect │ │ │ │ ├── as.dart.weak.modular.expect │ │ │ │ ├── as.dart.weak.outline.expect │ │ │ │ ├── as.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── identical.dart │ │ │ │ ├── identical.dart.strong.expect │ │ │ │ ├── identical.dart.strong.transformed.expect │ │ │ │ ├── identical.dart.textual_outline.expect │ │ │ │ ├── identical.dart.textual_outline_modelled.expect │ │ │ │ ├── identical.dart.weak.expect │ │ │ │ ├── identical.dart.weak.modular.expect │ │ │ │ ├── identical.dart.weak.outline.expect │ │ │ │ ├── identical.dart.weak.transformed.expect │ │ │ │ ├── is.dart │ │ │ │ ├── is.dart.strong.expect │ │ │ │ ├── is.dart.strong.transformed.expect │ │ │ │ ├── is.dart.textual_outline.expect │ │ │ │ ├── is.dart.textual_outline_modelled.expect │ │ │ │ ├── is.dart.weak.expect │ │ │ │ ├── is.dart.weak.modular.expect │ │ │ │ ├── is.dart.weak.outline.expect │ │ │ │ ├── is.dart.weak.transformed.expect │ │ │ │ ├── map.dart │ │ │ │ ├── map.dart.strong.expect │ │ │ │ ├── map.dart.strong.transformed.expect │ │ │ │ ├── map.dart.textual_outline.expect │ │ │ │ ├── map.dart.textual_outline_modelled.expect │ │ │ │ ├── map.dart.weak.expect │ │ │ │ ├── map.dart.weak.modular.expect │ │ │ │ ├── map.dart.weak.outline.expect │ │ │ │ ├── map.dart.weak.transformed.expect │ │ │ │ ├── set.dart │ │ │ │ ├── set.dart.strong.expect │ │ │ │ ├── set.dart.strong.transformed.expect │ │ │ │ ├── set.dart.textual_outline.expect │ │ │ │ ├── set.dart.textual_outline_modelled.expect │ │ │ │ ├── set.dart.weak.expect │ │ │ │ ├── set.dart.weak.modular.expect │ │ │ │ ├── set.dart.weak.outline.expect │ │ │ │ └── set.dart.weak.transformed.expect │ │ │ ├── class_modifiers │ │ │ │ ├── anonymous_mixin.dart │ │ │ │ ├── anonymous_mixin.dart.strong.expect │ │ │ │ ├── anonymous_mixin.dart.strong.transformed.expect │ │ │ │ ├── anonymous_mixin.dart.textual_outline.expect │ │ │ │ ├── anonymous_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── anonymous_mixin.dart.weak.expect │ │ │ │ ├── anonymous_mixin.dart.weak.modular.expect │ │ │ │ ├── anonymous_mixin.dart.weak.outline.expect │ │ │ │ ├── anonymous_mixin.dart.weak.transformed.expect │ │ │ │ ├── base │ │ │ │ │ ├── base_class_declaration.dart │ │ │ │ │ ├── base_class_declaration.dart.strong.expect │ │ │ │ │ ├── base_class_declaration.dart.strong.transformed.expect │ │ │ │ │ ├── base_class_declaration.dart.textual_outline.expect │ │ │ │ │ ├── base_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ │ ├── base_class_declaration.dart.weak.expect │ │ │ │ │ ├── base_class_declaration.dart.weak.modular.expect │ │ │ │ │ ├── base_class_declaration.dart.weak.outline.expect │ │ │ │ │ ├── base_class_declaration.dart.weak.transformed.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.strong.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.strong.transformed.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.textual_outline.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.textual_outline_modelled.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.weak.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.weak.modular.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.weak.outline.expect │ │ │ │ │ ├── base_subtype_not_base_final_sealed.dart.weak.transformed.expect │ │ │ │ │ ├── outside_library │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── outside_library_implements │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ └── typedef │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ ├── ffi_exception.dart │ │ │ │ ├── ffi_exception.dart.strong.expect │ │ │ │ ├── ffi_exception.dart.strong.transformed.expect │ │ │ │ ├── ffi_exception.dart.textual_outline.expect │ │ │ │ ├── ffi_exception.dart.textual_outline_modelled.expect │ │ │ │ ├── ffi_exception.dart.weak.expect │ │ │ │ ├── ffi_exception.dart.weak.modular.expect │ │ │ │ ├── ffi_exception.dart.weak.outline.expect │ │ │ │ ├── ffi_exception.dart.weak.transformed.expect │ │ │ │ ├── final │ │ │ │ │ ├── final_class_declaration.dart │ │ │ │ │ ├── final_class_declaration.dart.strong.expect │ │ │ │ │ ├── final_class_declaration.dart.strong.transformed.expect │ │ │ │ │ ├── final_class_declaration.dart.textual_outline.expect │ │ │ │ │ ├── final_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ │ ├── final_class_declaration.dart.weak.expect │ │ │ │ │ ├── final_class_declaration.dart.weak.modular.expect │ │ │ │ │ ├── final_class_declaration.dart.weak.outline.expect │ │ │ │ │ ├── final_class_declaration.dart.weak.transformed.expect │ │ │ │ │ ├── final_mixin_declaration.dart │ │ │ │ │ ├── final_mixin_declaration.dart.strong.expect │ │ │ │ │ ├── final_mixin_declaration.dart.strong.transformed.expect │ │ │ │ │ ├── final_mixin_declaration.dart.textual_outline.expect │ │ │ │ │ ├── final_mixin_declaration.dart.weak.expect │ │ │ │ │ ├── final_mixin_declaration.dart.weak.modular.expect │ │ │ │ │ ├── final_mixin_declaration.dart.weak.outline.expect │ │ │ │ │ ├── final_mixin_declaration.dart.weak.transformed.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.strong.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.strong.transformed.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.textual_outline.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.textual_outline_modelled.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.weak.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.weak.modular.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.weak.outline.expect │ │ │ │ │ ├── final_subtype_not_base_final_sealed.dart.weak.transformed.expect │ │ │ │ │ ├── outside_library │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── outside_library_no_base_final_sealed │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ └── typedef │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ ├── folder.options │ │ │ │ ├── interface │ │ │ │ │ ├── interface_class_declaration.dart │ │ │ │ │ ├── interface_class_declaration.dart.strong.expect │ │ │ │ │ ├── interface_class_declaration.dart.strong.transformed.expect │ │ │ │ │ ├── interface_class_declaration.dart.textual_outline.expect │ │ │ │ │ ├── interface_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ │ ├── interface_class_declaration.dart.weak.expect │ │ │ │ │ ├── interface_class_declaration.dart.weak.modular.expect │ │ │ │ │ ├── interface_class_declaration.dart.weak.outline.expect │ │ │ │ │ ├── interface_class_declaration.dart.weak.transformed.expect │ │ │ │ │ ├── interface_mixin_declaration.dart │ │ │ │ │ ├── interface_mixin_declaration.dart.strong.expect │ │ │ │ │ ├── interface_mixin_declaration.dart.strong.transformed.expect │ │ │ │ │ ├── interface_mixin_declaration.dart.textual_outline.expect │ │ │ │ │ ├── interface_mixin_declaration.dart.weak.expect │ │ │ │ │ ├── interface_mixin_declaration.dart.weak.modular.expect │ │ │ │ │ ├── interface_mixin_declaration.dart.weak.outline.expect │ │ │ │ │ ├── interface_mixin_declaration.dart.weak.transformed.expect │ │ │ │ │ ├── outside_library │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ └── typedef │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ ├── issue52161 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── mixin │ │ │ │ │ ├── mixin_class_core_libraries.dart │ │ │ │ │ ├── mixin_class_core_libraries.dart.strong.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.weak.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_core_libraries.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.strong.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.weak.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_core_libraries_legacy.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_class_declaration.dart │ │ │ │ │ ├── mixin_class_declaration.dart.strong.expect │ │ │ │ │ ├── mixin_class_declaration.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_declaration.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_class_declaration.dart.weak.expect │ │ │ │ │ ├── mixin_class_declaration.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_declaration.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_declaration.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.strong.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.weak.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_declaration_no_modifier_inside_library.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart │ │ │ │ │ ├── mixin_class_generative_constructor.dart.strong.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.weak.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_generative_constructor.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.strong.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.weak.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_invalid_modifiers.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.strong.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.textual_outline.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.weak.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.weak.modular.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.weak.outline.expect │ │ │ │ │ ├── mixin_class_superclass_not_object.dart.weak.transformed.expect │ │ │ │ │ ├── no_modifier_outside_library │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── no_modifier_outside_library_legacy │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── outside_library │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── outside_library_legacy │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ └── outside_library_modifier │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ ├── subtype_function.dart │ │ │ │ ├── subtype_function.dart.strong.expect │ │ │ │ ├── subtype_function.dart.strong.transformed.expect │ │ │ │ ├── subtype_function.dart.textual_outline.expect │ │ │ │ ├── subtype_function.dart.textual_outline_modelled.expect │ │ │ │ ├── subtype_function.dart.weak.expect │ │ │ │ ├── subtype_function.dart.weak.modular.expect │ │ │ │ ├── subtype_function.dart.weak.outline.expect │ │ │ │ └── subtype_function.dart.weak.transformed.expect │ │ │ ├── const_functions │ │ │ │ ├── const_functions_assert_statements.dart │ │ │ │ ├── const_functions_assert_statements.dart.strong.expect │ │ │ │ ├── const_functions_assert_statements.dart.strong.transformed.expect │ │ │ │ ├── const_functions_assert_statements.dart.textual_outline.expect │ │ │ │ ├── const_functions_assert_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_assert_statements.dart.weak.expect │ │ │ │ ├── const_functions_assert_statements.dart.weak.modular.expect │ │ │ │ ├── const_functions_assert_statements.dart.weak.outline.expect │ │ │ │ ├── const_functions_assert_statements.dart.weak.transformed.expect │ │ │ │ ├── const_functions_block.dart │ │ │ │ ├── const_functions_block.dart.strong.expect │ │ │ │ ├── const_functions_block.dart.strong.transformed.expect │ │ │ │ ├── const_functions_block.dart.textual_outline.expect │ │ │ │ ├── const_functions_block.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_block.dart.weak.expect │ │ │ │ ├── const_functions_block.dart.weak.modular.expect │ │ │ │ ├── const_functions_block.dart.weak.outline.expect │ │ │ │ ├── const_functions_block.dart.weak.transformed.expect │ │ │ │ ├── const_functions_closures.dart │ │ │ │ ├── const_functions_closures.dart.strong.expect │ │ │ │ ├── const_functions_closures.dart.strong.transformed.expect │ │ │ │ ├── const_functions_closures.dart.textual_outline.expect │ │ │ │ ├── const_functions_closures.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_closures.dart.weak.expect │ │ │ │ ├── const_functions_closures.dart.weak.modular.expect │ │ │ │ ├── const_functions_closures.dart.weak.outline.expect │ │ │ │ ├── const_functions_closures.dart.weak.transformed.expect │ │ │ │ ├── const_functions_const_ctor.dart │ │ │ │ ├── const_functions_const_ctor.dart.strong.expect │ │ │ │ ├── const_functions_const_ctor.dart.strong.transformed.expect │ │ │ │ ├── const_functions_const_ctor.dart.textual_outline.expect │ │ │ │ ├── const_functions_const_ctor.dart.weak.expect │ │ │ │ ├── const_functions_const_ctor.dart.weak.modular.expect │ │ │ │ ├── const_functions_const_ctor.dart.weak.outline.expect │ │ │ │ ├── const_functions_const_ctor.dart.weak.transformed.expect │ │ │ │ ├── const_functions_const_ctor_error.dart │ │ │ │ ├── const_functions_const_ctor_error.dart.strong.expect │ │ │ │ ├── const_functions_const_ctor_error.dart.strong.transformed.expect │ │ │ │ ├── const_functions_const_ctor_error.dart.textual_outline.expect │ │ │ │ ├── const_functions_const_ctor_error.dart.weak.expect │ │ │ │ ├── const_functions_const_ctor_error.dart.weak.modular.expect │ │ │ │ ├── const_functions_const_ctor_error.dart.weak.outline.expect │ │ │ │ ├── const_functions_const_ctor_error.dart.weak.transformed.expect │ │ │ │ ├── const_functions_const_factory.dart │ │ │ │ ├── const_functions_const_factory.dart.strong.expect │ │ │ │ ├── const_functions_const_factory.dart.strong.transformed.expect │ │ │ │ ├── const_functions_const_factory.dart.textual_outline.expect │ │ │ │ ├── const_functions_const_factory.dart.weak.expect │ │ │ │ ├── const_functions_const_factory.dart.weak.modular.expect │ │ │ │ ├── const_functions_const_factory.dart.weak.outline.expect │ │ │ │ ├── const_functions_const_factory.dart.weak.transformed.expect │ │ │ │ ├── const_functions_do_statements.dart │ │ │ │ ├── const_functions_do_statements.dart.strong.expect │ │ │ │ ├── const_functions_do_statements.dart.strong.transformed.expect │ │ │ │ ├── const_functions_do_statements.dart.textual_outline.expect │ │ │ │ ├── const_functions_do_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_do_statements.dart.weak.expect │ │ │ │ ├── const_functions_do_statements.dart.weak.modular.expect │ │ │ │ ├── const_functions_do_statements.dart.weak.outline.expect │ │ │ │ ├── const_functions_do_statements.dart.weak.transformed.expect │ │ │ │ ├── const_functions_for_statements.dart │ │ │ │ ├── const_functions_for_statements.dart.strong.expect │ │ │ │ ├── const_functions_for_statements.dart.strong.transformed.expect │ │ │ │ ├── const_functions_for_statements.dart.textual_outline.expect │ │ │ │ ├── const_functions_for_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_for_statements.dart.weak.expect │ │ │ │ ├── const_functions_for_statements.dart.weak.modular.expect │ │ │ │ ├── const_functions_for_statements.dart.weak.outline.expect │ │ │ │ ├── const_functions_for_statements.dart.weak.transformed.expect │ │ │ │ ├── const_functions_if_statements.dart │ │ │ │ ├── const_functions_if_statements.dart.strong.expect │ │ │ │ ├── const_functions_if_statements.dart.strong.transformed.expect │ │ │ │ ├── const_functions_if_statements.dart.textual_outline.expect │ │ │ │ ├── const_functions_if_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_if_statements.dart.weak.expect │ │ │ │ ├── const_functions_if_statements.dart.weak.modular.expect │ │ │ │ ├── const_functions_if_statements.dart.weak.outline.expect │ │ │ │ ├── const_functions_if_statements.dart.weak.transformed.expect │ │ │ │ ├── const_functions_instance_fields.dart │ │ │ │ ├── const_functions_instance_fields.dart.strong.expect │ │ │ │ ├── const_functions_instance_fields.dart.strong.transformed.expect │ │ │ │ ├── const_functions_instance_fields.dart.textual_outline.expect │ │ │ │ ├── const_functions_instance_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_instance_fields.dart.weak.expect │ │ │ │ ├── const_functions_instance_fields.dart.weak.modular.expect │ │ │ │ ├── const_functions_instance_fields.dart.weak.outline.expect │ │ │ │ ├── const_functions_instance_fields.dart.weak.transformed.expect │ │ │ │ ├── const_functions_instance_methods.dart │ │ │ │ ├── const_functions_instance_methods.dart.strong.expect │ │ │ │ ├── const_functions_instance_methods.dart.strong.transformed.expect │ │ │ │ ├── const_functions_instance_methods.dart.textual_outline.expect │ │ │ │ ├── const_functions_instance_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_instance_methods.dart.weak.expect │ │ │ │ ├── const_functions_instance_methods.dart.weak.modular.expect │ │ │ │ ├── const_functions_instance_methods.dart.weak.outline.expect │ │ │ │ ├── const_functions_instance_methods.dart.weak.transformed.expect │ │ │ │ ├── const_functions_list.dart │ │ │ │ ├── const_functions_list.dart.strong.expect │ │ │ │ ├── const_functions_list.dart.strong.transformed.expect │ │ │ │ ├── const_functions_list.dart.textual_outline.expect │ │ │ │ ├── const_functions_list.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_list.dart.weak.expect │ │ │ │ ├── const_functions_list.dart.weak.modular.expect │ │ │ │ ├── const_functions_list.dart.weak.outline.expect │ │ │ │ ├── const_functions_list.dart.weak.transformed.expect │ │ │ │ ├── const_functions_list_error.dart │ │ │ │ ├── const_functions_list_error.dart.strong.expect │ │ │ │ ├── const_functions_list_error.dart.strong.transformed.expect │ │ │ │ ├── const_functions_list_error.dart.textual_outline.expect │ │ │ │ ├── const_functions_list_error.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_list_error.dart.weak.expect │ │ │ │ ├── const_functions_list_error.dart.weak.modular.expect │ │ │ │ ├── const_functions_list_error.dart.weak.outline.expect │ │ │ │ ├── const_functions_list_error.dart.weak.transformed.expect │ │ │ │ ├── const_functions_local_functions.dart │ │ │ │ ├── const_functions_local_functions.dart.strong.expect │ │ │ │ ├── const_functions_local_functions.dart.strong.transformed.expect │ │ │ │ ├── const_functions_local_functions.dart.textual_outline.expect │ │ │ │ ├── const_functions_local_functions.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_local_functions.dart.weak.expect │ │ │ │ ├── const_functions_local_functions.dart.weak.modular.expect │ │ │ │ ├── const_functions_local_functions.dart.weak.outline.expect │ │ │ │ ├── const_functions_local_functions.dart.weak.transformed.expect │ │ │ │ ├── const_functions_map.dart │ │ │ │ ├── const_functions_map.dart.strong.expect │ │ │ │ ├── const_functions_map.dart.strong.transformed.expect │ │ │ │ ├── const_functions_map.dart.textual_outline.expect │ │ │ │ ├── const_functions_map.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_map.dart.weak.expect │ │ │ │ ├── const_functions_map.dart.weak.modular.expect │ │ │ │ ├── const_functions_map.dart.weak.outline.expect │ │ │ │ ├── const_functions_map.dart.weak.transformed.expect │ │ │ │ ├── const_functions_recursion.dart │ │ │ │ ├── const_functions_recursion.dart.strong.expect │ │ │ │ ├── const_functions_recursion.dart.strong.transformed.expect │ │ │ │ ├── const_functions_recursion.dart.textual_outline.expect │ │ │ │ ├── const_functions_recursion.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_recursion.dart.weak.expect │ │ │ │ ├── const_functions_recursion.dart.weak.modular.expect │ │ │ │ ├── const_functions_recursion.dart.weak.outline.expect │ │ │ │ ├── const_functions_recursion.dart.weak.transformed.expect │ │ │ │ ├── const_functions_return.dart │ │ │ │ ├── const_functions_return.dart.strong.expect │ │ │ │ ├── const_functions_return.dart.strong.transformed.expect │ │ │ │ ├── const_functions_return.dart.textual_outline.expect │ │ │ │ ├── const_functions_return.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_return.dart.weak.expect │ │ │ │ ├── const_functions_return.dart.weak.modular.expect │ │ │ │ ├── const_functions_return.dart.weak.outline.expect │ │ │ │ ├── const_functions_return.dart.weak.transformed.expect │ │ │ │ ├── const_functions_simple_invocations.dart │ │ │ │ ├── const_functions_simple_invocations.dart.strong.expect │ │ │ │ ├── const_functions_simple_invocations.dart.strong.transformed.expect │ │ │ │ ├── const_functions_simple_invocations.dart.textual_outline.expect │ │ │ │ ├── const_functions_simple_invocations.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_simple_invocations.dart.weak.expect │ │ │ │ ├── const_functions_simple_invocations.dart.weak.modular.expect │ │ │ │ ├── const_functions_simple_invocations.dart.weak.outline.expect │ │ │ │ ├── const_functions_simple_invocations.dart.weak.transformed.expect │ │ │ │ ├── const_functions_string.dart │ │ │ │ ├── const_functions_string.dart.strong.expect │ │ │ │ ├── const_functions_string.dart.strong.transformed.expect │ │ │ │ ├── const_functions_string.dart.textual_outline.expect │ │ │ │ ├── const_functions_string.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_string.dart.weak.expect │ │ │ │ ├── const_functions_string.dart.weak.modular.expect │ │ │ │ ├── const_functions_string.dart.weak.outline.expect │ │ │ │ ├── const_functions_string.dart.weak.transformed.expect │ │ │ │ ├── const_functions_string_error.dart │ │ │ │ ├── const_functions_string_error.dart.strong.expect │ │ │ │ ├── const_functions_string_error.dart.strong.transformed.expect │ │ │ │ ├── const_functions_string_error.dart.textual_outline.expect │ │ │ │ ├── const_functions_string_error.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_string_error.dart.weak.expect │ │ │ │ ├── const_functions_string_error.dart.weak.modular.expect │ │ │ │ ├── const_functions_string_error.dart.weak.outline.expect │ │ │ │ ├── const_functions_string_error.dart.weak.transformed.expect │ │ │ │ ├── const_functions_switch_statements.dart │ │ │ │ ├── const_functions_switch_statements.dart.strong.expect │ │ │ │ ├── const_functions_switch_statements.dart.strong.transformed.expect │ │ │ │ ├── const_functions_switch_statements.dart.textual_outline.expect │ │ │ │ ├── const_functions_switch_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_switch_statements.dart.weak.expect │ │ │ │ ├── const_functions_switch_statements.dart.weak.modular.expect │ │ │ │ ├── const_functions_switch_statements.dart.weak.outline.expect │ │ │ │ ├── const_functions_switch_statements.dart.weak.transformed.expect │ │ │ │ ├── const_functions_try_catch_finally.dart │ │ │ │ ├── const_functions_try_catch_finally.dart.strong.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.strong.transformed.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.textual_outline.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.weak.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.weak.modular.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.weak.outline.expect │ │ │ │ ├── const_functions_try_catch_finally.dart.weak.transformed.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart │ │ │ │ ├── const_functions_try_catch_finally_error.dart.strong.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.strong.transformed.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.textual_outline.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.weak.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.weak.modular.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.weak.outline.expect │ │ │ │ ├── const_functions_try_catch_finally_error.dart.weak.transformed.expect │ │ │ │ ├── const_functions_variable_assignments.dart │ │ │ │ ├── const_functions_variable_assignments.dart.strong.expect │ │ │ │ ├── const_functions_variable_assignments.dart.strong.transformed.expect │ │ │ │ ├── const_functions_variable_assignments.dart.textual_outline.expect │ │ │ │ ├── const_functions_variable_assignments.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_variable_assignments.dart.weak.expect │ │ │ │ ├── const_functions_variable_assignments.dart.weak.modular.expect │ │ │ │ ├── const_functions_variable_assignments.dart.weak.outline.expect │ │ │ │ ├── const_functions_variable_assignments.dart.weak.transformed.expect │ │ │ │ ├── const_functions_variable_declarations.dart │ │ │ │ ├── const_functions_variable_declarations.dart.strong.expect │ │ │ │ ├── const_functions_variable_declarations.dart.strong.transformed.expect │ │ │ │ ├── const_functions_variable_declarations.dart.textual_outline.expect │ │ │ │ ├── const_functions_variable_declarations.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_variable_declarations.dart.weak.expect │ │ │ │ ├── const_functions_variable_declarations.dart.weak.modular.expect │ │ │ │ ├── const_functions_variable_declarations.dart.weak.outline.expect │ │ │ │ ├── const_functions_variable_declarations.dart.weak.transformed.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart │ │ │ │ ├── const_functions_variable_declarations_error.dart.strong.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.strong.transformed.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.textual_outline.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.weak.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.weak.modular.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.weak.outline.expect │ │ │ │ ├── const_functions_variable_declarations_error.dart.weak.transformed.expect │ │ │ │ ├── const_functions_while_statements.dart │ │ │ │ ├── const_functions_while_statements.dart.strong.expect │ │ │ │ ├── const_functions_while_statements.dart.strong.transformed.expect │ │ │ │ ├── const_functions_while_statements.dart.textual_outline.expect │ │ │ │ ├── const_functions_while_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── const_functions_while_statements.dart.weak.expect │ │ │ │ ├── const_functions_while_statements.dart.weak.modular.expect │ │ │ │ ├── const_functions_while_statements.dart.weak.outline.expect │ │ │ │ ├── const_functions_while_statements.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── non_function_invocation.dart │ │ │ │ ├── non_function_invocation.dart.strong.expect │ │ │ │ ├── non_function_invocation.dart.strong.transformed.expect │ │ │ │ ├── non_function_invocation.dart.textual_outline.expect │ │ │ │ ├── non_function_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── non_function_invocation.dart.weak.expect │ │ │ │ ├── non_function_invocation.dart.weak.modular.expect │ │ │ │ ├── non_function_invocation.dart.weak.outline.expect │ │ │ │ └── non_function_invocation.dart.weak.transformed.expect │ │ │ ├── constructor_tearoffs │ │ │ │ ├── abstract_class_constructor_tear_off.dart │ │ │ │ ├── abstract_class_constructor_tear_off.dart.strong.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.strong.transformed.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.textual_outline.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.weak.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.weak.modular.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.weak.outline.expect │ │ │ │ ├── abstract_class_constructor_tear_off.dart.weak.transformed.expect │ │ │ │ ├── bound_checks_in_type_literals.dart │ │ │ │ ├── bound_checks_in_type_literals.dart.strong.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.strong.transformed.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.textual_outline.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.weak.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.weak.modular.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.weak.outline.expect │ │ │ │ ├── bound_checks_in_type_literals.dart.weak.transformed.expect │ │ │ │ ├── call_instantiation.dart │ │ │ │ ├── call_instantiation.dart.strong.expect │ │ │ │ ├── call_instantiation.dart.strong.transformed.expect │ │ │ │ ├── call_instantiation.dart.textual_outline.expect │ │ │ │ ├── call_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── call_instantiation.dart.weak.expect │ │ │ │ ├── call_instantiation.dart.weak.modular.expect │ │ │ │ ├── call_instantiation.dart.weak.outline.expect │ │ │ │ ├── call_instantiation.dart.weak.transformed.expect │ │ │ │ ├── callable_instantiation.dart │ │ │ │ ├── callable_instantiation.dart.strong.expect │ │ │ │ ├── callable_instantiation.dart.strong.transformed.expect │ │ │ │ ├── callable_instantiation.dart.textual_outline.expect │ │ │ │ ├── callable_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── callable_instantiation.dart.weak.expect │ │ │ │ ├── callable_instantiation.dart.weak.modular.expect │ │ │ │ ├── callable_instantiation.dart.weak.outline.expect │ │ │ │ ├── callable_instantiation.dart.weak.transformed.expect │ │ │ │ ├── const_tear_off.dart │ │ │ │ ├── const_tear_off.dart.strong.expect │ │ │ │ ├── const_tear_off.dart.strong.transformed.expect │ │ │ │ ├── const_tear_off.dart.textual_outline.expect │ │ │ │ ├── const_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── const_tear_off.dart.weak.expect │ │ │ │ ├── const_tear_off.dart.weak.modular.expect │ │ │ │ ├── const_tear_off.dart.weak.outline.expect │ │ │ │ ├── const_tear_off.dart.weak.transformed.expect │ │ │ │ ├── duplicate_instantiation.dart │ │ │ │ ├── duplicate_instantiation.dart.strong.expect │ │ │ │ ├── duplicate_instantiation.dart.strong.transformed.expect │ │ │ │ ├── duplicate_instantiation.dart.textual_outline.expect │ │ │ │ ├── duplicate_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.modular.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.outline.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.transformed.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart │ │ │ │ ├── dynamic_explicit_instantiation.dart.strong.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.strong.transformed.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.textual_outline.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.weak.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.weak.modular.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.weak.outline.expect │ │ │ │ ├── dynamic_explicit_instantiation.dart.weak.transformed.expect │ │ │ │ ├── explicit_instantiation.dart │ │ │ │ ├── explicit_instantiation.dart.strong.expect │ │ │ │ ├── explicit_instantiation.dart.strong.transformed.expect │ │ │ │ ├── explicit_instantiation.dart.textual_outline.expect │ │ │ │ ├── explicit_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_instantiation.dart.weak.expect │ │ │ │ ├── explicit_instantiation.dart.weak.modular.expect │ │ │ │ ├── explicit_instantiation.dart.weak.outline.expect │ │ │ │ ├── explicit_instantiation.dart.weak.transformed.expect │ │ │ │ ├── explicit_instantiation_errors.dart │ │ │ │ ├── explicit_instantiation_errors.dart.strong.expect │ │ │ │ ├── explicit_instantiation_errors.dart.strong.transformed.expect │ │ │ │ ├── explicit_instantiation_errors.dart.textual_outline.expect │ │ │ │ ├── explicit_instantiation_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_instantiation_errors.dart.weak.expect │ │ │ │ ├── explicit_instantiation_errors.dart.weak.modular.expect │ │ │ │ ├── explicit_instantiation_errors.dart.weak.outline.expect │ │ │ │ ├── explicit_instantiation_errors.dart.weak.transformed.expect │ │ │ │ ├── explicit_new_as_unnamed.dart │ │ │ │ ├── explicit_new_as_unnamed.dart.strong.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.strong.transformed.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.textual_outline.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.weak.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.weak.modular.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.weak.outline.expect │ │ │ │ ├── explicit_new_as_unnamed.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── generic_tearoff_with_context.dart │ │ │ │ ├── generic_tearoff_with_context.dart.strong.expect │ │ │ │ ├── generic_tearoff_with_context.dart.strong.transformed.expect │ │ │ │ ├── generic_tearoff_with_context.dart.textual_outline.expect │ │ │ │ ├── generic_tearoff_with_context.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_tearoff_with_context.dart.weak.expect │ │ │ │ ├── generic_tearoff_with_context.dart.weak.modular.expect │ │ │ │ ├── generic_tearoff_with_context.dart.weak.outline.expect │ │ │ │ ├── generic_tearoff_with_context.dart.weak.transformed.expect │ │ │ │ ├── generic_tearoff_without_context.dart │ │ │ │ ├── generic_tearoff_without_context.dart.strong.expect │ │ │ │ ├── generic_tearoff_without_context.dart.strong.transformed.expect │ │ │ │ ├── generic_tearoff_without_context.dart.textual_outline.expect │ │ │ │ ├── generic_tearoff_without_context.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_tearoff_without_context.dart.weak.expect │ │ │ │ ├── generic_tearoff_without_context.dart.weak.modular.expect │ │ │ │ ├── generic_tearoff_without_context.dart.weak.outline.expect │ │ │ │ ├── generic_tearoff_without_context.dart.weak.transformed.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.strong.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.strong.transformed.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.textual_outline.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.textual_outline_modelled.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.modular.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.outline.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.transformed.expect │ │ │ │ ├── implicit_instantiation.dart │ │ │ │ ├── implicit_instantiation.dart.strong.expect │ │ │ │ ├── implicit_instantiation.dart.strong.transformed.expect │ │ │ │ ├── implicit_instantiation.dart.textual_outline.expect │ │ │ │ ├── implicit_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_instantiation.dart.weak.expect │ │ │ │ ├── implicit_instantiation.dart.weak.modular.expect │ │ │ │ ├── implicit_instantiation.dart.weak.outline.expect │ │ │ │ ├── implicit_instantiation.dart.weak.transformed.expect │ │ │ │ ├── implicit_instantiation_errors.dart │ │ │ │ ├── implicit_instantiation_errors.dart.strong.expect │ │ │ │ ├── implicit_instantiation_errors.dart.strong.transformed.expect │ │ │ │ ├── implicit_instantiation_errors.dart.textual_outline.expect │ │ │ │ ├── implicit_instantiation_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_instantiation_errors.dart.weak.expect │ │ │ │ ├── implicit_instantiation_errors.dart.weak.modular.expect │ │ │ │ ├── implicit_instantiation_errors.dart.weak.outline.expect │ │ │ │ ├── implicit_instantiation_errors.dart.weak.transformed.expect │ │ │ │ ├── inferred_constructor_tear_off.dart │ │ │ │ ├── inferred_constructor_tear_off.dart.strong.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.strong.transformed.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.textual_outline.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.modular.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.outline.expect │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.transformed.expect │ │ │ │ ├── inferred_non_proper_rename.dart │ │ │ │ ├── inferred_non_proper_rename.dart.strong.expect │ │ │ │ ├── inferred_non_proper_rename.dart.strong.transformed.expect │ │ │ │ ├── inferred_non_proper_rename.dart.textual_outline.expect │ │ │ │ ├── inferred_non_proper_rename.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_non_proper_rename.dart.weak.expect │ │ │ │ ├── inferred_non_proper_rename.dart.weak.modular.expect │ │ │ │ ├── inferred_non_proper_rename.dart.weak.outline.expect │ │ │ │ ├── inferred_non_proper_rename.dart.weak.transformed.expect │ │ │ │ ├── instantiation.dart │ │ │ │ ├── instantiation.dart.strong.expect │ │ │ │ ├── instantiation.dart.strong.transformed.expect │ │ │ │ ├── instantiation.dart.textual_outline.expect │ │ │ │ ├── instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiation.dart.weak.expect │ │ │ │ ├── instantiation.dart.weak.modular.expect │ │ │ │ ├── instantiation.dart.weak.outline.expect │ │ │ │ ├── instantiation.dart.weak.transformed.expect │ │ │ │ ├── issue46133.dart │ │ │ │ ├── issue46133.dart.strong.expect │ │ │ │ ├── issue46133.dart.strong.transformed.expect │ │ │ │ ├── issue46133.dart.textual_outline.expect │ │ │ │ ├── issue46133.dart.weak.expect │ │ │ │ ├── issue46133.dart.weak.modular.expect │ │ │ │ ├── issue46133.dart.weak.outline.expect │ │ │ │ ├── issue46133.dart.weak.transformed.expect │ │ │ │ ├── issue46719.dart │ │ │ │ ├── issue46719.dart.strong.expect │ │ │ │ ├── issue46719.dart.strong.transformed.expect │ │ │ │ ├── issue46719.dart.textual_outline.expect │ │ │ │ ├── issue46719.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46719.dart.weak.expect │ │ │ │ ├── issue46719.dart.weak.modular.expect │ │ │ │ ├── issue46719.dart.weak.outline.expect │ │ │ │ ├── issue46719.dart.weak.transformed.expect │ │ │ │ ├── issue46887.dart │ │ │ │ ├── issue46887.dart.strong.expect │ │ │ │ ├── issue46887.dart.strong.transformed.expect │ │ │ │ ├── issue46887.dart.textual_outline.expect │ │ │ │ ├── issue46887.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46887.dart.weak.expect │ │ │ │ ├── issue46887.dart.weak.modular.expect │ │ │ │ ├── issue46887.dart.weak.outline.expect │ │ │ │ ├── issue46887.dart.weak.transformed.expect │ │ │ │ ├── issue46890.dart │ │ │ │ ├── issue46890.dart.strong.expect │ │ │ │ ├── issue46890.dart.strong.transformed.expect │ │ │ │ ├── issue46890.dart.textual_outline.expect │ │ │ │ ├── issue46890.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46890.dart.weak.expect │ │ │ │ ├── issue46890.dart.weak.modular.expect │ │ │ │ ├── issue46890.dart.weak.outline.expect │ │ │ │ ├── issue46890.dart.weak.transformed.expect │ │ │ │ ├── issue46925.dart │ │ │ │ ├── issue46925.dart.strong.expect │ │ │ │ ├── issue46925.dart.strong.transformed.expect │ │ │ │ ├── issue46925.dart.textual_outline.expect │ │ │ │ ├── issue46925.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46925.dart.weak.expect │ │ │ │ ├── issue46925.dart.weak.modular.expect │ │ │ │ ├── issue46925.dart.weak.outline.expect │ │ │ │ ├── issue46925.dart.weak.transformed.expect │ │ │ │ ├── issue47069.dart │ │ │ │ ├── issue47069.dart.strong.expect │ │ │ │ ├── issue47069.dart.strong.transformed.expect │ │ │ │ ├── issue47069.dart.textual_outline.expect │ │ │ │ ├── issue47069.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47069.dart.weak.expect │ │ │ │ ├── issue47069.dart.weak.modular.expect │ │ │ │ ├── issue47069.dart.weak.outline.expect │ │ │ │ ├── issue47069.dart.weak.transformed.expect │ │ │ │ ├── issue47071.dart │ │ │ │ ├── issue47071.dart.strong.expect │ │ │ │ ├── issue47071.dart.strong.transformed.expect │ │ │ │ ├── issue47071.dart.textual_outline.expect │ │ │ │ ├── issue47071.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47071.dart.weak.expect │ │ │ │ ├── issue47071.dart.weak.modular.expect │ │ │ │ ├── issue47071.dart.weak.outline.expect │ │ │ │ ├── issue47071.dart.weak.transformed.expect │ │ │ │ ├── issue47075.dart │ │ │ │ ├── issue47075.dart.strong.expect │ │ │ │ ├── issue47075.dart.strong.transformed.expect │ │ │ │ ├── issue47075.dart.textual_outline.expect │ │ │ │ ├── issue47075.dart.weak.expect │ │ │ │ ├── issue47075.dart.weak.modular.expect │ │ │ │ ├── issue47075.dart.weak.outline.expect │ │ │ │ ├── issue47075.dart.weak.transformed.expect │ │ │ │ ├── issue47079.dart │ │ │ │ ├── issue47079.dart.strong.expect │ │ │ │ ├── issue47079.dart.strong.transformed.expect │ │ │ │ ├── issue47079.dart.textual_outline.expect │ │ │ │ ├── issue47079.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47079.dart.weak.expect │ │ │ │ ├── issue47079.dart.weak.modular.expect │ │ │ │ ├── issue47079.dart.weak.outline.expect │ │ │ │ ├── issue47079.dart.weak.transformed.expect │ │ │ │ ├── issue47154a.dart │ │ │ │ ├── issue47154a.dart.strong.expect │ │ │ │ ├── issue47154a.dart.strong.transformed.expect │ │ │ │ ├── issue47154a.dart.textual_outline.expect │ │ │ │ ├── issue47154a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47154a.dart.weak.expect │ │ │ │ ├── issue47154a.dart.weak.modular.expect │ │ │ │ ├── issue47154a.dart.weak.outline.expect │ │ │ │ ├── issue47154a.dart.weak.transformed.expect │ │ │ │ ├── issue47154b.dart │ │ │ │ ├── issue47154b.dart.strong.expect │ │ │ │ ├── issue47154b.dart.strong.transformed.expect │ │ │ │ ├── issue47154b.dart.textual_outline.expect │ │ │ │ ├── issue47154b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47154b.dart.weak.expect │ │ │ │ ├── issue47154b.dart.weak.modular.expect │ │ │ │ ├── issue47154b.dart.weak.outline.expect │ │ │ │ ├── issue47154b.dart.weak.transformed.expect │ │ │ │ ├── issue47154c.dart │ │ │ │ ├── issue47154c.dart.strong.expect │ │ │ │ ├── issue47154c.dart.strong.transformed.expect │ │ │ │ ├── issue47154c.dart.textual_outline.expect │ │ │ │ ├── issue47154c.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47154c.dart.weak.expect │ │ │ │ ├── issue47154c.dart.weak.modular.expect │ │ │ │ ├── issue47154c.dart.weak.outline.expect │ │ │ │ ├── issue47154c.dart.weak.transformed.expect │ │ │ │ ├── issue47462.dart │ │ │ │ ├── issue47462.dart.strong.expect │ │ │ │ ├── issue47462.dart.strong.transformed.expect │ │ │ │ ├── issue47462.dart.textual_outline.expect │ │ │ │ ├── issue47462.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47462.dart.weak.expect │ │ │ │ ├── issue47462.dart.weak.modular.expect │ │ │ │ ├── issue47462.dart.weak.outline.expect │ │ │ │ ├── issue47462.dart.weak.transformed.expect │ │ │ │ ├── lowering │ │ │ │ │ ├── const_redirect.dart │ │ │ │ │ ├── const_redirect.dart.strong.expect │ │ │ │ │ ├── const_redirect.dart.strong.transformed.expect │ │ │ │ │ ├── const_redirect.dart.textual_outline.expect │ │ │ │ │ ├── const_redirect.dart.textual_outline_modelled.expect │ │ │ │ │ ├── const_redirect.dart.weak.expect │ │ │ │ │ ├── const_redirect.dart.weak.modular.expect │ │ │ │ │ ├── const_redirect.dart.weak.outline.expect │ │ │ │ │ ├── const_redirect.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_tear_off.dart │ │ │ │ │ ├── constructor_tear_off.dart.strong.expect │ │ │ │ │ ├── constructor_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── constructor_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── constructor_tear_off.dart.weak.expect │ │ │ │ │ ├── constructor_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── constructor_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── constructor_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart │ │ │ │ │ ├── constructor_tear_off_default_values.dart.strong.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.textual_outline.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.textual_outline_modelled.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.weak.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.weak.modular.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.weak.outline.expect │ │ │ │ │ ├── constructor_tear_off_default_values.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_tear_off_inferred_types.dart.weak.expect │ │ │ │ │ ├── constructor_tear_off_inferred_types.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart │ │ │ │ │ ├── constructor_tear_off_uri.dart.strong.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.textual_outline.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.textual_outline_modelled.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.weak.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.weak.modular.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.weak.outline.expect │ │ │ │ │ ├── constructor_tear_off_uri.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_tear_off_uri_part.dart │ │ │ │ │ ├── duplicate_typedefs.dart │ │ │ │ │ ├── duplicate_typedefs.dart.strong.expect │ │ │ │ │ ├── duplicate_typedefs.dart.strong.transformed.expect │ │ │ │ │ ├── duplicate_typedefs.dart.textual_outline.expect │ │ │ │ │ ├── duplicate_typedefs.dart.textual_outline_modelled.expect │ │ │ │ │ ├── duplicate_typedefs.dart.weak.expect │ │ │ │ │ ├── duplicate_typedefs.dart.weak.modular.expect │ │ │ │ │ ├── duplicate_typedefs.dart.weak.outline.expect │ │ │ │ │ ├── duplicate_typedefs.dart.weak.transformed.expect │ │ │ │ │ ├── factory_tear_off.dart │ │ │ │ │ ├── factory_tear_off.dart.strong.expect │ │ │ │ │ ├── factory_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── factory_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── factory_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── factory_tear_off.dart.weak.expect │ │ │ │ │ ├── factory_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── factory_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── factory_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart │ │ │ │ │ ├── factory_tear_off_default_values.dart.strong.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.strong.transformed.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.textual_outline.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.textual_outline_modelled.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.weak.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.weak.modular.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.weak.outline.expect │ │ │ │ │ ├── factory_tear_off_default_values.dart.weak.transformed.expect │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── from_dill │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── generic_constructor_tear_off.dart │ │ │ │ │ ├── generic_constructor_tear_off.dart.strong.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.weak.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── generic_constructor_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── generic_factory_tear_off.dart │ │ │ │ │ ├── generic_factory_tear_off.dart.strong.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.weak.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── generic_factory_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.strong.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.weak.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── generic_redirecting_factory_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart │ │ │ │ │ ├── inferred_constructor_tear_off.dart.strong.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── inferred_constructor_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart │ │ │ │ │ ├── inferred_non_proper_rename.dart.strong.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.strong.transformed.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.textual_outline.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.textual_outline_modelled.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.weak.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.weak.modular.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.weak.outline.expect │ │ │ │ │ ├── inferred_non_proper_rename.dart.weak.transformed.expect │ │ │ │ │ ├── inferred_tear_off.dart │ │ │ │ │ ├── inferred_tear_off.dart.strong.expect │ │ │ │ │ ├── inferred_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── inferred_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── inferred_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── inferred_tear_off.dart.weak.expect │ │ │ │ │ ├── inferred_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── inferred_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── inferred_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── invalid_redirect.dart │ │ │ │ │ ├── invalid_redirect.dart.strong.expect │ │ │ │ │ ├── invalid_redirect.dart.strong.transformed.expect │ │ │ │ │ ├── invalid_redirect.dart.textual_outline.expect │ │ │ │ │ ├── invalid_redirect.dart.textual_outline_modelled.expect │ │ │ │ │ ├── invalid_redirect.dart.weak.expect │ │ │ │ │ ├── invalid_redirect.dart.weak.outline.expect │ │ │ │ │ ├── invalid_redirect.dart.weak.transformed.expect │ │ │ │ │ ├── issue47462.dart │ │ │ │ │ ├── issue47462.dart.strong.expect │ │ │ │ │ ├── issue47462.dart.strong.transformed.expect │ │ │ │ │ ├── issue47462.dart.textual_outline.expect │ │ │ │ │ ├── issue47462.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue47462.dart.weak.expect │ │ │ │ │ ├── issue47462.dart.weak.modular.expect │ │ │ │ │ ├── issue47462.dart.weak.outline.expect │ │ │ │ │ ├── issue47462.dart.weak.transformed.expect │ │ │ │ │ ├── misplaced_type_arguments.dart │ │ │ │ │ ├── misplaced_type_arguments.dart.strong.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.strong.transformed.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.textual_outline.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.weak.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.weak.modular.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.weak.outline.expect │ │ │ │ │ ├── misplaced_type_arguments.dart.weak.transformed.expect │ │ │ │ │ ├── missing_redirecting_target.dart │ │ │ │ │ ├── missing_redirecting_target.dart.strong.expect │ │ │ │ │ ├── missing_redirecting_target.dart.strong.transformed.expect │ │ │ │ │ ├── missing_redirecting_target.dart.textual_outline.expect │ │ │ │ │ ├── missing_redirecting_target.dart.textual_outline_modelled.expect │ │ │ │ │ ├── missing_redirecting_target.dart.weak.expect │ │ │ │ │ ├── missing_redirecting_target.dart.weak.modular.expect │ │ │ │ │ ├── missing_redirecting_target.dart.weak.outline.expect │ │ │ │ │ ├── missing_redirecting_target.dart.weak.transformed.expect │ │ │ │ │ ├── named_mixin_application.dart │ │ │ │ │ ├── named_mixin_application.dart.strong.expect │ │ │ │ │ ├── named_mixin_application.dart.strong.transformed.expect │ │ │ │ │ ├── named_mixin_application.dart.textual_outline.expect │ │ │ │ │ ├── named_mixin_application.dart.textual_outline_modelled.expect │ │ │ │ │ ├── named_mixin_application.dart.weak.expect │ │ │ │ │ ├── named_mixin_application.dart.weak.modular.expect │ │ │ │ │ ├── named_mixin_application.dart.weak.outline.expect │ │ │ │ │ ├── named_mixin_application.dart.weak.transformed.expect │ │ │ │ │ ├── non_class_typedefs.dart │ │ │ │ │ ├── non_class_typedefs.dart.strong.expect │ │ │ │ │ ├── non_class_typedefs.dart.strong.transformed.expect │ │ │ │ │ ├── non_class_typedefs.dart.textual_outline.expect │ │ │ │ │ ├── non_class_typedefs.dart.textual_outline_modelled.expect │ │ │ │ │ ├── non_class_typedefs.dart.weak.expect │ │ │ │ │ ├── non_class_typedefs.dart.weak.modular.expect │ │ │ │ │ ├── non_class_typedefs.dart.weak.outline.expect │ │ │ │ │ ├── non_class_typedefs.dart.weak.transformed.expect │ │ │ │ │ ├── proper_rename.dart │ │ │ │ │ ├── proper_rename.dart.strong.expect │ │ │ │ │ ├── proper_rename.dart.strong.transformed.expect │ │ │ │ │ ├── proper_rename.dart.textual_outline.expect │ │ │ │ │ ├── proper_rename.dart.textual_outline_modelled.expect │ │ │ │ │ ├── proper_rename.dart.weak.expect │ │ │ │ │ ├── proper_rename.dart.weak.modular.expect │ │ │ │ │ ├── proper_rename.dart.weak.outline.expect │ │ │ │ │ ├── proper_rename.dart.weak.transformed.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart │ │ │ │ │ ├── redirecting_factory_tear_off.dart.strong.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.outline.expect │ │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.transformed.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.strong.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.strong.transformed.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.textual_outline.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.textual_outline_modelled.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.weak.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.weak.modular.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.weak.outline.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values.dart.weak.transformed.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.strong.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.strong.transformed.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.textual_outline.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.textual_outline_modelled.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.weak.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.weak.modular.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.weak.outline.expect │ │ │ │ │ ├── redirecting_factory_tear_off_default_values_complex.dart.weak.transformed.expect │ │ │ │ │ ├── typedef_from.dart │ │ │ │ │ ├── typedef_from.dart.strong.expect │ │ │ │ │ ├── typedef_from.dart.strong.transformed.expect │ │ │ │ │ ├── typedef_from.dart.textual_outline.expect │ │ │ │ │ ├── typedef_from.dart.textual_outline_modelled.expect │ │ │ │ │ ├── typedef_from.dart.weak.expect │ │ │ │ │ ├── typedef_from.dart.weak.modular.expect │ │ │ │ │ ├── typedef_from.dart.weak.outline.expect │ │ │ │ │ ├── typedef_from.dart.weak.transformed.expect │ │ │ │ │ ├── typedef_from_dill │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── typedef_from_lib.dart │ │ │ │ │ ├── typedef_from_part.dart │ │ │ │ │ ├── typedef_identical.dart │ │ │ │ │ ├── typedef_identical.dart.strong.expect │ │ │ │ │ ├── typedef_identical.dart.strong.transformed.expect │ │ │ │ │ ├── typedef_identical.dart.textual_outline.expect │ │ │ │ │ ├── typedef_identical.dart.textual_outline_modelled.expect │ │ │ │ │ ├── typedef_identical.dart.weak.expect │ │ │ │ │ ├── typedef_identical.dart.weak.modular.expect │ │ │ │ │ ├── typedef_identical.dart.weak.outline.expect │ │ │ │ │ ├── typedef_identical.dart.weak.transformed.expect │ │ │ │ │ ├── typedef_identical_lib.dart │ │ │ │ │ ├── typedef_tear_off.dart │ │ │ │ │ ├── typedef_tear_off.dart.strong.expect │ │ │ │ │ ├── typedef_tear_off.dart.strong.transformed.expect │ │ │ │ │ ├── typedef_tear_off.dart.textual_outline.expect │ │ │ │ │ ├── typedef_tear_off.dart.textual_outline_modelled.expect │ │ │ │ │ ├── typedef_tear_off.dart.weak.expect │ │ │ │ │ ├── typedef_tear_off.dart.weak.modular.expect │ │ │ │ │ ├── typedef_tear_off.dart.weak.outline.expect │ │ │ │ │ └── typedef_tear_off.dart.weak.transformed.expect │ │ │ │ ├── named_mixin_application.dart │ │ │ │ ├── named_mixin_application.dart.strong.expect │ │ │ │ ├── named_mixin_application.dart.strong.transformed.expect │ │ │ │ ├── named_mixin_application.dart.textual_outline.expect │ │ │ │ ├── named_mixin_application.dart.textual_outline_modelled.expect │ │ │ │ ├── named_mixin_application.dart.weak.expect │ │ │ │ ├── named_mixin_application.dart.weak.modular.expect │ │ │ │ ├── named_mixin_application.dart.weak.outline.expect │ │ │ │ ├── named_mixin_application.dart.weak.transformed.expect │ │ │ │ ├── new_as_selector.dart │ │ │ │ ├── new_as_selector.dart.strong.expect │ │ │ │ ├── new_as_selector.dart.strong.transformed.expect │ │ │ │ ├── new_as_selector.dart.textual_outline.expect │ │ │ │ ├── new_as_selector.dart.weak.expect │ │ │ │ ├── new_as_selector.dart.weak.modular.expect │ │ │ │ ├── new_as_selector.dart.weak.outline.expect │ │ │ │ ├── new_as_selector.dart.weak.transformed.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart │ │ │ │ ├── nongeneric_tearoff_with_context.dart.strong.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.strong.transformed.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.textual_outline.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.textual_outline_modelled.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.weak.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.weak.modular.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.weak.outline.expect │ │ │ │ ├── nongeneric_tearoff_with_context.dart.weak.transformed.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart │ │ │ │ ├── nongeneric_tearoff_without_context.dart.strong.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.strong.transformed.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.textual_outline.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.textual_outline_modelled.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.weak.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.weak.modular.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.weak.outline.expect │ │ │ │ ├── nongeneric_tearoff_without_context.dart.weak.transformed.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart │ │ │ │ ├── not_unresolved_constructor_invocation.dart.strong.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.strong.transformed.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.textual_outline.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.weak.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.weak.modular.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.weak.outline.expect │ │ │ │ ├── not_unresolved_constructor_invocation.dart.weak.transformed.expect │ │ │ │ ├── redirecting_constructors.dart │ │ │ │ ├── redirecting_constructors.dart.strong.expect │ │ │ │ ├── redirecting_constructors.dart.strong.transformed.expect │ │ │ │ ├── redirecting_constructors.dart.textual_outline.expect │ │ │ │ ├── redirecting_constructors.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_constructors.dart.weak.expect │ │ │ │ ├── redirecting_constructors.dart.weak.modular.expect │ │ │ │ ├── redirecting_constructors.dart.weak.outline.expect │ │ │ │ ├── redirecting_constructors.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_tear_off.dart │ │ │ │ ├── redirecting_factory_tear_off.dart.strong.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_tear_off.dart.weak.transformed.expect │ │ │ │ ├── simple_instantiated_type_literals.dart │ │ │ │ ├── simple_instantiated_type_literals.dart.strong.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.strong.transformed.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.textual_outline.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.weak.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.weak.modular.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.weak.outline.expect │ │ │ │ ├── simple_instantiated_type_literals.dart.weak.transformed.expect │ │ │ │ ├── simple_proper_rename_identity.dart │ │ │ │ ├── simple_proper_rename_identity.dart.strong.expect │ │ │ │ ├── simple_proper_rename_identity.dart.strong.transformed.expect │ │ │ │ ├── simple_proper_rename_identity.dart.textual_outline.expect │ │ │ │ ├── simple_proper_rename_identity.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_proper_rename_identity.dart.weak.expect │ │ │ │ ├── simple_proper_rename_identity.dart.weak.modular.expect │ │ │ │ ├── simple_proper_rename_identity.dart.weak.outline.expect │ │ │ │ ├── simple_proper_rename_identity.dart.weak.transformed.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.strong.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.strong.transformed.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.textual_outline.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.textual_outline_modelled.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.weak.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.weak.modular.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.weak.outline.expect │ │ │ │ ├── static_tearoff_from_instantiated_class.dart.weak.transformed.expect │ │ │ │ ├── typedef_tearoffs.dart │ │ │ │ ├── typedef_tearoffs.dart.strong.expect │ │ │ │ ├── typedef_tearoffs.dart.strong.transformed.expect │ │ │ │ ├── typedef_tearoffs.dart.textual_outline.expect │ │ │ │ ├── typedef_tearoffs.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_tearoffs.dart.weak.expect │ │ │ │ ├── typedef_tearoffs.dart.weak.modular.expect │ │ │ │ ├── typedef_tearoffs.dart.weak.outline.expect │ │ │ │ ├── typedef_tearoffs.dart.weak.transformed.expect │ │ │ │ ├── unnamed_constructor.dart │ │ │ │ ├── unnamed_constructor.dart.strong.expect │ │ │ │ ├── unnamed_constructor.dart.strong.transformed.expect │ │ │ │ ├── unnamed_constructor.dart.textual_outline.expect │ │ │ │ ├── unnamed_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── unnamed_constructor.dart.weak.expect │ │ │ │ ├── unnamed_constructor.dart.weak.modular.expect │ │ │ │ ├── unnamed_constructor.dart.weak.outline.expect │ │ │ │ ├── unnamed_constructor.dart.weak.transformed.expect │ │ │ │ ├── unresolved_constructor_invocation.dart │ │ │ │ ├── unresolved_constructor_invocation.dart.strong.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.strong.transformed.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.textual_outline.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.modular.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.outline.expect │ │ │ │ └── unresolved_constructor_invocation.dart.weak.transformed.expect │ │ │ ├── dart2js │ │ │ │ ├── async_lowering │ │ │ │ │ ├── collapse_return_await.dart │ │ │ │ │ ├── collapse_return_await.dart.strong.expect │ │ │ │ │ ├── collapse_return_await.dart.strong.transformed.expect │ │ │ │ │ ├── collapse_return_await.dart.textual_outline.expect │ │ │ │ │ ├── collapse_return_await.dart.textual_outline_modelled.expect │ │ │ │ │ ├── collapse_return_await.dart.weak.expect │ │ │ │ │ ├── collapse_return_await.dart.weak.modular.expect │ │ │ │ │ ├── collapse_return_await.dart.weak.outline.expect │ │ │ │ │ ├── collapse_return_await.dart.weak.transformed.expect │ │ │ │ │ ├── disabled │ │ │ │ │ │ ├── basic_return.dart │ │ │ │ │ │ ├── basic_return.dart.strong.expect │ │ │ │ │ │ ├── basic_return.dart.strong.transformed.expect │ │ │ │ │ │ ├── basic_return.dart.textual_outline.expect │ │ │ │ │ │ ├── basic_return.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── basic_return.dart.weak.expect │ │ │ │ │ │ ├── basic_return.dart.weak.modular.expect │ │ │ │ │ │ ├── basic_return.dart.weak.outline.expect │ │ │ │ │ │ ├── basic_return.dart.weak.transformed.expect │ │ │ │ │ │ └── folder.options │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── no_await.dart │ │ │ │ │ ├── no_await.dart.strong.expect │ │ │ │ │ ├── no_await.dart.strong.transformed.expect │ │ │ │ │ ├── no_await.dart.textual_outline.expect │ │ │ │ │ ├── no_await.dart.textual_outline_modelled.expect │ │ │ │ │ ├── no_await.dart.weak.expect │ │ │ │ │ ├── no_await.dart.weak.modular.expect │ │ │ │ │ ├── no_await.dart.weak.outline.expect │ │ │ │ │ ├── no_await.dart.weak.transformed.expect │ │ │ │ │ ├── no_transform.dart │ │ │ │ │ ├── no_transform.dart.strong.expect │ │ │ │ │ ├── no_transform.dart.strong.transformed.expect │ │ │ │ │ ├── no_transform.dart.textual_outline.expect │ │ │ │ │ ├── no_transform.dart.textual_outline_modelled.expect │ │ │ │ │ ├── no_transform.dart.weak.expect │ │ │ │ │ ├── no_transform.dart.weak.modular.expect │ │ │ │ │ ├── no_transform.dart.weak.outline.expect │ │ │ │ │ └── no_transform.dart.weak.transformed.expect │ │ │ │ ├── conditional_import.dart │ │ │ │ ├── conditional_import.dart.strong.expect │ │ │ │ ├── conditional_import.dart.strong.transformed.expect │ │ │ │ ├── conditional_import.dart.textual_outline.expect │ │ │ │ ├── conditional_import.dart.textual_outline_modelled.expect │ │ │ │ ├── conditional_import.dart.weak.expect │ │ │ │ ├── conditional_import.dart.weak.modular.expect │ │ │ │ ├── conditional_import.dart.weak.outline.expect │ │ │ │ ├── conditional_import.dart.weak.transformed.expect │ │ │ │ ├── constructor_tearoff.dart │ │ │ │ ├── constructor_tearoff.dart.strong.expect │ │ │ │ ├── constructor_tearoff.dart.strong.transformed.expect │ │ │ │ ├── constructor_tearoff.dart.textual_outline.expect │ │ │ │ ├── constructor_tearoff.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_tearoff.dart.weak.expect │ │ │ │ ├── constructor_tearoff.dart.weak.modular.expect │ │ │ │ ├── constructor_tearoff.dart.weak.outline.expect │ │ │ │ ├── constructor_tearoff.dart.weak.transformed.expect │ │ │ │ ├── flutter_issue94561 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.strong.expect │ │ │ │ │ ├── main.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── folder.options │ │ │ │ ├── generic_usage_type_variable.dart │ │ │ │ ├── generic_usage_type_variable.dart.strong.expect │ │ │ │ ├── generic_usage_type_variable.dart.strong.transformed.expect │ │ │ │ ├── generic_usage_type_variable.dart.textual_outline.expect │ │ │ │ ├── generic_usage_type_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_usage_type_variable.dart.weak.expect │ │ │ │ ├── generic_usage_type_variable.dart.weak.modular.expect │ │ │ │ ├── generic_usage_type_variable.dart.weak.outline.expect │ │ │ │ ├── generic_usage_type_variable.dart.weak.transformed.expect │ │ │ │ ├── inline_class │ │ │ │ │ ├── external.dart │ │ │ │ │ ├── external.dart.strong.expect │ │ │ │ │ ├── external.dart.strong.transformed.expect │ │ │ │ │ ├── external.dart.textual_outline.expect │ │ │ │ │ ├── external.dart.textual_outline_modelled.expect │ │ │ │ │ ├── external.dart.weak.expect │ │ │ │ │ ├── external.dart.weak.modular.expect │ │ │ │ │ ├── external.dart.weak.outline.expect │ │ │ │ │ ├── external.dart.weak.transformed.expect │ │ │ │ │ └── folder.options │ │ │ │ ├── instance_getter_invocation.dart │ │ │ │ ├── instance_getter_invocation.dart.strong.expect │ │ │ │ ├── instance_getter_invocation.dart.strong.transformed.expect │ │ │ │ ├── instance_getter_invocation.dart.textual_outline.expect │ │ │ │ ├── instance_getter_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.modular.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.outline.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.transformed.expect │ │ │ │ ├── issue47916.dart │ │ │ │ ├── issue47916.dart.strong.expect │ │ │ │ ├── issue47916.dart.strong.transformed.expect │ │ │ │ ├── issue47916.dart.textual_outline.expect │ │ │ │ ├── issue47916.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47916.dart.weak.expect │ │ │ │ ├── issue47916.dart.weak.modular.expect │ │ │ │ ├── issue47916.dart.weak.outline.expect │ │ │ │ ├── issue47916.dart.weak.transformed.expect │ │ │ │ ├── issue47916b.dart │ │ │ │ ├── issue47916b.dart.strong.expect │ │ │ │ ├── issue47916b.dart.strong.transformed.expect │ │ │ │ ├── issue47916b.dart.textual_outline.expect │ │ │ │ ├── issue47916b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47916b.dart.weak.expect │ │ │ │ ├── issue47916b.dart.weak.modular.expect │ │ │ │ ├── issue47916b.dart.weak.outline.expect │ │ │ │ ├── issue47916b.dart.weak.transformed.expect │ │ │ │ ├── issue47916c.dart │ │ │ │ ├── issue47916c.dart.strong.expect │ │ │ │ ├── issue47916c.dart.strong.transformed.expect │ │ │ │ ├── issue47916c.dart.textual_outline.expect │ │ │ │ ├── issue47916c.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47916c.dart.weak.expect │ │ │ │ ├── issue47916c.dart.weak.modular.expect │ │ │ │ ├── issue47916c.dart.weak.outline.expect │ │ │ │ ├── issue47916c.dart.weak.transformed.expect │ │ │ │ ├── issue47916d.dart │ │ │ │ ├── issue47916d.dart.strong.expect │ │ │ │ ├── issue47916d.dart.strong.transformed.expect │ │ │ │ ├── issue47916d.dart.textual_outline.expect │ │ │ │ ├── issue47916d.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47916d.dart.weak.expect │ │ │ │ ├── issue47916d.dart.weak.modular.expect │ │ │ │ ├── issue47916d.dart.weak.outline.expect │ │ │ │ ├── issue47916d.dart.weak.transformed.expect │ │ │ │ ├── issue47916e.dart │ │ │ │ ├── issue47916e.dart.strong.expect │ │ │ │ ├── issue47916e.dart.strong.transformed.expect │ │ │ │ ├── issue47916e.dart.textual_outline.expect │ │ │ │ ├── issue47916e.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47916e.dart.weak.expect │ │ │ │ ├── issue47916e.dart.weak.modular.expect │ │ │ │ ├── issue47916e.dart.weak.outline.expect │ │ │ │ ├── issue47916e.dart.weak.transformed.expect │ │ │ │ ├── issue47916f.dart │ │ │ │ ├── issue47916f.dart.strong.expect │ │ │ │ ├── issue47916f.dart.strong.transformed.expect │ │ │ │ ├── issue47916f.dart.textual_outline.expect │ │ │ │ ├── issue47916f.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47916f.dart.weak.expect │ │ │ │ ├── issue47916f.dart.weak.modular.expect │ │ │ │ ├── issue47916f.dart.weak.outline.expect │ │ │ │ ├── issue47916f.dart.weak.transformed.expect │ │ │ │ ├── issue48304.dart │ │ │ │ ├── issue48304.dart.strong.expect │ │ │ │ ├── issue48304.dart.strong.transformed.expect │ │ │ │ ├── issue48304.dart.textual_outline.expect │ │ │ │ ├── issue48304.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48304.dart.weak.expect │ │ │ │ ├── issue48304.dart.weak.modular.expect │ │ │ │ ├── issue48304.dart.weak.outline.expect │ │ │ │ ├── issue48304.dart.weak.transformed.expect │ │ │ │ ├── issue48776.dart │ │ │ │ ├── issue48776.dart.strong.expect │ │ │ │ ├── issue48776.dart.strong.transformed.expect │ │ │ │ ├── issue48776.dart.textual_outline.expect │ │ │ │ ├── issue48776.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48776.dart.weak.expect │ │ │ │ ├── issue48776.dart.weak.modular.expect │ │ │ │ ├── issue48776.dart.weak.outline.expect │ │ │ │ ├── issue48776.dart.weak.transformed.expect │ │ │ │ ├── issue49198.dart │ │ │ │ ├── issue49198.dart.strong.expect │ │ │ │ ├── issue49198.dart.strong.transformed.expect │ │ │ │ ├── issue49198.dart.textual_outline.expect │ │ │ │ ├── issue49198.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49198.dart.weak.expect │ │ │ │ ├── issue49198.dart.weak.modular.expect │ │ │ │ ├── issue49198.dart.weak.outline.expect │ │ │ │ ├── issue49198.dart.weak.transformed.expect │ │ │ │ ├── issue51823.dart │ │ │ │ ├── issue51823.dart.strong.expect │ │ │ │ ├── issue51823.dart.strong.transformed.expect │ │ │ │ ├── issue51823.dart.textual_outline.expect │ │ │ │ ├── issue51823.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51823.dart.weak.expect │ │ │ │ ├── issue51823.dart.weak.modular.expect │ │ │ │ ├── issue51823.dart.weak.outline.expect │ │ │ │ ├── issue51823.dart.weak.transformed.expect │ │ │ │ ├── issue51823_lib.dart │ │ │ │ ├── late_fields.dart │ │ │ │ ├── late_fields.dart.strong.expect │ │ │ │ ├── late_fields.dart.strong.transformed.expect │ │ │ │ ├── late_fields.dart.textual_outline.expect │ │ │ │ ├── late_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── late_fields.dart.weak.expect │ │ │ │ ├── late_fields.dart.weak.modular.expect │ │ │ │ ├── late_fields.dart.weak.outline.expect │ │ │ │ ├── late_fields.dart.weak.transformed.expect │ │ │ │ ├── late_fields_with_annotation.dart │ │ │ │ ├── late_fields_with_annotation.dart.strong.expect │ │ │ │ ├── late_fields_with_annotation.dart.strong.transformed.expect │ │ │ │ ├── late_fields_with_annotation.dart.textual_outline.expect │ │ │ │ ├── late_fields_with_annotation.dart.textual_outline_modelled.expect │ │ │ │ ├── late_fields_with_annotation.dart.weak.expect │ │ │ │ ├── late_fields_with_annotation.dart.weak.modular.expect │ │ │ │ ├── late_fields_with_annotation.dart.weak.outline.expect │ │ │ │ ├── late_fields_with_annotation.dart.weak.transformed.expect │ │ │ │ ├── late_from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── late_locals.dart │ │ │ │ ├── late_locals.dart.strong.expect │ │ │ │ ├── late_locals.dart.strong.transformed.expect │ │ │ │ ├── late_locals.dart.textual_outline.expect │ │ │ │ ├── late_locals.dart.textual_outline_modelled.expect │ │ │ │ ├── late_locals.dart.weak.expect │ │ │ │ ├── late_locals.dart.weak.modular.expect │ │ │ │ ├── late_locals.dart.weak.outline.expect │ │ │ │ ├── late_locals.dart.weak.transformed.expect │ │ │ │ ├── late_statics.dart │ │ │ │ ├── late_statics.dart.strong.expect │ │ │ │ ├── late_statics.dart.strong.transformed.expect │ │ │ │ ├── late_statics.dart.textual_outline.expect │ │ │ │ ├── late_statics.dart.textual_outline_modelled.expect │ │ │ │ ├── late_statics.dart.weak.expect │ │ │ │ ├── late_statics.dart.weak.modular.expect │ │ │ │ ├── late_statics.dart.weak.outline.expect │ │ │ │ ├── late_statics.dart.weak.transformed.expect │ │ │ │ ├── late_statics_lib.dart │ │ │ │ ├── list_generate.dart │ │ │ │ ├── list_generate.dart.strong.expect │ │ │ │ ├── list_generate.dart.strong.transformed.expect │ │ │ │ ├── list_generate.dart.textual_outline.expect │ │ │ │ ├── list_generate.dart.textual_outline_modelled.expect │ │ │ │ ├── list_generate.dart.weak.expect │ │ │ │ ├── list_generate.dart.weak.modular.expect │ │ │ │ ├── list_generate.dart.weak.outline.expect │ │ │ │ ├── list_generate.dart.weak.transformed.expect │ │ │ │ ├── list_generate_1.dart │ │ │ │ ├── list_generate_1.dart.strong.expect │ │ │ │ ├── list_generate_1.dart.strong.transformed.expect │ │ │ │ ├── list_generate_1.dart.textual_outline.expect │ │ │ │ ├── list_generate_1.dart.textual_outline_modelled.expect │ │ │ │ ├── list_generate_1.dart.weak.expect │ │ │ │ ├── list_generate_1.dart.weak.modular.expect │ │ │ │ ├── list_generate_1.dart.weak.outline.expect │ │ │ │ ├── list_generate_1.dart.weak.transformed.expect │ │ │ │ ├── list_generate_2.dart │ │ │ │ ├── list_generate_2.dart.strong.expect │ │ │ │ ├── list_generate_2.dart.strong.transformed.expect │ │ │ │ ├── list_generate_2.dart.textual_outline.expect │ │ │ │ ├── list_generate_2.dart.textual_outline_modelled.expect │ │ │ │ ├── list_generate_2.dart.weak.expect │ │ │ │ ├── list_generate_2.dart.weak.modular.expect │ │ │ │ ├── list_generate_2.dart.weak.outline.expect │ │ │ │ ├── list_generate_2.dart.weak.transformed.expect │ │ │ │ ├── list_generate_3.dart │ │ │ │ ├── list_generate_3.dart.strong.expect │ │ │ │ ├── list_generate_3.dart.strong.transformed.expect │ │ │ │ ├── list_generate_3.dart.textual_outline.expect │ │ │ │ ├── list_generate_3.dart.textual_outline_modelled.expect │ │ │ │ ├── list_generate_3.dart.weak.expect │ │ │ │ ├── list_generate_3.dart.weak.modular.expect │ │ │ │ ├── list_generate_3.dart.weak.outline.expect │ │ │ │ ├── list_generate_3.dart.weak.transformed.expect │ │ │ │ ├── list_generate_local_function_invocation.dart │ │ │ │ ├── list_generate_local_function_invocation.dart.strong.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.strong.transformed.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.textual_outline.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.weak.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.weak.modular.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.weak.outline.expect │ │ │ │ ├── list_generate_local_function_invocation.dart.weak.transformed.expect │ │ │ │ ├── mixin_default_values │ │ │ │ │ ├── a_lib.dart │ │ │ │ │ ├── b_lib.dart │ │ │ │ │ ├── m_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── t_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── mixin_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.strong.expect │ │ │ │ │ ├── main.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── opt_in_lib.dart │ │ │ │ │ ├── opt_out_lib.dart │ │ │ │ │ ├── test.options │ │ │ │ │ └── test_lib.dart │ │ │ │ ├── mixin_super │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── native.dart │ │ │ │ ├── native.dart.strong.expect │ │ │ │ ├── native.dart.strong.transformed.expect │ │ │ │ ├── native.dart.textual_outline.expect │ │ │ │ ├── native.dart.textual_outline_modelled.expect │ │ │ │ ├── native.dart.weak.expect │ │ │ │ ├── native.dart.weak.modular.expect │ │ │ │ ├── native.dart.weak.outline.expect │ │ │ │ ├── native.dart.weak.transformed.expect │ │ │ │ ├── native_legacy.dart │ │ │ │ ├── native_legacy.dart.strong.expect │ │ │ │ ├── native_legacy.dart.strong.transformed.expect │ │ │ │ ├── native_legacy.dart.textual_outline.expect │ │ │ │ ├── native_legacy.dart.textual_outline_modelled.expect │ │ │ │ ├── native_legacy.dart.weak.expect │ │ │ │ ├── native_legacy.dart.weak.modular.expect │ │ │ │ ├── native_legacy.dart.weak.outline.expect │ │ │ │ ├── native_legacy.dart.weak.transformed.expect │ │ │ │ ├── tear_off_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── unresolved_dart_library │ │ │ │ │ ├── flutter_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_flutter_lib.dart │ │ │ │ │ │ │ └── import_flutter_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.strong.expect │ │ │ │ │ ├── main.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ ├── main_lib3.dart │ │ │ │ │ ├── test.options │ │ │ │ │ ├── user_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_flutter_lib1.dart │ │ │ │ │ │ │ ├── export_flutter_lib2.dart │ │ │ │ │ │ │ ├── export_vm_lib1.dart │ │ │ │ │ │ │ ├── export_vm_lib2.dart │ │ │ │ │ │ │ ├── export_web_lib1.dart │ │ │ │ │ │ │ ├── export_web_lib2.dart │ │ │ │ │ │ │ ├── import_flutter_lib1.dart │ │ │ │ │ │ │ ├── import_flutter_lib2.dart │ │ │ │ │ │ │ ├── import_flutter_lib3.dart │ │ │ │ │ │ │ ├── import_vm_lib1.dart │ │ │ │ │ │ │ ├── import_vm_lib2.dart │ │ │ │ │ │ │ ├── import_vm_lib3.dart │ │ │ │ │ │ │ ├── import_web_lib1.dart │ │ │ │ │ │ │ ├── import_web_lib2.dart │ │ │ │ │ │ │ └── import_web_lib3.dart │ │ │ │ │ ├── vm_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_vm_lib.dart │ │ │ │ │ │ │ └── import_vm_lib.dart │ │ │ │ │ └── web_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── export_web_lib.dart │ │ │ │ │ │ └── import_web_lib.dart │ │ │ │ └── unresolved_imports │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ └── main.dart.weak.transformed.expect │ │ │ ├── dart2wasm │ │ │ │ ├── folder.options │ │ │ │ ├── for_in.dart │ │ │ │ ├── for_in.dart.strong.expect │ │ │ │ ├── for_in.dart.strong.transformed.expect │ │ │ │ ├── for_in.dart.textual_outline.expect │ │ │ │ ├── for_in.dart.textual_outline_modelled.expect │ │ │ │ ├── yield.dart │ │ │ │ ├── yield.dart.strong.expect │ │ │ │ ├── yield.dart.strong.transformed.expect │ │ │ │ ├── yield.dart.textual_outline.expect │ │ │ │ └── yield.dart.textual_outline_modelled.expect │ │ │ ├── dartdevc │ │ │ │ ├── conditional_import.dart │ │ │ │ ├── conditional_import.dart.strong.expect │ │ │ │ ├── conditional_import.dart.strong.transformed.expect │ │ │ │ ├── conditional_import.dart.textual_outline.expect │ │ │ │ ├── conditional_import.dart.textual_outline_modelled.expect │ │ │ │ ├── conditional_import.dart.weak.expect │ │ │ │ ├── conditional_import.dart.weak.modular.expect │ │ │ │ ├── conditional_import.dart.weak.outline.expect │ │ │ │ ├── conditional_import.dart.weak.transformed.expect │ │ │ │ ├── factory_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── folder.options │ │ │ │ ├── inline_class │ │ │ │ │ ├── external.dart │ │ │ │ │ ├── external.dart.strong.expect │ │ │ │ │ ├── external.dart.strong.transformed.expect │ │ │ │ │ ├── external.dart.textual_outline.expect │ │ │ │ │ ├── external.dart.textual_outline_modelled.expect │ │ │ │ │ ├── external.dart.weak.expect │ │ │ │ │ ├── external.dart.weak.modular.expect │ │ │ │ │ ├── external.dart.weak.outline.expect │ │ │ │ │ ├── external.dart.weak.transformed.expect │ │ │ │ │ └── folder.options │ │ │ │ ├── instance_getter_invocation.dart │ │ │ │ ├── instance_getter_invocation.dart.strong.expect │ │ │ │ ├── instance_getter_invocation.dart.strong.transformed.expect │ │ │ │ ├── instance_getter_invocation.dart.textual_outline.expect │ │ │ │ ├── instance_getter_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.modular.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.outline.expect │ │ │ │ ├── instance_getter_invocation.dart.weak.transformed.expect │ │ │ │ ├── issue47108.dart │ │ │ │ ├── issue47108.dart.strong.expect │ │ │ │ ├── issue47108.dart.strong.transformed.expect │ │ │ │ ├── issue47108.dart.textual_outline.expect │ │ │ │ ├── issue47108.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47108.dart.weak.expect │ │ │ │ ├── issue47108.dart.weak.modular.expect │ │ │ │ ├── issue47108.dart.weak.outline.expect │ │ │ │ ├── issue47108.dart.weak.transformed.expect │ │ │ │ ├── issue47313.dart │ │ │ │ ├── issue47313.dart.strong.expect │ │ │ │ ├── issue47313.dart.strong.transformed.expect │ │ │ │ ├── issue47313.dart.textual_outline.expect │ │ │ │ ├── issue47313.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47313.dart.weak.expect │ │ │ │ ├── issue47313.dart.weak.modular.expect │ │ │ │ ├── issue47313.dart.weak.outline.expect │ │ │ │ ├── issue47313.dart.weak.transformed.expect │ │ │ │ ├── issue49198.dart │ │ │ │ ├── issue49198.dart.strong.expect │ │ │ │ ├── issue49198.dart.strong.transformed.expect │ │ │ │ ├── issue49198.dart.textual_outline.expect │ │ │ │ ├── issue49198.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49198.dart.weak.expect │ │ │ │ ├── issue49198.dart.weak.modular.expect │ │ │ │ ├── issue49198.dart.weak.outline.expect │ │ │ │ ├── issue49198.dart.weak.transformed.expect │ │ │ │ ├── issue51449.dart │ │ │ │ ├── issue51449.dart.strong.expect │ │ │ │ ├── issue51449.dart.strong.transformed.expect │ │ │ │ ├── issue51449.dart.textual_outline.expect │ │ │ │ ├── issue51449.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51449.dart.weak.expect │ │ │ │ ├── issue51449.dart.weak.modular.expect │ │ │ │ ├── issue51449.dart.weak.outline.expect │ │ │ │ ├── issue51449.dart.weak.transformed.expect │ │ │ │ ├── mixin_super │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── private_covariant.dart │ │ │ │ ├── private_covariant.dart.strong.expect │ │ │ │ ├── private_covariant.dart.strong.transformed.expect │ │ │ │ ├── private_covariant.dart.textual_outline.expect │ │ │ │ ├── private_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── private_covariant.dart.weak.expect │ │ │ │ ├── private_covariant.dart.weak.modular.expect │ │ │ │ ├── private_covariant.dart.weak.outline.expect │ │ │ │ ├── private_covariant.dart.weak.transformed.expect │ │ │ │ ├── static_interop_erasure │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── switch_modes │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ └── main_lib2.dart │ │ │ │ ├── symbol.dart │ │ │ │ ├── symbol.dart.strong.expect │ │ │ │ ├── symbol.dart.strong.transformed.expect │ │ │ │ ├── symbol.dart.textual_outline.expect │ │ │ │ ├── symbol.dart.textual_outline_modelled.expect │ │ │ │ ├── symbol.dart.weak.expect │ │ │ │ ├── symbol.dart.weak.modular.expect │ │ │ │ ├── symbol.dart.weak.outline.expect │ │ │ │ ├── symbol.dart.weak.transformed.expect │ │ │ │ ├── unresolved_dart_library │ │ │ │ │ ├── flutter_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_flutter_lib.dart │ │ │ │ │ │ │ └── import_flutter_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.strong.expect │ │ │ │ │ ├── main.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ ├── main_lib3.dart │ │ │ │ │ ├── test.options │ │ │ │ │ ├── user_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_flutter_lib1.dart │ │ │ │ │ │ │ ├── export_flutter_lib2.dart │ │ │ │ │ │ │ ├── export_vm_lib1.dart │ │ │ │ │ │ │ ├── export_vm_lib2.dart │ │ │ │ │ │ │ ├── export_web_lib1.dart │ │ │ │ │ │ │ ├── export_web_lib2.dart │ │ │ │ │ │ │ ├── import_flutter_lib1.dart │ │ │ │ │ │ │ ├── import_flutter_lib2.dart │ │ │ │ │ │ │ ├── import_flutter_lib3.dart │ │ │ │ │ │ │ ├── import_vm_lib1.dart │ │ │ │ │ │ │ ├── import_vm_lib2.dart │ │ │ │ │ │ │ ├── import_vm_lib3.dart │ │ │ │ │ │ │ ├── import_web_lib1.dart │ │ │ │ │ │ │ ├── import_web_lib2.dart │ │ │ │ │ │ │ └── import_web_lib3.dart │ │ │ │ │ ├── vm_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_vm_lib.dart │ │ │ │ │ │ │ └── import_vm_lib.dart │ │ │ │ │ └── web_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── export_web_lib.dart │ │ │ │ │ │ └── import_web_lib.dart │ │ │ │ └── unresolved_imports │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ └── main.dart.weak.transformed.expect │ │ │ ├── dartino │ │ │ │ ├── README.md │ │ │ │ ├── add_class.incremental.yaml │ │ │ │ ├── add_compound_instance_field.incremental.yaml │ │ │ │ ├── add_export.incremental.yaml │ │ │ │ ├── add_field_and_remove_subclass.incremental.yaml │ │ │ │ ├── add_import.incremental.yaml │ │ │ │ ├── add_instance_field.incremental.yaml │ │ │ │ ├── add_instance_method.incremental.yaml │ │ │ │ ├── add_named_mixin_application.incremental.yaml │ │ │ │ ├── add_part.incremental.yaml │ │ │ │ ├── add_static_field.incremental.yaml │ │ │ │ ├── add_static_method.incremental.yaml │ │ │ │ ├── add_top_level_const_field.incremental.yaml │ │ │ │ ├── add_top_level_field.incremental.yaml │ │ │ │ ├── add_top_level_method.incremental.yaml │ │ │ │ ├── add_unused_enum_class.incremental.yaml │ │ │ │ ├── bad_diagnostics.incremental.yaml │ │ │ │ ├── bad_stack_trace_repro.incremental.yaml │ │ │ │ ├── call_instance_tear_off_named.incremental.yaml │ │ │ │ ├── call_named_arguments_1.incremental.yaml │ │ │ │ ├── call_named_arguments_2.incremental.yaml │ │ │ │ ├── call_named_arguments_from_instance_method.incremental.yaml │ │ │ │ ├── change_in_part.incremental.yaml │ │ │ │ ├── change_library_name.incremental.yaml │ │ │ │ ├── change_optional_arguments.incremental.yaml │ │ │ │ ├── change_supertype.incremental.yaml │ │ │ │ ├── closure.incremental.yaml │ │ │ │ ├── closure_capture.incremental.yaml │ │ │ │ ├── compile_time_error_001.incremental.yaml │ │ │ │ ├── compile_time_error_002.incremental.yaml │ │ │ │ ├── compile_time_error_003.incremental.yaml │ │ │ │ ├── compile_time_error_004.incremental.yaml │ │ │ │ ├── compile_time_error_005.incremental.yamlx │ │ │ │ ├── compile_time_error_006.incremental.yaml │ │ │ │ ├── compile_time_error_field_becomes_removed_function.incremental.yaml │ │ │ │ ├── compile_time_error_hides_field.incremental.yaml │ │ │ │ ├── compile_time_error_partial_file.incremental.yaml │ │ │ │ ├── compound_constants.incremental.yaml │ │ │ │ ├── constant_retaining.incremental.yaml │ │ │ │ ├── constant_retaining_2.incremental.yaml │ │ │ │ ├── constant_retaining_3.incremental.yaml │ │ │ │ ├── constants.incremental.yaml │ │ │ │ ├── constants_of_new_classes.incremental.yaml │ │ │ │ ├── fix_compile_time_error_in_field.incremental.yaml │ │ │ │ ├── generic_types_001.incremental.yaml │ │ │ │ ├── generic_types_002.incremental.yaml │ │ │ │ ├── generic_types_003.incremental.yaml │ │ │ │ ├── generic_types_004.incremental.yaml │ │ │ │ ├── hello_world.incremental.yaml │ │ │ │ ├── instance_field_end.incremental.yaml │ │ │ │ ├── instance_field_middle.incremental.yaml │ │ │ │ ├── instance_field_to_static_field.incremental.yaml │ │ │ │ ├── interceptor_classes.incremental.yaml │ │ │ │ ├── invalidate_method_used_in_tearoff.incremental.yaml │ │ │ │ ├── invalidate_method_with_optional_parameters.incremental.yaml │ │ │ │ ├── lazy_static.incremental.yaml │ │ │ │ ├── local_function_closure.incremental.yaml │ │ │ │ ├── main_args.incremental.yaml │ │ │ │ ├── main_signature_change.incremental.yaml │ │ │ │ ├── modify_instance_method.incremental.yaml │ │ │ │ ├── modify_static_method.incremental.yaml │ │ │ │ ├── multiple_libraries.incremental.yaml │ │ │ │ ├── new_instance_tearoff.incremental.yaml │ │ │ │ ├── newly_instantiated_class.incremental.yaml │ │ │ │ ├── newly_instantiated_class_X.incremental.yaml │ │ │ │ ├── newly_instantiated_class_with_fields.incremental.yaml │ │ │ │ ├── newly_instantiated_subclases_two_updates.incremental.yaml │ │ │ │ ├── newly_instantiated_superclasses_two_updates.incremental.yaml │ │ │ │ ├── no_closure.incremental.yaml │ │ │ │ ├── override_field_with_method_conflict.incremental.yaml │ │ │ │ ├── override_getter_with_method_conflict.incremental.yaml │ │ │ │ ├── override_method_with_field_conflict.incremental.yaml │ │ │ │ ├── override_method_with_getter_conflict.incremental.yaml │ │ │ │ ├── preserving_identity_hashcode.incremental.yaml │ │ │ │ ├── remove_class.incremental.yaml │ │ │ │ ├── remove_class_with_field_and_subclass.incremental.yaml │ │ │ │ ├── remove_class_with_static_method.incremental.yaml │ │ │ │ ├── remove_compound_instance_field.incremental.yaml │ │ │ │ ├── remove_instance_field.incremental.yaml │ │ │ │ ├── remove_instance_method.incremental.yaml │ │ │ │ ├── remove_instance_method_stored_in_tearoff.incremental.yaml │ │ │ │ ├── remove_instance_method_super_access.incremental.yaml │ │ │ │ ├── remove_instance_method_with_optional_parameters.incremental.yaml │ │ │ │ ├── remove_instance_method_with_optional_parameters_stored_in_tearoff.incremental.yaml │ │ │ │ ├── remove_named_mixin_application.incremental.yaml │ │ │ │ ├── remove_static_method.incremental.yaml │ │ │ │ ├── remove_top_level_method.incremental.yaml │ │ │ │ ├── remove_unused_enum_class.incremental.yaml │ │ │ │ ├── same_tokens.incremental.yaml │ │ │ │ ├── same_tokens_variant.incremental.yaml │ │ │ │ ├── signature_change_instance_method.incremental.yaml │ │ │ │ ├── signature_change_parameter_instance_method.incremental.yaml │ │ │ │ ├── signature_change_static_method.incremental.yaml │ │ │ │ ├── signature_change_top_level_method.incremental.yaml │ │ │ │ ├── source_maps_no_throw.incremental.yaml │ │ │ │ ├── static_field_to_instance_field.incremental.yaml │ │ │ │ ├── stored_closure.incremental.yaml │ │ │ │ ├── stored_instance_tearoff.incremental.yaml │ │ │ │ ├── stored_instance_tearoff_with_named_parameters.incremental.yaml │ │ │ │ ├── stored_instance_tearoff_with_optional_positional_parameters.incremental.yaml │ │ │ │ ├── subclass_schema_1.incremental.yaml │ │ │ │ ├── subclass_schema_2.incremental.yaml │ │ │ │ ├── subclass_schema_3.incremental.yaml │ │ │ │ ├── super_call_signature_change.incremental.yaml │ │ │ │ ├── super_call_simple_change.incremental.yaml │ │ │ │ ├── super_classes_of_directly_instantiated.incremental.yaml │ │ │ │ ├── super_is_parameter.incremental.yaml │ │ │ │ ├── super_schema.incremental.yaml │ │ │ │ ├── two_updates.incremental.yaml │ │ │ │ ├── two_updates_instance_method.incremental.yaml │ │ │ │ ├── two_updates_not_main.incremental.yaml │ │ │ │ ├── two_updates_with_removal.incremental.yaml │ │ │ │ ├── unchanged_named_mixin_application.incremental.yaml │ │ │ │ ├── update_dependencies.incremental.yaml │ │ │ │ ├── update_dependencies_recoverable_compile_time_error.incremental.yaml │ │ │ │ └── update_dependencies_unrecoverable_compile_time_error.incremental.yaml │ │ │ ├── enhanced_enums │ │ │ │ ├── abstract_members.dart │ │ │ │ ├── abstract_members.dart.strong.expect │ │ │ │ ├── abstract_members.dart.strong.transformed.expect │ │ │ │ ├── abstract_members.dart.textual_outline.expect │ │ │ │ ├── abstract_members.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_members.dart.weak.expect │ │ │ │ ├── abstract_members.dart.weak.modular.expect │ │ │ │ ├── abstract_members.dart.weak.outline.expect │ │ │ │ ├── abstract_members.dart.weak.transformed.expect │ │ │ │ ├── class_redirecting_initializer.dart │ │ │ │ ├── class_redirecting_initializer.dart.strong.expect │ │ │ │ ├── class_redirecting_initializer.dart.strong.transformed.expect │ │ │ │ ├── class_redirecting_initializer.dart.textual_outline.expect │ │ │ │ ├── class_redirecting_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── class_redirecting_initializer.dart.weak.expect │ │ │ │ ├── class_redirecting_initializer.dart.weak.modular.expect │ │ │ │ ├── class_redirecting_initializer.dart.weak.outline.expect │ │ │ │ ├── class_redirecting_initializer.dart.weak.transformed.expect │ │ │ │ ├── conflicting_elements.dart │ │ │ │ ├── conflicting_elements.dart.strong.expect │ │ │ │ ├── conflicting_elements.dart.strong.transformed.expect │ │ │ │ ├── conflicting_elements.dart.textual_outline.expect │ │ │ │ ├── conflicting_elements.dart.textual_outline_modelled.expect │ │ │ │ ├── conflicting_elements.dart.weak.expect │ │ │ │ ├── conflicting_elements.dart.weak.modular.expect │ │ │ │ ├── conflicting_elements.dart.weak.outline.expect │ │ │ │ ├── conflicting_elements.dart.weak.transformed.expect │ │ │ │ ├── constructor_calls.dart │ │ │ │ ├── constructor_calls.dart.strong.expect │ │ │ │ ├── constructor_calls.dart.strong.transformed.expect │ │ │ │ ├── constructor_calls.dart.textual_outline.expect │ │ │ │ ├── constructor_calls.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_calls.dart.weak.expect │ │ │ │ ├── constructor_calls.dart.weak.modular.expect │ │ │ │ ├── constructor_calls.dart.weak.outline.expect │ │ │ │ ├── constructor_calls.dart.weak.transformed.expect │ │ │ │ ├── constructor_not_found.dart │ │ │ │ ├── constructor_not_found.dart.strong.expect │ │ │ │ ├── constructor_not_found.dart.strong.transformed.expect │ │ │ │ ├── constructor_not_found.dart.textual_outline.expect │ │ │ │ ├── constructor_not_found.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_not_found.dart.weak.expect │ │ │ │ ├── constructor_not_found.dart.weak.modular.expect │ │ │ │ ├── constructor_not_found.dart.weak.outline.expect │ │ │ │ ├── constructor_not_found.dart.weak.transformed.expect │ │ │ │ ├── declared_equals.dart │ │ │ │ ├── declared_equals.dart.strong.expect │ │ │ │ ├── declared_equals.dart.strong.transformed.expect │ │ │ │ ├── declared_equals.dart.textual_outline.expect │ │ │ │ ├── declared_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── declared_equals.dart.weak.expect │ │ │ │ ├── declared_equals.dart.weak.modular.expect │ │ │ │ ├── declared_equals.dart.weak.outline.expect │ │ │ │ ├── declared_equals.dart.weak.transformed.expect │ │ │ │ ├── declared_hashcode.dart │ │ │ │ ├── declared_hashcode.dart.strong.expect │ │ │ │ ├── declared_hashcode.dart.textual_outline.expect │ │ │ │ ├── declared_hashcode.dart.textual_outline_modelled.expect │ │ │ │ ├── declared_hashcode.dart.weak.expect │ │ │ │ ├── declared_hashcode.dart.weak.modular.expect │ │ │ │ ├── declared_hashcode.dart.weak.outline.expect │ │ │ │ ├── declared_index.dart │ │ │ │ ├── declared_index.dart.strong.expect │ │ │ │ ├── declared_index.dart.textual_outline.expect │ │ │ │ ├── declared_index.dart.textual_outline_modelled.expect │ │ │ │ ├── declared_index.dart.weak.expect │ │ │ │ ├── declared_index.dart.weak.modular.expect │ │ │ │ ├── declared_index.dart.weak.outline.expect │ │ │ │ ├── declared_values.dart │ │ │ │ ├── declared_values.dart.strong.expect │ │ │ │ ├── declared_values.dart.strong.transformed.expect │ │ │ │ ├── declared_values.dart.textual_outline.expect │ │ │ │ ├── declared_values.dart.textual_outline_modelled.expect │ │ │ │ ├── declared_values.dart.weak.expect │ │ │ │ ├── declared_values.dart.weak.modular.expect │ │ │ │ ├── declared_values.dart.weak.outline.expect │ │ │ │ ├── declared_values.dart.weak.transformed.expect │ │ │ │ ├── entries_with_type_arguments.dart │ │ │ │ ├── entries_with_type_arguments.dart.strong.expect │ │ │ │ ├── entries_with_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── entries_with_type_arguments.dart.textual_outline.expect │ │ │ │ ├── entries_with_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── entries_with_type_arguments.dart.weak.expect │ │ │ │ ├── entries_with_type_arguments.dart.weak.modular.expect │ │ │ │ ├── entries_with_type_arguments.dart.weak.outline.expect │ │ │ │ ├── entries_with_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── enum_as_supertype.dart │ │ │ │ ├── enum_as_supertype.dart.strong.expect │ │ │ │ ├── enum_as_supertype.dart.strong.transformed.expect │ │ │ │ ├── enum_as_supertype.dart.textual_outline.expect │ │ │ │ ├── enum_as_supertype.dart.textual_outline_modelled.expect │ │ │ │ ├── enum_as_supertype.dart.weak.expect │ │ │ │ ├── enum_as_supertype.dart.weak.modular.expect │ │ │ │ ├── enum_as_supertype.dart.weak.outline.expect │ │ │ │ ├── enum_as_supertype.dart.weak.transformed.expect │ │ │ │ ├── enum_as_supertype_error.dart │ │ │ │ ├── enum_as_supertype_error.dart.strong.expect │ │ │ │ ├── enum_as_supertype_error.dart.strong.transformed.expect │ │ │ │ ├── enum_as_supertype_error.dart.textual_outline.expect │ │ │ │ ├── enum_as_supertype_error.dart.textual_outline_modelled.expect │ │ │ │ ├── enum_as_supertype_error.dart.weak.expect │ │ │ │ ├── enum_as_supertype_error.dart.weak.modular.expect │ │ │ │ ├── enum_as_supertype_error.dart.weak.outline.expect │ │ │ │ ├── enum_as_supertype_error.dart.weak.transformed.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart │ │ │ │ ├── enum_implementers_with_restricted_members.dart.strong.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.strong.transformed.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.textual_outline.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.textual_outline_modelled.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.weak.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.weak.modular.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.weak.outline.expect │ │ │ │ ├── enum_implementers_with_restricted_members.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── generic_enum_switch.dart │ │ │ │ ├── generic_enum_switch.dart.strong.expect │ │ │ │ ├── generic_enum_switch.dart.strong.transformed.expect │ │ │ │ ├── generic_enum_switch.dart.textual_outline.expect │ │ │ │ ├── generic_enum_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_enum_switch.dart.weak.expect │ │ │ │ ├── generic_enum_switch.dart.weak.modular.expect │ │ │ │ ├── generic_enum_switch.dart.weak.outline.expect │ │ │ │ ├── generic_enum_switch.dart.weak.transformed.expect │ │ │ │ ├── inference_in_constructor_parameters.dart │ │ │ │ ├── inference_in_constructor_parameters.dart.strong.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.strong.transformed.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.textual_outline.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.weak.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.weak.modular.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.weak.outline.expect │ │ │ │ ├── inference_in_constructor_parameters.dart.weak.transformed.expect │ │ │ │ ├── inherited_restricted_members.dart │ │ │ │ ├── inherited_restricted_members.dart.strong.expect │ │ │ │ ├── inherited_restricted_members.dart.strong.transformed.expect │ │ │ │ ├── inherited_restricted_members.dart.textual_outline.expect │ │ │ │ ├── inherited_restricted_members.dart.textual_outline_modelled.expect │ │ │ │ ├── inherited_restricted_members.dart.weak.expect │ │ │ │ ├── inherited_restricted_members.dart.weak.modular.expect │ │ │ │ ├── inherited_restricted_members.dart.weak.outline.expect │ │ │ │ ├── inherited_restricted_members.dart.weak.transformed.expect │ │ │ │ ├── instantiated_generic_enum_types.dart │ │ │ │ ├── instantiated_generic_enum_types.dart.strong.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.strong.transformed.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.textual_outline.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.weak.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.weak.modular.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.weak.outline.expect │ │ │ │ ├── instantiated_generic_enum_types.dart.weak.transformed.expect │ │ │ │ ├── issue48084.dart │ │ │ │ ├── issue48084.dart.strong.expect │ │ │ │ ├── issue48084.dart.strong.transformed.expect │ │ │ │ ├── issue48084.dart.textual_outline.expect │ │ │ │ ├── issue48084.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48084.dart.weak.expect │ │ │ │ ├── issue48084.dart.weak.modular.expect │ │ │ │ ├── issue48084.dart.weak.outline.expect │ │ │ │ ├── issue48084.dart.weak.transformed.expect │ │ │ │ ├── issue48181.dart │ │ │ │ ├── issue48181.dart.strong.expect │ │ │ │ ├── issue48181.dart.strong.transformed.expect │ │ │ │ ├── issue48181.dart.textual_outline.expect │ │ │ │ ├── issue48181.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48181.dart.weak.expect │ │ │ │ ├── issue48181.dart.weak.modular.expect │ │ │ │ ├── issue48181.dart.weak.outline.expect │ │ │ │ ├── issue48181.dart.weak.transformed.expect │ │ │ │ ├── issue48232.dart │ │ │ │ ├── issue48232.dart.strong.expect │ │ │ │ ├── issue48232.dart.strong.transformed.expect │ │ │ │ ├── issue48232.dart.textual_outline.expect │ │ │ │ ├── issue48232.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48232.dart.weak.expect │ │ │ │ ├── issue48232.dart.weak.modular.expect │ │ │ │ ├── issue48232.dart.weak.outline.expect │ │ │ │ ├── issue48232.dart.weak.transformed.expect │ │ │ │ ├── issue48303.dart │ │ │ │ ├── issue48303.dart.strong.expect │ │ │ │ ├── issue48303.dart.strong.transformed.expect │ │ │ │ ├── issue48303.dart.textual_outline.expect │ │ │ │ ├── issue48303.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48303.dart.weak.expect │ │ │ │ ├── issue48303.dart.weak.modular.expect │ │ │ │ ├── issue48303.dart.weak.outline.expect │ │ │ │ ├── issue48303.dart.weak.transformed.expect │ │ │ │ ├── issue48388.dart │ │ │ │ ├── issue48388.dart.strong.expect │ │ │ │ ├── issue48388.dart.strong.transformed.expect │ │ │ │ ├── issue48388.dart.textual_outline.expect │ │ │ │ ├── issue48388.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48388.dart.weak.expect │ │ │ │ ├── issue48388.dart.weak.modular.expect │ │ │ │ ├── issue48388.dart.weak.outline.expect │ │ │ │ ├── issue48388.dart.weak.transformed.expect │ │ │ │ ├── issue49236.dart │ │ │ │ ├── issue49236.dart.strong.expect │ │ │ │ ├── issue49236.dart.strong.transformed.expect │ │ │ │ ├── issue49236.dart.textual_outline.expect │ │ │ │ ├── issue49236.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49236.dart.weak.expect │ │ │ │ ├── issue49236.dart.weak.modular.expect │ │ │ │ ├── issue49236.dart.weak.outline.expect │ │ │ │ ├── issue49236.dart.weak.transformed.expect │ │ │ │ ├── issue49429.dart │ │ │ │ ├── issue49429.dart.strong.expect │ │ │ │ ├── issue49429.dart.strong.transformed.expect │ │ │ │ ├── issue49429.dart.textual_outline.expect │ │ │ │ ├── issue49429.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49429.dart.weak.expect │ │ │ │ ├── issue49429.dart.weak.modular.expect │ │ │ │ ├── issue49429.dart.weak.outline.expect │ │ │ │ ├── issue49429.dart.weak.transformed.expect │ │ │ │ ├── issue51189.dart │ │ │ │ ├── issue51189.dart.strong.expect │ │ │ │ ├── issue51189.dart.strong.transformed.expect │ │ │ │ ├── issue51189.dart.textual_outline.expect │ │ │ │ ├── issue51189.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51189.dart.weak.expect │ │ │ │ ├── issue51189.dart.weak.modular.expect │ │ │ │ ├── issue51189.dart.weak.outline.expect │ │ │ │ ├── issue51189.dart.weak.transformed.expect │ │ │ │ ├── malformed_constructors.dart │ │ │ │ ├── malformed_constructors.dart.strong.expect │ │ │ │ ├── malformed_constructors.dart.strong.transformed.expect │ │ │ │ ├── malformed_constructors.dart.textual_outline.expect │ │ │ │ ├── malformed_constructors.dart.textual_outline_modelled.expect │ │ │ │ ├── malformed_constructors.dart.weak.expect │ │ │ │ ├── malformed_constructors.dart.weak.modular.expect │ │ │ │ ├── malformed_constructors.dart.weak.outline.expect │ │ │ │ ├── malformed_constructors.dart.weak.transformed.expect │ │ │ │ ├── member_values_conflicts.dart │ │ │ │ ├── member_values_conflicts.dart.strong.expect │ │ │ │ ├── member_values_conflicts.dart.strong.transformed.expect │ │ │ │ ├── member_values_conflicts.dart.textual_outline.expect │ │ │ │ ├── member_values_conflicts.dart.textual_outline_modelled.expect │ │ │ │ ├── member_values_conflicts.dart.weak.expect │ │ │ │ ├── member_values_conflicts.dart.weak.modular.expect │ │ │ │ ├── member_values_conflicts.dart.weak.outline.expect │ │ │ │ ├── member_values_conflicts.dart.weak.transformed.expect │ │ │ │ ├── members.dart │ │ │ │ ├── members.dart.strong.expect │ │ │ │ ├── members.dart.strong.transformed.expect │ │ │ │ ├── members.dart.textual_outline.expect │ │ │ │ ├── members.dart.textual_outline_modelled.expect │ │ │ │ ├── members.dart.weak.expect │ │ │ │ ├── members.dart.weak.modular.expect │ │ │ │ ├── members.dart.weak.outline.expect │ │ │ │ ├── members.dart.weak.transformed.expect │ │ │ │ ├── missed_checks.dart │ │ │ │ ├── missed_checks.dart.strong.expect │ │ │ │ ├── missed_checks.dart.strong.transformed.expect │ │ │ │ ├── missed_checks.dart.textual_outline.expect │ │ │ │ ├── missed_checks.dart.textual_outline_modelled.expect │ │ │ │ ├── missed_checks.dart.weak.expect │ │ │ │ ├── missed_checks.dart.weak.modular.expect │ │ │ │ ├── missed_checks.dart.weak.outline.expect │ │ │ │ ├── missed_checks.dart.weak.transformed.expect │ │ │ │ ├── named_arguments.dart │ │ │ │ ├── named_arguments.dart.strong.expect │ │ │ │ ├── named_arguments.dart.strong.transformed.expect │ │ │ │ ├── named_arguments.dart.textual_outline.expect │ │ │ │ ├── named_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── named_arguments.dart.weak.expect │ │ │ │ ├── named_arguments.dart.weak.modular.expect │ │ │ │ ├── named_arguments.dart.weak.outline.expect │ │ │ │ ├── named_arguments.dart.weak.transformed.expect │ │ │ │ ├── named_arguments_anywhere │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── issue48276.dart │ │ │ │ │ ├── issue48276.dart.strong.expect │ │ │ │ │ ├── issue48276.dart.strong.transformed.expect │ │ │ │ │ ├── issue48276.dart.textual_outline.expect │ │ │ │ │ ├── issue48276.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue48276.dart.weak.expect │ │ │ │ │ ├── issue48276.dart.weak.modular.expect │ │ │ │ │ ├── issue48276.dart.weak.outline.expect │ │ │ │ │ ├── issue48276.dart.weak.transformed.expect │ │ │ │ │ ├── redirecting_constructor.dart │ │ │ │ │ ├── redirecting_constructor.dart.strong.expect │ │ │ │ │ ├── redirecting_constructor.dart.strong.transformed.expect │ │ │ │ │ ├── redirecting_constructor.dart.textual_outline.expect │ │ │ │ │ ├── redirecting_constructor.dart.textual_outline_modelled.expect │ │ │ │ │ ├── redirecting_constructor.dart.weak.expect │ │ │ │ │ ├── redirecting_constructor.dart.weak.modular.expect │ │ │ │ │ ├── redirecting_constructor.dart.weak.outline.expect │ │ │ │ │ └── redirecting_constructor.dart.weak.transformed.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.strong.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.textual_outline.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.weak.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.weak.modular.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.weak.outline.expect │ │ │ │ ├── qualified_names_with_no_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── recovery_in_elements.dart │ │ │ │ ├── recovery_in_elements.dart.strong.expect │ │ │ │ ├── recovery_in_elements.dart.strong.transformed.expect │ │ │ │ ├── recovery_in_elements.dart.textual_outline.expect │ │ │ │ ├── recovery_in_elements.dart.weak.expect │ │ │ │ ├── recovery_in_elements.dart.weak.modular.expect │ │ │ │ ├── recovery_in_elements.dart.weak.outline.expect │ │ │ │ ├── recovery_in_elements.dart.weak.transformed.expect │ │ │ │ ├── redirecting_initializers.dart │ │ │ │ ├── redirecting_initializers.dart.strong.expect │ │ │ │ ├── redirecting_initializers.dart.strong.transformed.expect │ │ │ │ ├── redirecting_initializers.dart.textual_outline.expect │ │ │ │ ├── redirecting_initializers.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_initializers.dart.weak.expect │ │ │ │ ├── redirecting_initializers.dart.weak.modular.expect │ │ │ │ ├── redirecting_initializers.dart.weak.outline.expect │ │ │ │ ├── redirecting_initializers.dart.weak.transformed.expect │ │ │ │ ├── setter_getter_type_check.dart │ │ │ │ ├── setter_getter_type_check.dart.strong.expect │ │ │ │ ├── setter_getter_type_check.dart.strong.transformed.expect │ │ │ │ ├── setter_getter_type_check.dart.textual_outline.expect │ │ │ │ ├── setter_getter_type_check.dart.textual_outline_modelled.expect │ │ │ │ ├── setter_getter_type_check.dart.weak.expect │ │ │ │ ├── setter_getter_type_check.dart.weak.modular.expect │ │ │ │ ├── setter_getter_type_check.dart.weak.outline.expect │ │ │ │ ├── setter_getter_type_check.dart.weak.transformed.expect │ │ │ │ ├── simple_fields.dart │ │ │ │ ├── simple_fields.dart.strong.expect │ │ │ │ ├── simple_fields.dart.strong.transformed.expect │ │ │ │ ├── simple_fields.dart.textual_outline.expect │ │ │ │ ├── simple_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_fields.dart.weak.expect │ │ │ │ ├── simple_fields.dart.weak.modular.expect │ │ │ │ ├── simple_fields.dart.weak.outline.expect │ │ │ │ ├── simple_fields.dart.weak.transformed.expect │ │ │ │ ├── simple_interfaces.dart │ │ │ │ ├── simple_interfaces.dart.strong.expect │ │ │ │ ├── simple_interfaces.dart.strong.transformed.expect │ │ │ │ ├── simple_interfaces.dart.textual_outline.expect │ │ │ │ ├── simple_interfaces.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_interfaces.dart.weak.expect │ │ │ │ ├── simple_interfaces.dart.weak.modular.expect │ │ │ │ ├── simple_interfaces.dart.weak.outline.expect │ │ │ │ ├── simple_interfaces.dart.weak.transformed.expect │ │ │ │ ├── simple_mixins.dart │ │ │ │ ├── simple_mixins.dart.strong.expect │ │ │ │ ├── simple_mixins.dart.strong.transformed.expect │ │ │ │ ├── simple_mixins.dart.textual_outline.expect │ │ │ │ ├── simple_mixins.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_mixins.dart.weak.expect │ │ │ │ ├── simple_mixins.dart.weak.modular.expect │ │ │ │ ├── simple_mixins.dart.weak.outline.expect │ │ │ │ ├── simple_mixins.dart.weak.transformed.expect │ │ │ │ ├── super_constructor.dart │ │ │ │ ├── super_constructor.dart.strong.expect │ │ │ │ ├── super_constructor.dart.strong.transformed.expect │ │ │ │ ├── super_constructor.dart.textual_outline.expect │ │ │ │ ├── super_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── super_constructor.dart.weak.expect │ │ │ │ ├── super_constructor.dart.weak.modular.expect │ │ │ │ ├── super_constructor.dart.weak.outline.expect │ │ │ │ ├── super_constructor.dart.weak.transformed.expect │ │ │ │ ├── super_parameters │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── malformed_constructors.dart │ │ │ │ │ ├── malformed_constructors.dart.strong.expect │ │ │ │ │ ├── malformed_constructors.dart.strong.transformed.expect │ │ │ │ │ ├── malformed_constructors.dart.textual_outline.expect │ │ │ │ │ ├── malformed_constructors.dart.textual_outline_modelled.expect │ │ │ │ │ ├── malformed_constructors.dart.weak.expect │ │ │ │ │ ├── malformed_constructors.dart.weak.modular.expect │ │ │ │ │ ├── malformed_constructors.dart.weak.outline.expect │ │ │ │ │ ├── malformed_constructors.dart.weak.transformed.expect │ │ │ │ │ ├── super_constructor.dart │ │ │ │ │ ├── super_constructor.dart.strong.expect │ │ │ │ │ ├── super_constructor.dart.strong.transformed.expect │ │ │ │ │ ├── super_constructor.dart.textual_outline.expect │ │ │ │ │ ├── super_constructor.dart.textual_outline_modelled.expect │ │ │ │ │ ├── super_constructor.dart.weak.expect │ │ │ │ │ ├── super_constructor.dart.weak.modular.expect │ │ │ │ │ ├── super_constructor.dart.weak.outline.expect │ │ │ │ │ └── super_constructor.dart.weak.transformed.expect │ │ │ │ ├── supertype_resolved_before_checking.dart │ │ │ │ ├── supertype_resolved_before_checking.dart.strong.expect │ │ │ │ ├── supertype_resolved_before_checking.dart.strong.transformed.expect │ │ │ │ ├── supertype_resolved_before_checking.dart.textual_outline.expect │ │ │ │ ├── supertype_resolved_before_checking.dart.textual_outline_modelled.expect │ │ │ │ ├── supertype_resolved_before_checking.dart.weak.expect │ │ │ │ ├── supertype_resolved_before_checking.dart.weak.modular.expect │ │ │ │ ├── supertype_resolved_before_checking.dart.weak.outline.expect │ │ │ │ └── supertype_resolved_before_checking.dart.weak.transformed.expect │ │ │ ├── expression.status │ │ │ ├── expression │ │ │ │ ├── class_capture.expression.yaml │ │ │ │ ├── class_capture.expression.yaml.expect │ │ │ │ ├── class_getter.expression.yaml │ │ │ │ ├── class_getter.expression.yaml.expect │ │ │ │ ├── class_invalid_static.expression.yaml │ │ │ │ ├── class_invalid_static.expression.yaml.expect │ │ │ │ ├── class_invalid_static_capture.expression.yaml │ │ │ │ ├── class_invalid_static_capture.expression.yaml.expect │ │ │ │ ├── class_invalid_static_getter.expression.yaml │ │ │ │ ├── class_invalid_static_getter.expression.yaml.expect │ │ │ │ ├── class_invalid_static_setter.expression.yaml │ │ │ │ ├── class_invalid_static_setter.expression.yaml.expect │ │ │ │ ├── class_method.expression.yaml │ │ │ │ ├── class_method.expression.yaml.expect │ │ │ │ ├── class_private_get.expression.yaml │ │ │ │ ├── class_private_get.expression.yaml.expect │ │ │ │ ├── class_private_method.expression.yaml │ │ │ │ ├── class_private_method.expression.yaml.expect │ │ │ │ ├── class_private_set.expression.yaml │ │ │ │ ├── class_private_set.expression.yaml.expect │ │ │ │ ├── class_setter.expression.yaml │ │ │ │ ├── class_setter.expression.yaml.expect │ │ │ │ ├── class_static.expression.yaml │ │ │ │ ├── class_static.expression.yaml.expect │ │ │ │ ├── class_static2.expression.yaml │ │ │ │ ├── class_static2.expression.yaml.expect │ │ │ │ ├── class_static3.expression.yaml │ │ │ │ ├── class_static3.expression.yaml.expect │ │ │ │ ├── class_type_param_bound.expression.yaml │ │ │ │ ├── class_type_param_bound.expression.yaml.expect │ │ │ │ ├── class_type_param_bound_2.expression.yaml │ │ │ │ ├── class_type_param_bound_2.expression.yaml.expect │ │ │ │ ├── class_type_param_bound_illegal.expression.yaml │ │ │ │ ├── class_type_param_bound_illegal.expression.yaml.expect │ │ │ │ ├── class_type_param_bound_illegal_2.expression.yaml │ │ │ │ ├── class_type_param_bound_illegal_2.expression.yaml.expect │ │ │ │ ├── class_type_param_circular_reference.expression.yaml │ │ │ │ ├── class_type_param_circular_reference.expression.yaml.expect │ │ │ │ ├── class_type_param_reference.expression.yaml │ │ │ │ ├── class_type_param_reference.expression.yaml.expect │ │ │ │ ├── class_type_param_reference_arg.expression.yaml │ │ │ │ ├── class_type_param_reference_arg.expression.yaml.expect │ │ │ │ ├── class_type_param_reference_arg_inferred.expression.yaml │ │ │ │ ├── class_type_param_reference_arg_inferred.expression.yaml.expect │ │ │ │ ├── class_type_param_reference_ctor.expression.yaml │ │ │ │ ├── class_type_param_reference_ctor.expression.yaml.expect │ │ │ │ ├── class_type_param_reference_ctor_inferred.expression.yaml │ │ │ │ ├── class_type_param_reference_ctor_inferred.expression.yaml.expect │ │ │ │ ├── class_type_param_reference_var.expression.yaml │ │ │ │ ├── class_type_param_reference_var.expression.yaml.expect │ │ │ │ ├── const_usage.expression.yaml │ │ │ │ ├── const_usage.expression.yaml.expect │ │ │ │ ├── const_usage_class.expression.yaml │ │ │ │ ├── const_usage_class.expression.yaml.expect │ │ │ │ ├── core_lib_imported.expression.yaml │ │ │ │ ├── core_lib_imported.expression.yaml.expect │ │ │ │ ├── core_lib_internal.expression.yaml │ │ │ │ ├── core_lib_internal.expression.yaml.expect │ │ │ │ ├── evaluate_extension_method.expression.yaml │ │ │ │ ├── evaluate_extension_method.expression.yaml.expect │ │ │ │ ├── evaluate_fold_on_list.expression.yaml │ │ │ │ ├── evaluate_fold_on_list.expression.yaml.expect │ │ │ │ ├── extension_this.expression.yaml │ │ │ │ ├── extension_this.expression.yaml.expect │ │ │ │ ├── folder.options │ │ │ │ ├── from_vm_cc_linked_hash_map.expression.yaml │ │ │ │ ├── from_vm_cc_linked_hash_map.expression.yaml.expect │ │ │ │ ├── inside_class_with_import_1.expression.yaml │ │ │ │ ├── inside_class_with_import_1.expression.yaml.expect │ │ │ │ ├── inside_class_with_import_2.expression.yaml │ │ │ │ ├── inside_class_with_import_2.expression.yaml.expect │ │ │ │ ├── inside_class_with_import_3.expression.yaml │ │ │ │ ├── inside_class_with_import_3.expression.yaml.expect │ │ │ │ ├── inside_class_with_t.expression.yaml │ │ │ │ ├── inside_class_with_t.expression.yaml.expect │ │ │ │ ├── inside_class_with_t_in_dart_collection.expression.yaml │ │ │ │ ├── inside_class_with_t_in_dart_collection.expression.yaml.expect │ │ │ │ ├── instantiate_enum.expression.yaml │ │ │ │ ├── instantiate_enum.expression.yaml.expect │ │ │ │ ├── invalid.expression.yaml │ │ │ │ ├── invalid.expression.yaml.expect │ │ │ │ ├── invalid_type_variable.expression.yaml │ │ │ │ ├── invalid_type_variable.expression.yaml.expect │ │ │ │ ├── invalid_variable.expression.yaml │ │ │ │ ├── invalid_variable.expression.yaml.expect │ │ │ │ ├── issue_48587.expression.yaml │ │ │ │ ├── issue_48587.expression.yaml.expect │ │ │ │ ├── lib_ctor.expression.yaml │ │ │ │ ├── lib_ctor.expression.yaml.expect │ │ │ │ ├── lib_external_ctor.expression.yaml │ │ │ │ ├── lib_external_ctor.expression.yaml.expect │ │ │ │ ├── lib_nonctor.expression.yaml │ │ │ │ ├── lib_nonctor.expression.yaml.expect │ │ │ │ ├── lib_nonreference.expression.yaml │ │ │ │ ├── lib_nonreference.expression.yaml.expect │ │ │ │ ├── lib_nonshown_ctor.expression.yaml │ │ │ │ ├── lib_nonshown_ctor.expression.yaml.expect │ │ │ │ ├── lib_reference.expression.yaml │ │ │ │ ├── lib_reference.expression.yaml.expect │ │ │ │ ├── lib_simple.expression.yaml │ │ │ │ ├── lib_simple.expression.yaml.expect │ │ │ │ ├── library_private_get.expression.yaml │ │ │ │ ├── library_private_get.expression.yaml.expect │ │ │ │ ├── library_private_method.expression.yaml │ │ │ │ ├── library_private_method.expression.yaml.expect │ │ │ │ ├── library_private_set.expression.yaml │ │ │ │ ├── library_private_set.expression.yaml.expect │ │ │ │ ├── missing_variable_types.expression.yaml │ │ │ │ ├── missing_variable_types.expression.yaml.expect │ │ │ │ ├── missing_variable_types2.expression.yaml │ │ │ │ ├── missing_variable_types2.expression.yaml.expect │ │ │ │ ├── noclass.expression.yaml │ │ │ │ ├── noclass.expression.yaml.expect │ │ │ │ ├── nolib.expression.yaml │ │ │ │ ├── nolib.expression.yaml.expect │ │ │ │ ├── param_assign.expression.yaml │ │ │ │ ├── param_assign.expression.yaml.expect │ │ │ │ ├── param_capture.expression.yaml │ │ │ │ ├── param_capture.expression.yaml.expect │ │ │ │ ├── param_conflict.expression.yaml │ │ │ │ ├── param_conflict.expression.yaml.expect │ │ │ │ ├── param_conflict_class.expression.yaml │ │ │ │ ├── param_conflict_class.expression.yaml.expect │ │ │ │ ├── param_method.expression.yaml │ │ │ │ ├── param_method.expression.yaml.expect │ │ │ │ ├── platform_isandroid.expression.yaml │ │ │ │ ├── platform_isandroid.expression.yaml.expect │ │ │ │ ├── private_stuff.expression.yaml │ │ │ │ ├── private_stuff.expression.yaml.expect │ │ │ │ ├── regress_34224.expression.yaml │ │ │ │ ├── regress_34224.expression.yaml.expect │ │ │ │ ├── set_literal.expression.yaml │ │ │ │ ├── set_literal.expression.yaml.expect │ │ │ │ ├── spread_element.expression.yaml │ │ │ │ ├── spread_element.expression.yaml.expect │ │ │ │ ├── super_private_get.expression.yaml │ │ │ │ ├── super_private_get.expression.yaml.expect │ │ │ │ ├── super_private_method.expression.yaml │ │ │ │ ├── super_private_method.expression.yaml.expect │ │ │ │ ├── super_private_set.expression.yaml │ │ │ │ ├── super_private_set.expression.yaml.expect │ │ │ │ ├── type_closure_evaluation.expression.yaml │ │ │ │ ├── type_closure_evaluation.expression.yaml.expect │ │ │ │ ├── type_closure_evaluation_2.expression.yaml │ │ │ │ ├── type_closure_evaluation_2.expression.yaml.expect │ │ │ │ ├── type_definition_bound_1.expression.yaml │ │ │ │ ├── type_definition_bound_1.expression.yaml.expect │ │ │ │ ├── type_definition_bound_2.expression.yaml │ │ │ │ ├── type_definition_bound_2.expression.yaml.expect │ │ │ │ ├── type_definition_bound_3.expression.yaml │ │ │ │ ├── type_definition_bound_3.expression.yaml.expect │ │ │ │ ├── type_param_bound.expression.yaml │ │ │ │ ├── type_param_bound.expression.yaml.expect │ │ │ │ ├── type_param_bound_2.expression.yaml │ │ │ │ ├── type_param_bound_2.expression.yaml.expect │ │ │ │ ├── type_param_shadow.expression.yaml │ │ │ │ ├── type_param_shadow.expression.yaml.expect │ │ │ │ ├── type_param_shadow_arg.expression.yaml │ │ │ │ ├── type_param_shadow_arg.expression.yaml.expect │ │ │ │ ├── type_param_shadow_arg_ctor_inferred.expression.yaml │ │ │ │ ├── type_param_shadow_arg_ctor_inferred.expression.yaml.expect │ │ │ │ ├── type_param_shadow_arg_inferred.expression.yaml │ │ │ │ ├── type_param_shadow_arg_inferred.expression.yaml.expect │ │ │ │ ├── type_param_shadow_ctor.expression.yaml │ │ │ │ ├── type_param_shadow_ctor.expression.yaml.expect │ │ │ │ ├── type_param_shadow_var.expression.yaml │ │ │ │ ├── type_param_shadow_var.expression.yaml.expect │ │ │ │ ├── weekly_bot_run_83_crash.expression.yaml │ │ │ │ ├── weekly_bot_run_83_crash.expression.yaml.expect │ │ │ │ ├── weekly_bot_run_83_crash_2.expression.yaml │ │ │ │ ├── weekly_bot_run_83_crash_2.expression.yaml.expect │ │ │ │ ├── weekly_bot_run_83_crash_2_prime.expression.yaml │ │ │ │ ├── weekly_bot_run_83_crash_2_prime.expression.yaml.expect │ │ │ │ ├── weekly_bot_run_83_crash_prime.expression.yaml │ │ │ │ ├── weekly_bot_run_83_crash_prime.expression.yaml.expect │ │ │ │ ├── wrong_position.expression.yaml │ │ │ │ └── wrong_position.expression.yaml.expect │ │ │ ├── extension_types │ │ │ │ ├── access_setter_as_getter.dart │ │ │ │ ├── access_setter_as_getter.dart.strong.expect │ │ │ │ ├── access_setter_as_getter.dart.textual_outline.expect │ │ │ │ ├── access_setter_as_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── access_setter_as_getter.dart.weak.expect │ │ │ │ ├── access_setter_as_getter.dart.weak.modular.expect │ │ │ │ ├── access_setter_as_getter.dart.weak.outline.expect │ │ │ │ ├── basic_show.dart │ │ │ │ ├── basic_show.dart.strong.expect │ │ │ │ ├── basic_show.dart.strong.transformed.expect │ │ │ │ ├── basic_show.dart.textual_outline.expect │ │ │ │ ├── basic_show.dart.weak.expect │ │ │ │ ├── basic_show.dart.weak.modular.expect │ │ │ │ ├── basic_show.dart.weak.outline.expect │ │ │ │ ├── basic_show.dart.weak.transformed.expect │ │ │ │ ├── call_not_get.dart │ │ │ │ ├── call_not_get.dart.strong.expect │ │ │ │ ├── call_not_get.dart.textual_outline.expect │ │ │ │ ├── call_not_get.dart.weak.expect │ │ │ │ ├── call_not_get.dart.weak.modular.expect │ │ │ │ ├── call_not_get.dart.weak.outline.expect │ │ │ │ ├── extension_on_nullable.dart │ │ │ │ ├── extension_on_nullable.dart.strong.expect │ │ │ │ ├── extension_on_nullable.dart.textual_outline.expect │ │ │ │ ├── extension_on_nullable.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_on_nullable.dart.weak.expect │ │ │ │ ├── extension_on_nullable.dart.weak.modular.expect │ │ │ │ ├── extension_on_nullable.dart.weak.outline.expect │ │ │ │ ├── extension_with_name_type.dart │ │ │ │ ├── extension_with_name_type.dart.strong.expect │ │ │ │ ├── extension_with_name_type.dart.strong.transformed.expect │ │ │ │ ├── extension_with_name_type.dart.textual_outline.expect │ │ │ │ ├── extension_with_name_type.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_with_name_type.dart.weak.expect │ │ │ │ ├── extension_with_name_type.dart.weak.modular.expect │ │ │ │ ├── extension_with_name_type.dart.weak.outline.expect │ │ │ │ ├── extension_with_name_type.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── issue45775.dart │ │ │ │ ├── issue45775.dart.strong.expect │ │ │ │ ├── issue45775.dart.textual_outline.expect │ │ │ │ ├── issue45775.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45775.dart.weak.expect │ │ │ │ ├── issue45775.dart.weak.modular.expect │ │ │ │ ├── issue45775.dart.weak.outline.expect │ │ │ │ ├── keyword_in_show_hide_element.dart │ │ │ │ ├── keyword_in_show_hide_element.dart.strong.expect │ │ │ │ ├── keyword_in_show_hide_element.dart.strong.transformed.expect │ │ │ │ ├── keyword_in_show_hide_element.dart.textual_outline.expect │ │ │ │ ├── keyword_in_show_hide_element.dart.weak.expect │ │ │ │ ├── keyword_in_show_hide_element.dart.weak.modular.expect │ │ │ │ ├── keyword_in_show_hide_element.dart.weak.outline.expect │ │ │ │ ├── keyword_in_show_hide_element.dart.weak.transformed.expect │ │ │ │ ├── non_simple_co_inductive.dart │ │ │ │ ├── non_simple_co_inductive.dart.strong.expect │ │ │ │ ├── non_simple_co_inductive.dart.strong.transformed.expect │ │ │ │ ├── non_simple_co_inductive.dart.textual_outline.expect │ │ │ │ ├── non_simple_co_inductive.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.modular.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.outline.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.transformed.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart │ │ │ │ ├── non_simple_co_inductive_for_each.dart.strong.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.strong.transformed.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.textual_outline.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.modular.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.outline.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.transformed.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.strong.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.strong.transformed.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.textual_outline.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.modular.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.outline.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.transformed.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.strong.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.textual_outline.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.modular.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.outline.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle_lib.dart │ │ │ │ ├── show_and_run_ceil.dart │ │ │ │ ├── show_and_run_ceil.dart.strong.expect │ │ │ │ ├── show_and_run_ceil.dart.textual_outline.expect │ │ │ │ ├── show_and_run_ceil.dart.weak.expect │ │ │ │ ├── show_and_run_ceil.dart.weak.modular.expect │ │ │ │ ├── show_and_run_ceil.dart.weak.outline.expect │ │ │ │ ├── show_hide_all_kinds.dart │ │ │ │ ├── show_hide_all_kinds.dart.strong.expect │ │ │ │ ├── show_hide_all_kinds.dart.strong.transformed.expect │ │ │ │ ├── show_hide_all_kinds.dart.textual_outline.expect │ │ │ │ ├── show_hide_all_kinds.dart.weak.expect │ │ │ │ ├── show_hide_all_kinds.dart.weak.modular.expect │ │ │ │ ├── show_hide_all_kinds.dart.weak.outline.expect │ │ │ │ ├── show_hide_all_kinds.dart.weak.transformed.expect │ │ │ │ ├── simple.dart │ │ │ │ ├── simple.dart.strong.expect │ │ │ │ ├── simple.dart.strong.transformed.expect │ │ │ │ ├── simple.dart.textual_outline.expect │ │ │ │ ├── simple.dart.textual_outline_modelled.expect │ │ │ │ ├── simple.dart.weak.expect │ │ │ │ ├── simple.dart.weak.modular.expect │ │ │ │ ├── simple.dart.weak.outline.expect │ │ │ │ ├── simple.dart.weak.transformed.expect │ │ │ │ ├── simple_getter_resolution.dart │ │ │ │ ├── simple_getter_resolution.dart.strong.expect │ │ │ │ ├── simple_getter_resolution.dart.strong.transformed.expect │ │ │ │ ├── simple_getter_resolution.dart.textual_outline.expect │ │ │ │ ├── simple_getter_resolution.dart.weak.expect │ │ │ │ ├── simple_getter_resolution.dart.weak.modular.expect │ │ │ │ ├── simple_getter_resolution.dart.weak.outline.expect │ │ │ │ ├── simple_getter_resolution.dart.weak.transformed.expect │ │ │ │ ├── simple_method_resolution.dart │ │ │ │ ├── simple_method_resolution.dart.strong.expect │ │ │ │ ├── simple_method_resolution.dart.strong.transformed.expect │ │ │ │ ├── simple_method_resolution.dart.textual_outline.expect │ │ │ │ ├── simple_method_resolution.dart.weak.expect │ │ │ │ ├── simple_method_resolution.dart.weak.modular.expect │ │ │ │ ├── simple_method_resolution.dart.weak.outline.expect │ │ │ │ ├── simple_method_resolution.dart.weak.transformed.expect │ │ │ │ ├── simple_operator_resolution.dart │ │ │ │ ├── simple_operator_resolution.dart.strong.expect │ │ │ │ ├── simple_operator_resolution.dart.strong.transformed.expect │ │ │ │ ├── simple_operator_resolution.dart.textual_outline.expect │ │ │ │ ├── simple_operator_resolution.dart.weak.expect │ │ │ │ ├── simple_operator_resolution.dart.weak.modular.expect │ │ │ │ ├── simple_operator_resolution.dart.weak.outline.expect │ │ │ │ ├── simple_operator_resolution.dart.weak.transformed.expect │ │ │ │ ├── simple_setter_resolution.dart │ │ │ │ ├── simple_setter_resolution.dart.strong.expect │ │ │ │ ├── simple_setter_resolution.dart.strong.transformed.expect │ │ │ │ ├── simple_setter_resolution.dart.textual_outline.expect │ │ │ │ ├── simple_setter_resolution.dart.weak.expect │ │ │ │ ├── simple_setter_resolution.dart.weak.modular.expect │ │ │ │ ├── simple_setter_resolution.dart.weak.outline.expect │ │ │ │ ├── simple_setter_resolution.dart.weak.transformed.expect │ │ │ │ ├── simple_show_and_hide.dart │ │ │ │ ├── simple_show_and_hide.dart.strong.expect │ │ │ │ ├── simple_show_and_hide.dart.strong.transformed.expect │ │ │ │ ├── simple_show_and_hide.dart.textual_outline.expect │ │ │ │ ├── simple_show_and_hide.dart.weak.expect │ │ │ │ ├── simple_show_and_hide.dart.weak.modular.expect │ │ │ │ ├── simple_show_and_hide.dart.weak.outline.expect │ │ │ │ ├── simple_show_and_hide.dart.weak.transformed.expect │ │ │ │ ├── simple_show_hide.dart │ │ │ │ ├── simple_show_hide.dart.strong.expect │ │ │ │ ├── simple_show_hide.dart.textual_outline.expect │ │ │ │ ├── simple_show_hide.dart.weak.expect │ │ │ │ ├── simple_show_hide.dart.weak.modular.expect │ │ │ │ ├── simple_show_hide.dart.weak.outline.expect │ │ │ │ ├── simple_show_hide_conflicts.dart │ │ │ │ ├── simple_show_hide_conflicts.dart.strong.expect │ │ │ │ ├── simple_show_hide_conflicts.dart.strong.transformed.expect │ │ │ │ ├── simple_show_hide_conflicts.dart.textual_outline.expect │ │ │ │ ├── simple_show_hide_conflicts.dart.weak.expect │ │ │ │ ├── simple_show_hide_conflicts.dart.weak.modular.expect │ │ │ │ ├── simple_show_hide_conflicts.dart.weak.outline.expect │ │ │ │ ├── simple_show_hide_conflicts.dart.weak.transformed.expect │ │ │ │ ├── type_variable_in_static_context.dart │ │ │ │ ├── type_variable_in_static_context.dart.strong.expect │ │ │ │ ├── type_variable_in_static_context.dart.textual_outline.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.modular.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.outline.expect │ │ │ │ ├── various_hide_elements.dart │ │ │ │ ├── various_hide_elements.dart.strong.expect │ │ │ │ ├── various_hide_elements.dart.strong.transformed.expect │ │ │ │ ├── various_hide_elements.dart.textual_outline.expect │ │ │ │ ├── various_hide_elements.dart.weak.expect │ │ │ │ ├── various_hide_elements.dart.weak.modular.expect │ │ │ │ ├── various_hide_elements.dart.weak.outline.expect │ │ │ │ ├── various_hide_elements.dart.weak.transformed.expect │ │ │ │ ├── various_show_elements.dart │ │ │ │ ├── various_show_elements.dart.strong.expect │ │ │ │ ├── various_show_elements.dart.strong.transformed.expect │ │ │ │ ├── various_show_elements.dart.textual_outline.expect │ │ │ │ ├── various_show_elements.dart.weak.expect │ │ │ │ ├── various_show_elements.dart.weak.modular.expect │ │ │ │ ├── various_show_elements.dart.weak.outline.expect │ │ │ │ └── various_show_elements.dart.weak.transformed.expect │ │ │ ├── extensions │ │ │ │ ├── ambiguous.dart │ │ │ │ ├── ambiguous.dart.strong.expect │ │ │ │ ├── ambiguous.dart.strong.transformed.expect │ │ │ │ ├── ambiguous.dart.textual_outline.expect │ │ │ │ ├── ambiguous.dart.textual_outline_modelled.expect │ │ │ │ ├── ambiguous.dart.weak.expect │ │ │ │ ├── ambiguous.dart.weak.modular.expect │ │ │ │ ├── ambiguous.dart.weak.outline.expect │ │ │ │ ├── ambiguous.dart.weak.transformed.expect │ │ │ │ ├── annotations.dart │ │ │ │ ├── annotations.dart.strong.expect │ │ │ │ ├── annotations.dart.strong.transformed.expect │ │ │ │ ├── annotations.dart.textual_outline.expect │ │ │ │ ├── annotations.dart.textual_outline_modelled.expect │ │ │ │ ├── annotations.dart.weak.expect │ │ │ │ ├── annotations.dart.weak.modular.expect │ │ │ │ ├── annotations.dart.weak.outline.expect │ │ │ │ ├── annotations.dart.weak.transformed.expect │ │ │ │ ├── annotations_scope.dart │ │ │ │ ├── annotations_scope.dart.strong.expect │ │ │ │ ├── annotations_scope.dart.strong.transformed.expect │ │ │ │ ├── annotations_scope.dart.textual_outline.expect │ │ │ │ ├── annotations_scope.dart.textual_outline_modelled.expect │ │ │ │ ├── annotations_scope.dart.weak.expect │ │ │ │ ├── annotations_scope.dart.weak.modular.expect │ │ │ │ ├── annotations_scope.dart.weak.outline.expect │ │ │ │ ├── annotations_scope.dart.weak.transformed.expect │ │ │ │ ├── async_extensions.dart │ │ │ │ ├── async_extensions.dart.strong.expect │ │ │ │ ├── async_extensions.dart.strong.transformed.expect │ │ │ │ ├── async_extensions.dart.textual_outline.expect │ │ │ │ ├── async_extensions.dart.textual_outline_modelled.expect │ │ │ │ ├── async_extensions.dart.weak.expect │ │ │ │ ├── async_extensions.dart.weak.modular.expect │ │ │ │ ├── async_extensions.dart.weak.outline.expect │ │ │ │ ├── async_extensions.dart.weak.transformed.expect │ │ │ │ ├── bounds.dart │ │ │ │ ├── bounds.dart.strong.expect │ │ │ │ ├── bounds.dart.strong.transformed.expect │ │ │ │ ├── bounds.dart.textual_outline.expect │ │ │ │ ├── bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds.dart.weak.expect │ │ │ │ ├── bounds.dart.weak.modular.expect │ │ │ │ ├── bounds.dart.weak.outline.expect │ │ │ │ ├── bounds.dart.weak.transformed.expect │ │ │ │ ├── builtin_identifiers.dart │ │ │ │ ├── builtin_identifiers.dart.strong.expect │ │ │ │ ├── builtin_identifiers.dart.strong.transformed.expect │ │ │ │ ├── builtin_identifiers.dart.textual_outline.expect │ │ │ │ ├── builtin_identifiers.dart.textual_outline_modelled.expect │ │ │ │ ├── builtin_identifiers.dart.weak.expect │ │ │ │ ├── builtin_identifiers.dart.weak.modular.expect │ │ │ │ ├── builtin_identifiers.dart.weak.outline.expect │ │ │ │ ├── builtin_identifiers.dart.weak.transformed.expect │ │ │ │ ├── call_collision.dart │ │ │ │ ├── call_collision.dart.strong.expect │ │ │ │ ├── call_collision.dart.strong.transformed.expect │ │ │ │ ├── call_collision.dart.textual_outline.expect │ │ │ │ ├── call_collision.dart.textual_outline_modelled.expect │ │ │ │ ├── call_collision.dart.weak.expect │ │ │ │ ├── call_collision.dart.weak.modular.expect │ │ │ │ ├── call_collision.dart.weak.outline.expect │ │ │ │ ├── call_collision.dart.weak.transformed.expect │ │ │ │ ├── call_methods.dart │ │ │ │ ├── call_methods.dart.strong.expect │ │ │ │ ├── call_methods.dart.strong.transformed.expect │ │ │ │ ├── call_methods.dart.textual_outline.expect │ │ │ │ ├── call_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── call_methods.dart.weak.expect │ │ │ │ ├── call_methods.dart.weak.modular.expect │ │ │ │ ├── call_methods.dart.weak.outline.expect │ │ │ │ ├── call_methods.dart.weak.transformed.expect │ │ │ │ ├── check_bounds.dart │ │ │ │ ├── check_bounds.dart.strong.expect │ │ │ │ ├── check_bounds.dart.strong.transformed.expect │ │ │ │ ├── check_bounds.dart.textual_outline.expect │ │ │ │ ├── check_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── check_bounds.dart.weak.expect │ │ │ │ ├── check_bounds.dart.weak.modular.expect │ │ │ │ ├── check_bounds.dart.weak.outline.expect │ │ │ │ ├── check_bounds.dart.weak.transformed.expect │ │ │ │ ├── check_bounds_lib.dart │ │ │ │ ├── compounds.dart │ │ │ │ ├── compounds.dart.strong.expect │ │ │ │ ├── compounds.dart.strong.transformed.expect │ │ │ │ ├── compounds.dart.textual_outline.expect │ │ │ │ ├── compounds.dart.textual_outline_modelled.expect │ │ │ │ ├── compounds.dart.weak.expect │ │ │ │ ├── compounds.dart.weak.modular.expect │ │ │ │ ├── compounds.dart.weak.outline.expect │ │ │ │ ├── compounds.dart.weak.transformed.expect │ │ │ │ ├── conflict_with_object.dart │ │ │ │ ├── conflict_with_object.dart.strong.expect │ │ │ │ ├── conflict_with_object.dart.strong.transformed.expect │ │ │ │ ├── conflict_with_object.dart.textual_outline.expect │ │ │ │ ├── conflict_with_object.dart.textual_outline_modelled.expect │ │ │ │ ├── conflict_with_object.dart.weak.expect │ │ │ │ ├── conflict_with_object.dart.weak.modular.expect │ │ │ │ ├── conflict_with_object.dart.weak.outline.expect │ │ │ │ ├── conflict_with_object.dart.weak.transformed.expect │ │ │ │ ├── conflicts.dart │ │ │ │ ├── conflicts.dart.strong.expect │ │ │ │ ├── conflicts.dart.strong.transformed.expect │ │ │ │ ├── conflicts.dart.textual_outline.expect │ │ │ │ ├── conflicts.dart.textual_outline_modelled.expect │ │ │ │ ├── conflicts.dart.weak.expect │ │ │ │ ├── conflicts.dart.weak.modular.expect │ │ │ │ ├── conflicts.dart.weak.outline.expect │ │ │ │ ├── conflicts.dart.weak.transformed.expect │ │ │ │ ├── default_values.dart │ │ │ │ ├── default_values.dart.strong.expect │ │ │ │ ├── default_values.dart.strong.transformed.expect │ │ │ │ ├── default_values.dart.textual_outline.expect │ │ │ │ ├── default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── default_values.dart.weak.expect │ │ │ │ ├── default_values.dart.weak.modular.expect │ │ │ │ ├── default_values.dart.weak.outline.expect │ │ │ │ ├── default_values.dart.weak.transformed.expect │ │ │ │ ├── deferred_explicit_access.dart │ │ │ │ ├── deferred_explicit_access.dart.strong.expect │ │ │ │ ├── deferred_explicit_access.dart.strong.transformed.expect │ │ │ │ ├── deferred_explicit_access.dart.textual_outline.expect │ │ │ │ ├── deferred_explicit_access.dart.textual_outline_modelled.expect │ │ │ │ ├── deferred_explicit_access.dart.weak.expect │ │ │ │ ├── deferred_explicit_access.dart.weak.modular.expect │ │ │ │ ├── deferred_explicit_access.dart.weak.outline.expect │ │ │ │ ├── deferred_explicit_access.dart.weak.transformed.expect │ │ │ │ ├── deferred_explicit_access_lib.dart │ │ │ │ ├── deferred_import_hidden.dart │ │ │ │ ├── deferred_import_hidden.dart.strong.expect │ │ │ │ ├── deferred_import_hidden.dart.strong.transformed.expect │ │ │ │ ├── deferred_import_hidden.dart.textual_outline.expect │ │ │ │ ├── deferred_import_hidden.dart.textual_outline_modelled.expect │ │ │ │ ├── deferred_import_hidden.dart.weak.expect │ │ │ │ ├── deferred_import_hidden.dart.weak.modular.expect │ │ │ │ ├── deferred_import_hidden.dart.weak.outline.expect │ │ │ │ ├── deferred_import_hidden.dart.weak.transformed.expect │ │ │ │ ├── direct_instance_access.dart │ │ │ │ ├── direct_instance_access.dart.strong.expect │ │ │ │ ├── direct_instance_access.dart.strong.transformed.expect │ │ │ │ ├── direct_instance_access.dart.textual_outline.expect │ │ │ │ ├── direct_instance_access.dart.textual_outline_modelled.expect │ │ │ │ ├── direct_instance_access.dart.weak.expect │ │ │ │ ├── direct_instance_access.dart.weak.modular.expect │ │ │ │ ├── direct_instance_access.dart.weak.outline.expect │ │ │ │ ├── direct_instance_access.dart.weak.transformed.expect │ │ │ │ ├── direct_static_access.dart │ │ │ │ ├── direct_static_access.dart.strong.expect │ │ │ │ ├── direct_static_access.dart.strong.transformed.expect │ │ │ │ ├── direct_static_access.dart.textual_outline.expect │ │ │ │ ├── direct_static_access.dart.textual_outline_modelled.expect │ │ │ │ ├── direct_static_access.dart.weak.expect │ │ │ │ ├── direct_static_access.dart.weak.modular.expect │ │ │ │ ├── direct_static_access.dart.weak.outline.expect │ │ │ │ ├── direct_static_access.dart.weak.transformed.expect │ │ │ │ ├── duplicate_type_variables.dart │ │ │ │ ├── duplicate_type_variables.dart.strong.expect │ │ │ │ ├── duplicate_type_variables.dart.strong.transformed.expect │ │ │ │ ├── duplicate_type_variables.dart.textual_outline.expect │ │ │ │ ├── duplicate_type_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicate_type_variables.dart.weak.expect │ │ │ │ ├── duplicate_type_variables.dart.weak.modular.expect │ │ │ │ ├── duplicate_type_variables.dart.weak.outline.expect │ │ │ │ ├── duplicate_type_variables.dart.weak.transformed.expect │ │ │ │ ├── dynamic_invoke.dart │ │ │ │ ├── dynamic_invoke.dart.strong.expect │ │ │ │ ├── dynamic_invoke.dart.strong.transformed.expect │ │ │ │ ├── dynamic_invoke.dart.textual_outline.expect │ │ │ │ ├── dynamic_invoke.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_invoke.dart.weak.expect │ │ │ │ ├── dynamic_invoke.dart.weak.modular.expect │ │ │ │ ├── dynamic_invoke.dart.weak.outline.expect │ │ │ │ ├── dynamic_invoke.dart.weak.transformed.expect │ │ │ │ ├── explicit_extension_access.dart │ │ │ │ ├── explicit_extension_access.dart.strong.expect │ │ │ │ ├── explicit_extension_access.dart.strong.transformed.expect │ │ │ │ ├── explicit_extension_access.dart.textual_outline.expect │ │ │ │ ├── explicit_extension_access.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_extension_access.dart.weak.expect │ │ │ │ ├── explicit_extension_access.dart.weak.modular.expect │ │ │ │ ├── explicit_extension_access.dart.weak.outline.expect │ │ │ │ ├── explicit_extension_access.dart.weak.transformed.expect │ │ │ │ ├── explicit_extension_inference.dart │ │ │ │ ├── explicit_extension_inference.dart.strong.expect │ │ │ │ ├── explicit_extension_inference.dart.strong.transformed.expect │ │ │ │ ├── explicit_extension_inference.dart.textual_outline.expect │ │ │ │ ├── explicit_extension_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_extension_inference.dart.weak.expect │ │ │ │ ├── explicit_extension_inference.dart.weak.modular.expect │ │ │ │ ├── explicit_extension_inference.dart.weak.outline.expect │ │ │ │ ├── explicit_extension_inference.dart.weak.transformed.expect │ │ │ │ ├── explicit_extension_inference2.dart │ │ │ │ ├── explicit_extension_inference2.dart.strong.expect │ │ │ │ ├── explicit_extension_inference2.dart.strong.transformed.expect │ │ │ │ ├── explicit_extension_inference2.dart.textual_outline.expect │ │ │ │ ├── explicit_extension_inference2.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_extension_inference2.dart.weak.expect │ │ │ │ ├── explicit_extension_inference2.dart.weak.modular.expect │ │ │ │ ├── explicit_extension_inference2.dart.weak.outline.expect │ │ │ │ ├── explicit_extension_inference2.dart.weak.transformed.expect │ │ │ │ ├── explicit_generic_extension_access.dart │ │ │ │ ├── explicit_generic_extension_access.dart.strong.expect │ │ │ │ ├── explicit_generic_extension_access.dart.strong.transformed.expect │ │ │ │ ├── explicit_generic_extension_access.dart.textual_outline.expect │ │ │ │ ├── explicit_generic_extension_access.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_generic_extension_access.dart.weak.expect │ │ │ │ ├── explicit_generic_extension_access.dart.weak.modular.expect │ │ │ │ ├── explicit_generic_extension_access.dart.weak.outline.expect │ │ │ │ ├── explicit_generic_extension_access.dart.weak.transformed.expect │ │ │ │ ├── explicit_invalid_access.dart │ │ │ │ ├── explicit_invalid_access.dart.strong.expect │ │ │ │ ├── explicit_invalid_access.dart.strong.transformed.expect │ │ │ │ ├── explicit_invalid_access.dart.textual_outline.expect │ │ │ │ ├── explicit_invalid_access.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_invalid_access.dart.weak.expect │ │ │ │ ├── explicit_invalid_access.dart.weak.modular.expect │ │ │ │ ├── explicit_invalid_access.dart.weak.outline.expect │ │ │ │ ├── explicit_invalid_access.dart.weak.transformed.expect │ │ │ │ ├── explicit_this.dart │ │ │ │ ├── explicit_this.dart.strong.expect │ │ │ │ ├── explicit_this.dart.strong.transformed.expect │ │ │ │ ├── explicit_this.dart.textual_outline.expect │ │ │ │ ├── explicit_this.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_this.dart.weak.expect │ │ │ │ ├── explicit_this.dart.weak.modular.expect │ │ │ │ ├── explicit_this.dart.weak.outline.expect │ │ │ │ ├── explicit_this.dart.weak.transformed.expect │ │ │ │ ├── export_from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── export_twice.dart │ │ │ │ ├── export_twice.dart.strong.expect │ │ │ │ ├── export_twice.dart.strong.transformed.expect │ │ │ │ ├── export_twice.dart.textual_outline.expect │ │ │ │ ├── export_twice.dart.textual_outline_modelled.expect │ │ │ │ ├── export_twice.dart.weak.expect │ │ │ │ ├── export_twice.dart.weak.modular.expect │ │ │ │ ├── export_twice.dart.weak.outline.expect │ │ │ │ ├── export_twice.dart.weak.transformed.expect │ │ │ │ ├── export_twice_lib1.dart │ │ │ │ ├── export_twice_lib2.dart │ │ │ │ ├── extension_call.dart │ │ │ │ ├── extension_call.dart.strong.expect │ │ │ │ ├── extension_call.dart.strong.transformed.expect │ │ │ │ ├── extension_call.dart.textual_outline.expect │ │ │ │ ├── extension_call.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_call.dart.weak.expect │ │ │ │ ├── extension_call.dart.weak.modular.expect │ │ │ │ ├── extension_call.dart.weak.outline.expect │ │ │ │ ├── extension_call.dart.weak.transformed.expect │ │ │ │ ├── extension_constructor.dart │ │ │ │ ├── extension_constructor.dart.strong.expect │ │ │ │ ├── extension_constructor.dart.strong.transformed.expect │ │ │ │ ├── extension_constructor.dart.textual_outline.expect │ │ │ │ ├── extension_constructor.dart.weak.expect │ │ │ │ ├── extension_constructor.dart.weak.modular.expect │ │ │ │ ├── extension_constructor.dart.weak.outline.expect │ │ │ │ ├── extension_constructor.dart.weak.transformed.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.strong.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.strong.transformed.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.textual_outline.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.weak.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.weak.modular.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.weak.outline.expect │ │ │ │ ├── extension_field_with_type_parameter_usage.dart.weak.transformed.expect │ │ │ │ ├── extension_member_conflict.dart │ │ │ │ ├── extension_member_conflict.dart.strong.expect │ │ │ │ ├── extension_member_conflict.dart.strong.transformed.expect │ │ │ │ ├── extension_member_conflict.dart.textual_outline.expect │ │ │ │ ├── extension_member_conflict.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_member_conflict.dart.weak.expect │ │ │ │ ├── extension_member_conflict.dart.weak.modular.expect │ │ │ │ ├── extension_member_conflict.dart.weak.outline.expect │ │ │ │ ├── extension_member_conflict.dart.weak.transformed.expect │ │ │ │ ├── extension_methods.dart │ │ │ │ ├── extension_methods.dart.strong.expect │ │ │ │ ├── extension_methods.dart.strong.transformed.expect │ │ │ │ ├── extension_methods.dart.textual_outline.expect │ │ │ │ ├── extension_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_methods.dart.weak.expect │ │ │ │ ├── extension_methods.dart.weak.modular.expect │ │ │ │ ├── extension_methods.dart.weak.outline.expect │ │ │ │ ├── extension_methods.dart.weak.transformed.expect │ │ │ │ ├── extension_setter.dart │ │ │ │ ├── extension_setter.dart.strong.expect │ │ │ │ ├── extension_setter.dart.strong.transformed.expect │ │ │ │ ├── extension_setter.dart.textual_outline.expect │ │ │ │ ├── extension_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_setter.dart.weak.expect │ │ │ │ ├── extension_setter.dart.weak.modular.expect │ │ │ │ ├── extension_setter.dart.weak.outline.expect │ │ │ │ ├── extension_setter.dart.weak.transformed.expect │ │ │ │ ├── extension_setter2.dart │ │ │ │ ├── extension_setter2.dart.strong.expect │ │ │ │ ├── extension_setter2.dart.strong.transformed.expect │ │ │ │ ├── extension_setter2.dart.textual_outline.expect │ │ │ │ ├── extension_setter2.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_setter2.dart.weak.expect │ │ │ │ ├── extension_setter2.dart.weak.modular.expect │ │ │ │ ├── extension_setter2.dart.weak.outline.expect │ │ │ │ ├── extension_setter2.dart.weak.transformed.expect │ │ │ │ ├── extension_setter_error.dart │ │ │ │ ├── extension_setter_error.dart.strong.expect │ │ │ │ ├── extension_setter_error.dart.textual_outline.expect │ │ │ │ ├── extension_setter_error.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_setter_error.dart.weak.expect │ │ │ │ ├── extension_setter_error.dart.weak.modular.expect │ │ │ │ ├── extension_setter_error.dart.weak.outline.expect │ │ │ │ ├── external.dart │ │ │ │ ├── external.dart.strong.expect │ │ │ │ ├── external.dart.strong.transformed.expect │ │ │ │ ├── external.dart.textual_outline.expect │ │ │ │ ├── external.dart.textual_outline_modelled.expect │ │ │ │ ├── external.dart.weak.expect │ │ │ │ ├── external.dart.weak.modular.expect │ │ │ │ ├── external.dart.weak.outline.expect │ │ │ │ ├── external.dart.weak.transformed.expect │ │ │ │ ├── generic_function_in_generic_extension.dart │ │ │ │ ├── generic_function_in_generic_extension.dart.strong.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.strong.transformed.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.textual_outline.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.weak.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.weak.modular.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.weak.outline.expect │ │ │ │ ├── generic_function_in_generic_extension.dart.weak.transformed.expect │ │ │ │ ├── getter_setter_conflict.dart │ │ │ │ ├── getter_setter_conflict.dart.strong.expect │ │ │ │ ├── getter_setter_conflict.dart.strong.transformed.expect │ │ │ │ ├── getter_setter_conflict.dart.textual_outline.expect │ │ │ │ ├── getter_setter_conflict.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_setter_conflict.dart.weak.expect │ │ │ │ ├── getter_setter_conflict.dart.weak.modular.expect │ │ │ │ ├── getter_setter_conflict.dart.weak.outline.expect │ │ │ │ ├── getter_setter_conflict.dart.weak.transformed.expect │ │ │ │ ├── if_null.dart │ │ │ │ ├── if_null.dart.strong.expect │ │ │ │ ├── if_null.dart.strong.transformed.expect │ │ │ │ ├── if_null.dart.textual_outline.expect │ │ │ │ ├── if_null.dart.textual_outline_modelled.expect │ │ │ │ ├── if_null.dart.weak.expect │ │ │ │ ├── if_null.dart.weak.modular.expect │ │ │ │ ├── if_null.dart.weak.outline.expect │ │ │ │ ├── if_null.dart.weak.transformed.expect │ │ │ │ ├── if_null2.dart │ │ │ │ ├── if_null2.dart.strong.expect │ │ │ │ ├── if_null2.dart.strong.transformed.expect │ │ │ │ ├── if_null2.dart.textual_outline.expect │ │ │ │ ├── if_null2.dart.textual_outline_modelled.expect │ │ │ │ ├── if_null2.dart.weak.expect │ │ │ │ ├── if_null2.dart.weak.modular.expect │ │ │ │ ├── if_null2.dart.weak.outline.expect │ │ │ │ ├── if_null2.dart.weak.transformed.expect │ │ │ │ ├── implicit_extension_inference.dart │ │ │ │ ├── implicit_extension_inference.dart.strong.expect │ │ │ │ ├── implicit_extension_inference.dart.strong.transformed.expect │ │ │ │ ├── implicit_extension_inference.dart.textual_outline.expect │ │ │ │ ├── implicit_extension_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_extension_inference.dart.weak.expect │ │ │ │ ├── implicit_extension_inference.dart.weak.modular.expect │ │ │ │ ├── implicit_extension_inference.dart.weak.outline.expect │ │ │ │ ├── implicit_extension_inference.dart.weak.transformed.expect │ │ │ │ ├── implicit_extension_inference2.dart │ │ │ │ ├── implicit_extension_inference2.dart.strong.expect │ │ │ │ ├── implicit_extension_inference2.dart.strong.transformed.expect │ │ │ │ ├── implicit_extension_inference2.dart.textual_outline.expect │ │ │ │ ├── implicit_extension_inference2.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_extension_inference2.dart.weak.expect │ │ │ │ ├── implicit_extension_inference2.dart.weak.modular.expect │ │ │ │ ├── implicit_extension_inference2.dart.weak.outline.expect │ │ │ │ ├── implicit_extension_inference2.dart.weak.transformed.expect │ │ │ │ ├── implicit_this.dart │ │ │ │ ├── implicit_this.dart.strong.expect │ │ │ │ ├── implicit_this.dart.strong.transformed.expect │ │ │ │ ├── implicit_this.dart.textual_outline.expect │ │ │ │ ├── implicit_this.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_this.dart.weak.expect │ │ │ │ ├── implicit_this.dart.weak.modular.expect │ │ │ │ ├── implicit_this.dart.weak.outline.expect │ │ │ │ ├── implicit_this.dart.weak.transformed.expect │ │ │ │ ├── import_from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ └── test.options │ │ │ │ ├── import_via_prefix.dart │ │ │ │ ├── import_via_prefix.dart.strong.expect │ │ │ │ ├── import_via_prefix.dart.strong.transformed.expect │ │ │ │ ├── import_via_prefix.dart.textual_outline.expect │ │ │ │ ├── import_via_prefix.dart.textual_outline_modelled.expect │ │ │ │ ├── import_via_prefix.dart.weak.expect │ │ │ │ ├── import_via_prefix.dart.weak.modular.expect │ │ │ │ ├── import_via_prefix.dart.weak.outline.expect │ │ │ │ ├── import_via_prefix.dart.weak.transformed.expect │ │ │ │ ├── import_via_prefix_lib.dart │ │ │ │ ├── index.dart │ │ │ │ ├── index.dart.strong.expect │ │ │ │ ├── index.dart.strong.transformed.expect │ │ │ │ ├── index.dart.textual_outline.expect │ │ │ │ ├── index.dart.textual_outline_modelled.expect │ │ │ │ ├── index.dart.weak.expect │ │ │ │ ├── index.dart.weak.modular.expect │ │ │ │ ├── index.dart.weak.outline.expect │ │ │ │ ├── index.dart.weak.transformed.expect │ │ │ │ ├── index2.dart │ │ │ │ ├── index2.dart.strong.expect │ │ │ │ ├── index2.dart.strong.transformed.expect │ │ │ │ ├── index2.dart.textual_outline.expect │ │ │ │ ├── index2.dart.textual_outline_modelled.expect │ │ │ │ ├── index2.dart.weak.expect │ │ │ │ ├── index2.dart.weak.modular.expect │ │ │ │ ├── index2.dart.weak.outline.expect │ │ │ │ ├── index2.dart.weak.transformed.expect │ │ │ │ ├── instance_access.dart │ │ │ │ ├── instance_access.dart.strong.expect │ │ │ │ ├── instance_access.dart.strong.transformed.expect │ │ │ │ ├── instance_access.dart.textual_outline.expect │ │ │ │ ├── instance_access.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_access.dart.weak.expect │ │ │ │ ├── instance_access.dart.weak.modular.expect │ │ │ │ ├── instance_access.dart.weak.outline.expect │ │ │ │ ├── instance_access.dart.weak.transformed.expect │ │ │ │ ├── instance_access_of_static.dart │ │ │ │ ├── instance_access_of_static.dart.strong.expect │ │ │ │ ├── instance_access_of_static.dart.strong.transformed.expect │ │ │ │ ├── instance_access_of_static.dart.textual_outline.expect │ │ │ │ ├── instance_access_of_static.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_access_of_static.dart.weak.expect │ │ │ │ ├── instance_access_of_static.dart.weak.modular.expect │ │ │ │ ├── instance_access_of_static.dart.weak.outline.expect │ │ │ │ ├── instance_access_of_static.dart.weak.transformed.expect │ │ │ │ ├── instance_members.dart │ │ │ │ ├── instance_members.dart.strong.expect │ │ │ │ ├── instance_members.dart.strong.transformed.expect │ │ │ │ ├── instance_members.dart.textual_outline.expect │ │ │ │ ├── instance_members.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_members.dart.weak.expect │ │ │ │ ├── instance_members.dart.weak.modular.expect │ │ │ │ ├── instance_members.dart.weak.outline.expect │ │ │ │ ├── instance_members.dart.weak.transformed.expect │ │ │ │ ├── instance_tearoff.dart │ │ │ │ ├── instance_tearoff.dart.strong.expect │ │ │ │ ├── instance_tearoff.dart.strong.transformed.expect │ │ │ │ ├── instance_tearoff.dart.textual_outline.expect │ │ │ │ ├── instance_tearoff.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_tearoff.dart.weak.expect │ │ │ │ ├── instance_tearoff.dart.weak.modular.expect │ │ │ │ ├── instance_tearoff.dart.weak.outline.expect │ │ │ │ ├── instance_tearoff.dart.weak.transformed.expect │ │ │ │ ├── internal_resolution.dart │ │ │ │ ├── internal_resolution.dart.strong.expect │ │ │ │ ├── internal_resolution.dart.strong.transformed.expect │ │ │ │ ├── internal_resolution.dart.textual_outline.expect │ │ │ │ ├── internal_resolution.dart.textual_outline_modelled.expect │ │ │ │ ├── internal_resolution.dart.weak.expect │ │ │ │ ├── internal_resolution.dart.weak.modular.expect │ │ │ │ ├── internal_resolution.dart.weak.outline.expect │ │ │ │ ├── internal_resolution.dart.weak.transformed.expect │ │ │ │ ├── invalid_explicit_access.dart │ │ │ │ ├── invalid_explicit_access.dart.strong.expect │ │ │ │ ├── invalid_explicit_access.dart.strong.transformed.expect │ │ │ │ ├── invalid_explicit_access.dart.textual_outline.expect │ │ │ │ ├── invalid_explicit_access.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_explicit_access.dart.weak.expect │ │ │ │ ├── invalid_explicit_access.dart.weak.modular.expect │ │ │ │ ├── invalid_explicit_access.dart.weak.outline.expect │ │ │ │ ├── invalid_explicit_access.dart.weak.transformed.expect │ │ │ │ ├── invalid_explicit_static_access.dart │ │ │ │ ├── invalid_explicit_static_access.dart.strong.expect │ │ │ │ ├── invalid_explicit_static_access.dart.strong.transformed.expect │ │ │ │ ├── invalid_explicit_static_access.dart.textual_outline.expect │ │ │ │ ├── invalid_explicit_static_access.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_explicit_static_access.dart.weak.expect │ │ │ │ ├── invalid_explicit_static_access.dart.weak.modular.expect │ │ │ │ ├── invalid_explicit_static_access.dart.weak.outline.expect │ │ │ │ ├── invalid_explicit_static_access.dart.weak.transformed.expect │ │ │ │ ├── issue38600.dart │ │ │ │ ├── issue38600.dart.strong.expect │ │ │ │ ├── issue38600.dart.strong.transformed.expect │ │ │ │ ├── issue38600.dart.textual_outline.expect │ │ │ │ ├── issue38600.dart.weak.expect │ │ │ │ ├── issue38600.dart.weak.modular.expect │ │ │ │ ├── issue38600.dart.weak.outline.expect │ │ │ │ ├── issue38600.dart.weak.transformed.expect │ │ │ │ ├── issue38712.dart │ │ │ │ ├── issue38712.dart.strong.expect │ │ │ │ ├── issue38712.dart.strong.transformed.expect │ │ │ │ ├── issue38712.dart.textual_outline.expect │ │ │ │ ├── issue38712.dart.weak.expect │ │ │ │ ├── issue38712.dart.weak.modular.expect │ │ │ │ ├── issue38712.dart.weak.outline.expect │ │ │ │ ├── issue38712.dart.weak.transformed.expect │ │ │ │ ├── issue38713.dart │ │ │ │ ├── issue38713.dart.strong.expect │ │ │ │ ├── issue38713.dart.strong.transformed.expect │ │ │ │ ├── issue38713.dart.textual_outline.expect │ │ │ │ ├── issue38713.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38713.dart.weak.expect │ │ │ │ ├── issue38713.dart.weak.modular.expect │ │ │ │ ├── issue38713.dart.weak.outline.expect │ │ │ │ ├── issue38713.dart.weak.transformed.expect │ │ │ │ ├── issue38745.dart │ │ │ │ ├── issue38745.dart.strong.expect │ │ │ │ ├── issue38745.dart.strong.transformed.expect │ │ │ │ ├── issue38745.dart.textual_outline.expect │ │ │ │ ├── issue38745.dart.weak.expect │ │ │ │ ├── issue38745.dart.weak.modular.expect │ │ │ │ ├── issue38745.dart.weak.outline.expect │ │ │ │ ├── issue38745.dart.weak.transformed.expect │ │ │ │ ├── issue38750.dart │ │ │ │ ├── issue38750.dart.strong.expect │ │ │ │ ├── issue38750.dart.strong.transformed.expect │ │ │ │ ├── issue38750.dart.textual_outline.expect │ │ │ │ ├── issue38750.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38750.dart.weak.expect │ │ │ │ ├── issue38750.dart.weak.modular.expect │ │ │ │ ├── issue38750.dart.weak.outline.expect │ │ │ │ ├── issue38750.dart.weak.transformed.expect │ │ │ │ ├── issue38750_lib1.dart │ │ │ │ ├── issue38750_lib2.dart │ │ │ │ ├── issue38755.dart │ │ │ │ ├── issue38755.dart.strong.expect │ │ │ │ ├── issue38755.dart.strong.transformed.expect │ │ │ │ ├── issue38755.dart.textual_outline.expect │ │ │ │ ├── issue38755.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38755.dart.weak.expect │ │ │ │ ├── issue38755.dart.weak.modular.expect │ │ │ │ ├── issue38755.dart.weak.outline.expect │ │ │ │ ├── issue38755.dart.weak.transformed.expect │ │ │ │ ├── issue38915.dart │ │ │ │ ├── issue38915.dart.strong.expect │ │ │ │ ├── issue38915.dart.strong.transformed.expect │ │ │ │ ├── issue38915.dart.textual_outline.expect │ │ │ │ ├── issue38915.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38915.dart.weak.expect │ │ │ │ ├── issue38915.dart.weak.modular.expect │ │ │ │ ├── issue38915.dart.weak.outline.expect │ │ │ │ ├── issue38915.dart.weak.transformed.expect │ │ │ │ ├── issue39527.dart │ │ │ │ ├── issue39527.dart.strong.expect │ │ │ │ ├── issue39527.dart.strong.transformed.expect │ │ │ │ ├── issue39527.dart.textual_outline.expect │ │ │ │ ├── issue39527.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39527.dart.weak.expect │ │ │ │ ├── issue39527.dart.weak.modular.expect │ │ │ │ ├── issue39527.dart.weak.outline.expect │ │ │ │ ├── issue39527.dart.weak.transformed.expect │ │ │ │ ├── issue39889.dart │ │ │ │ ├── issue39889.dart.strong.expect │ │ │ │ ├── issue39889.dart.strong.transformed.expect │ │ │ │ ├── issue39889.dart.textual_outline.expect │ │ │ │ ├── issue39889.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39889.dart.weak.expect │ │ │ │ ├── issue39889.dart.weak.modular.expect │ │ │ │ ├── issue39889.dart.weak.outline.expect │ │ │ │ ├── issue39889.dart.weak.transformed.expect │ │ │ │ ├── issue39938 │ │ │ │ │ ├── issue39938.dart │ │ │ │ │ ├── issue39938.dart.strong.expect │ │ │ │ │ ├── issue39938.dart.strong.transformed.expect │ │ │ │ │ ├── issue39938.dart.textual_outline.expect │ │ │ │ │ ├── issue39938.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue39938.dart.weak.expect │ │ │ │ │ ├── issue39938.dart.weak.modular.expect │ │ │ │ │ ├── issue39938.dart.weak.outline.expect │ │ │ │ │ ├── issue39938.dart.weak.transformed.expect │ │ │ │ │ ├── issue39938_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue40596.dart │ │ │ │ ├── issue40596.dart.strong.expect │ │ │ │ ├── issue40596.dart.strong.transformed.expect │ │ │ │ ├── issue40596.dart.textual_outline.expect │ │ │ │ ├── issue40596.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40596.dart.weak.expect │ │ │ │ ├── issue40596.dart.weak.modular.expect │ │ │ │ ├── issue40596.dart.weak.outline.expect │ │ │ │ ├── issue40596.dart.weak.transformed.expect │ │ │ │ ├── issue40713.dart │ │ │ │ ├── issue40713.dart.strong.expect │ │ │ │ ├── issue40713.dart.strong.transformed.expect │ │ │ │ ├── issue40713.dart.textual_outline.expect │ │ │ │ ├── issue40713.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40713.dart.weak.expect │ │ │ │ ├── issue40713.dart.weak.modular.expect │ │ │ │ ├── issue40713.dart.weak.outline.expect │ │ │ │ ├── issue40713.dart.weak.transformed.expect │ │ │ │ ├── issue40713_2.dart │ │ │ │ ├── issue40713_2.dart.strong.expect │ │ │ │ ├── issue40713_2.dart.strong.transformed.expect │ │ │ │ ├── issue40713_2.dart.textual_outline.expect │ │ │ │ ├── issue40713_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40713_2.dart.weak.expect │ │ │ │ ├── issue40713_2.dart.weak.modular.expect │ │ │ │ ├── issue40713_2.dart.weak.outline.expect │ │ │ │ ├── issue40713_2.dart.weak.transformed.expect │ │ │ │ ├── issue40816.dart │ │ │ │ ├── issue40816.dart.strong.expect │ │ │ │ ├── issue40816.dart.strong.transformed.expect │ │ │ │ ├── issue40816.dart.textual_outline.expect │ │ │ │ ├── issue40816.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40816.dart.weak.expect │ │ │ │ ├── issue40816.dart.weak.modular.expect │ │ │ │ ├── issue40816.dart.weak.outline.expect │ │ │ │ ├── issue40816.dart.weak.transformed.expect │ │ │ │ ├── issue43218.dart │ │ │ │ ├── issue43218.dart.strong.expect │ │ │ │ ├── issue43218.dart.strong.transformed.expect │ │ │ │ ├── issue43218.dart.textual_outline.expect │ │ │ │ ├── issue43218.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43218.dart.weak.expect │ │ │ │ ├── issue43218.dart.weak.modular.expect │ │ │ │ ├── issue43218.dart.weak.outline.expect │ │ │ │ ├── issue43218.dart.weak.transformed.expect │ │ │ │ ├── issue44003.dart │ │ │ │ ├── issue44003.dart.strong.expect │ │ │ │ ├── issue44003.dart.strong.transformed.expect │ │ │ │ ├── issue44003.dart.textual_outline.expect │ │ │ │ ├── issue44003.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44003.dart.weak.expect │ │ │ │ ├── issue44003.dart.weak.modular.expect │ │ │ │ ├── issue44003.dart.weak.outline.expect │ │ │ │ ├── issue44003.dart.weak.transformed.expect │ │ │ │ ├── issue44844.dart │ │ │ │ ├── issue44844.dart.strong.expect │ │ │ │ ├── issue44844.dart.strong.transformed.expect │ │ │ │ ├── issue44844.dart.textual_outline.expect │ │ │ │ ├── issue44844.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44844.dart.weak.expect │ │ │ │ ├── issue44844.dart.weak.modular.expect │ │ │ │ ├── issue44844.dart.weak.outline.expect │ │ │ │ ├── issue44844.dart.weak.transformed.expect │ │ │ │ ├── issue47345.dart │ │ │ │ ├── issue47345.dart.strong.expect │ │ │ │ ├── issue47345.dart.strong.transformed.expect │ │ │ │ ├── issue47345.dart.textual_outline.expect │ │ │ │ ├── issue47345.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47345.dart.weak.expect │ │ │ │ ├── issue47345.dart.weak.modular.expect │ │ │ │ ├── issue47345.dart.weak.outline.expect │ │ │ │ ├── issue47345.dart.weak.transformed.expect │ │ │ │ ├── language_issue1182.dart │ │ │ │ ├── language_issue1182.dart.strong.expect │ │ │ │ ├── language_issue1182.dart.strong.transformed.expect │ │ │ │ ├── language_issue1182.dart.textual_outline.expect │ │ │ │ ├── language_issue1182.dart.textual_outline_modelled.expect │ │ │ │ ├── language_issue1182.dart.weak.expect │ │ │ │ ├── language_issue1182.dart.weak.modular.expect │ │ │ │ ├── language_issue1182.dart.weak.outline.expect │ │ │ │ ├── language_issue1182.dart.weak.transformed.expect │ │ │ │ ├── language_issue1182_2.dart │ │ │ │ ├── language_issue1182_2.dart.strong.expect │ │ │ │ ├── language_issue1182_2.dart.strong.transformed.expect │ │ │ │ ├── language_issue1182_2.dart.textual_outline.expect │ │ │ │ ├── language_issue1182_2.dart.textual_outline_modelled.expect │ │ │ │ ├── language_issue1182_2.dart.weak.expect │ │ │ │ ├── language_issue1182_2.dart.weak.modular.expect │ │ │ │ ├── language_issue1182_2.dart.weak.outline.expect │ │ │ │ ├── language_issue1182_2.dart.weak.transformed.expect │ │ │ │ ├── missing_toplevel.dart │ │ │ │ ├── missing_toplevel.dart.strong.expect │ │ │ │ ├── missing_toplevel.dart.strong.transformed.expect │ │ │ │ ├── missing_toplevel.dart.textual_outline.expect │ │ │ │ ├── missing_toplevel.dart.textual_outline_modelled.expect │ │ │ │ ├── missing_toplevel.dart.weak.expect │ │ │ │ ├── missing_toplevel.dart.weak.modular.expect │ │ │ │ ├── missing_toplevel.dart.weak.outline.expect │ │ │ │ ├── missing_toplevel.dart.weak.transformed.expect │ │ │ │ ├── multi_export.dart │ │ │ │ ├── multi_export.dart.strong.expect │ │ │ │ ├── multi_export.dart.strong.transformed.expect │ │ │ │ ├── multi_export.dart.textual_outline.expect │ │ │ │ ├── multi_export.dart.textual_outline_modelled.expect │ │ │ │ ├── multi_export.dart.weak.expect │ │ │ │ ├── multi_export.dart.weak.modular.expect │ │ │ │ ├── multi_export.dart.weak.outline.expect │ │ │ │ ├── multi_export.dart.weak.transformed.expect │ │ │ │ ├── multi_export_lib.dart │ │ │ │ ├── multi_export_lib1.dart │ │ │ │ ├── multi_export_lib2.dart │ │ │ │ ├── multi_export_lib3.dart │ │ │ │ ├── multi_export_lib4.dart │ │ │ │ ├── nested_on_types.dart │ │ │ │ ├── nested_on_types.dart.strong.expect │ │ │ │ ├── nested_on_types.dart.strong.transformed.expect │ │ │ │ ├── nested_on_types.dart.textual_outline.expect │ │ │ │ ├── nested_on_types.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_on_types.dart.weak.expect │ │ │ │ ├── nested_on_types.dart.weak.modular.expect │ │ │ │ ├── nested_on_types.dart.weak.outline.expect │ │ │ │ ├── nested_on_types.dart.weak.transformed.expect │ │ │ │ ├── null_aware.dart │ │ │ │ ├── null_aware.dart.strong.expect │ │ │ │ ├── null_aware.dart.strong.transformed.expect │ │ │ │ ├── null_aware.dart.textual_outline.expect │ │ │ │ ├── null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware.dart.weak.expect │ │ │ │ ├── null_aware.dart.weak.modular.expect │ │ │ │ ├── null_aware.dart.weak.outline.expect │ │ │ │ ├── null_aware.dart.weak.transformed.expect │ │ │ │ ├── null_aware2.dart │ │ │ │ ├── null_aware2.dart.strong.expect │ │ │ │ ├── null_aware2.dart.strong.transformed.expect │ │ │ │ ├── null_aware2.dart.textual_outline.expect │ │ │ │ ├── null_aware2.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware2.dart.weak.expect │ │ │ │ ├── null_aware2.dart.weak.modular.expect │ │ │ │ ├── null_aware2.dart.weak.outline.expect │ │ │ │ ├── null_aware2.dart.weak.transformed.expect │ │ │ │ ├── null_aware_set.dart │ │ │ │ ├── null_aware_set.dart.strong.expect │ │ │ │ ├── null_aware_set.dart.strong.transformed.expect │ │ │ │ ├── null_aware_set.dart.textual_outline.expect │ │ │ │ ├── null_aware_set.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_set.dart.weak.expect │ │ │ │ ├── null_aware_set.dart.weak.modular.expect │ │ │ │ ├── null_aware_set.dart.weak.outline.expect │ │ │ │ ├── null_aware_set.dart.weak.transformed.expect │ │ │ │ ├── nullable_access.dart │ │ │ │ ├── nullable_access.dart.strong.expect │ │ │ │ ├── nullable_access.dart.strong.transformed.expect │ │ │ │ ├── nullable_access.dart.textual_outline.expect │ │ │ │ ├── nullable_access.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_access.dart.weak.expect │ │ │ │ ├── nullable_access.dart.weak.modular.expect │ │ │ │ ├── nullable_access.dart.weak.outline.expect │ │ │ │ ├── nullable_access.dart.weak.transformed.expect │ │ │ │ ├── on_function_type.dart │ │ │ │ ├── on_function_type.dart.strong.expect │ │ │ │ ├── on_function_type.dart.strong.transformed.expect │ │ │ │ ├── on_function_type.dart.textual_outline.expect │ │ │ │ ├── on_function_type.dart.textual_outline_modelled.expect │ │ │ │ ├── on_function_type.dart.weak.expect │ │ │ │ ├── on_function_type.dart.weak.modular.expect │ │ │ │ ├── on_function_type.dart.weak.outline.expect │ │ │ │ ├── on_function_type.dart.weak.transformed.expect │ │ │ │ ├── on_type_inference.dart │ │ │ │ ├── on_type_inference.dart.strong.expect │ │ │ │ ├── on_type_inference.dart.strong.transformed.expect │ │ │ │ ├── on_type_inference.dart.textual_outline.expect │ │ │ │ ├── on_type_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── on_type_inference.dart.weak.expect │ │ │ │ ├── on_type_inference.dart.weak.modular.expect │ │ │ │ ├── on_type_inference.dart.weak.outline.expect │ │ │ │ ├── on_type_inference.dart.weak.transformed.expect │ │ │ │ ├── on_type_inference2.dart │ │ │ │ ├── on_type_inference2.dart.strong.expect │ │ │ │ ├── on_type_inference2.dart.strong.transformed.expect │ │ │ │ ├── on_type_inference2.dart.textual_outline.expect │ │ │ │ ├── on_type_inference2.dart.textual_outline_modelled.expect │ │ │ │ ├── on_type_inference2.dart.weak.expect │ │ │ │ ├── on_type_inference2.dart.weak.modular.expect │ │ │ │ ├── on_type_inference2.dart.weak.outline.expect │ │ │ │ ├── on_type_inference2.dart.weak.transformed.expect │ │ │ │ ├── on_type_variable_inference.dart │ │ │ │ ├── on_type_variable_inference.dart.strong.expect │ │ │ │ ├── on_type_variable_inference.dart.strong.transformed.expect │ │ │ │ ├── on_type_variable_inference.dart.textual_outline.expect │ │ │ │ ├── on_type_variable_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── on_type_variable_inference.dart.weak.expect │ │ │ │ ├── on_type_variable_inference.dart.weak.modular.expect │ │ │ │ ├── on_type_variable_inference.dart.weak.outline.expect │ │ │ │ ├── on_type_variable_inference.dart.weak.transformed.expect │ │ │ │ ├── on_type_variable_inference2.dart │ │ │ │ ├── on_type_variable_inference2.dart.strong.expect │ │ │ │ ├── on_type_variable_inference2.dart.strong.transformed.expect │ │ │ │ ├── on_type_variable_inference2.dart.textual_outline.expect │ │ │ │ ├── on_type_variable_inference2.dart.textual_outline_modelled.expect │ │ │ │ ├── on_type_variable_inference2.dart.weak.expect │ │ │ │ ├── on_type_variable_inference2.dart.weak.modular.expect │ │ │ │ ├── on_type_variable_inference2.dart.weak.outline.expect │ │ │ │ ├── on_type_variable_inference2.dart.weak.transformed.expect │ │ │ │ ├── operators.dart │ │ │ │ ├── operators.dart.strong.expect │ │ │ │ ├── operators.dart.strong.transformed.expect │ │ │ │ ├── operators.dart.textual_outline.expect │ │ │ │ ├── operators.dart.textual_outline_modelled.expect │ │ │ │ ├── operators.dart.weak.expect │ │ │ │ ├── operators.dart.weak.modular.expect │ │ │ │ ├── operators.dart.weak.outline.expect │ │ │ │ ├── operators.dart.weak.transformed.expect │ │ │ │ ├── other_kinds.dart │ │ │ │ ├── other_kinds.dart.strong.expect │ │ │ │ ├── other_kinds.dart.strong.transformed.expect │ │ │ │ ├── other_kinds.dart.textual_outline.expect │ │ │ │ ├── other_kinds.dart.textual_outline_modelled.expect │ │ │ │ ├── other_kinds.dart.weak.expect │ │ │ │ ├── other_kinds.dart.weak.modular.expect │ │ │ │ ├── other_kinds.dart.weak.outline.expect │ │ │ │ ├── other_kinds.dart.weak.transformed.expect │ │ │ │ ├── post_inc.dart │ │ │ │ ├── post_inc.dart.strong.expect │ │ │ │ ├── post_inc.dart.strong.transformed.expect │ │ │ │ ├── post_inc.dart.textual_outline.expect │ │ │ │ ├── post_inc.dart.textual_outline_modelled.expect │ │ │ │ ├── post_inc.dart.weak.expect │ │ │ │ ├── post_inc.dart.weak.modular.expect │ │ │ │ ├── post_inc.dart.weak.outline.expect │ │ │ │ ├── post_inc.dart.weak.transformed.expect │ │ │ │ ├── private_members.dart │ │ │ │ ├── private_members.dart.strong.expect │ │ │ │ ├── private_members.dart.strong.transformed.expect │ │ │ │ ├── private_members.dart.textual_outline.expect │ │ │ │ ├── private_members.dart.textual_outline_modelled.expect │ │ │ │ ├── private_members.dart.weak.expect │ │ │ │ ├── private_members.dart.weak.modular.expect │ │ │ │ ├── private_members.dart.weak.outline.expect │ │ │ │ ├── private_members.dart.weak.transformed.expect │ │ │ │ ├── private_members_lib.dart │ │ │ │ ├── static_access.dart │ │ │ │ ├── static_access.dart.strong.expect │ │ │ │ ├── static_access.dart.strong.transformed.expect │ │ │ │ ├── static_access.dart.textual_outline.expect │ │ │ │ ├── static_access.dart.textual_outline_modelled.expect │ │ │ │ ├── static_access.dart.weak.expect │ │ │ │ ├── static_access.dart.weak.modular.expect │ │ │ │ ├── static_access.dart.weak.outline.expect │ │ │ │ ├── static_access.dart.weak.transformed.expect │ │ │ │ ├── static_access_of_instance.dart │ │ │ │ ├── static_access_of_instance.dart.strong.expect │ │ │ │ ├── static_access_of_instance.dart.strong.transformed.expect │ │ │ │ ├── static_access_of_instance.dart.textual_outline.expect │ │ │ │ ├── static_access_of_instance.dart.textual_outline_modelled.expect │ │ │ │ ├── static_access_of_instance.dart.weak.expect │ │ │ │ ├── static_access_of_instance.dart.weak.modular.expect │ │ │ │ ├── static_access_of_instance.dart.weak.outline.expect │ │ │ │ ├── static_access_of_instance.dart.weak.transformed.expect │ │ │ │ ├── tear_offs.dart │ │ │ │ ├── tear_offs.dart.strong.expect │ │ │ │ ├── tear_offs.dart.strong.transformed.expect │ │ │ │ ├── tear_offs.dart.textual_outline.expect │ │ │ │ ├── tear_offs.dart.textual_outline_modelled.expect │ │ │ │ ├── tear_offs.dart.weak.expect │ │ │ │ ├── tear_offs.dart.weak.modular.expect │ │ │ │ ├── tear_offs.dart.weak.outline.expect │ │ │ │ ├── tear_offs.dart.weak.transformed.expect │ │ │ │ ├── tear_offs2.dart │ │ │ │ ├── tear_offs2.dart.strong.expect │ │ │ │ ├── tear_offs2.dart.strong.transformed.expect │ │ │ │ ├── tear_offs2.dart.textual_outline.expect │ │ │ │ ├── tear_offs2.dart.textual_outline_modelled.expect │ │ │ │ ├── tear_offs2.dart.weak.expect │ │ │ │ ├── tear_offs2.dart.weak.modular.expect │ │ │ │ ├── tear_offs2.dart.weak.outline.expect │ │ │ │ ├── tear_offs2.dart.weak.transformed.expect │ │ │ │ ├── type_variable_bound.dart │ │ │ │ ├── type_variable_bound.dart.strong.expect │ │ │ │ ├── type_variable_bound.dart.strong.transformed.expect │ │ │ │ ├── type_variable_bound.dart.textual_outline.expect │ │ │ │ ├── type_variable_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_bound.dart.weak.expect │ │ │ │ ├── type_variable_bound.dart.weak.modular.expect │ │ │ │ ├── type_variable_bound.dart.weak.outline.expect │ │ │ │ ├── type_variable_bound.dart.weak.transformed.expect │ │ │ │ ├── type_variable_bound2.dart │ │ │ │ ├── type_variable_bound2.dart.strong.expect │ │ │ │ ├── type_variable_bound2.dart.strong.transformed.expect │ │ │ │ ├── type_variable_bound2.dart.textual_outline.expect │ │ │ │ ├── type_variable_bound2.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_bound2.dart.weak.expect │ │ │ │ ├── type_variable_bound2.dart.weak.modular.expect │ │ │ │ ├── type_variable_bound2.dart.weak.outline.expect │ │ │ │ ├── type_variable_bound2.dart.weak.transformed.expect │ │ │ │ ├── type_variables.dart │ │ │ │ ├── type_variables.dart.strong.expect │ │ │ │ ├── type_variables.dart.strong.transformed.expect │ │ │ │ ├── type_variables.dart.textual_outline.expect │ │ │ │ ├── type_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variables.dart.weak.expect │ │ │ │ ├── type_variables.dart.weak.modular.expect │ │ │ │ ├── type_variables.dart.weak.outline.expect │ │ │ │ ├── type_variables.dart.weak.transformed.expect │ │ │ │ ├── unnamed_extensions.dart │ │ │ │ ├── unnamed_extensions.dart.strong.expect │ │ │ │ ├── unnamed_extensions.dart.strong.transformed.expect │ │ │ │ ├── unnamed_extensions.dart.textual_outline.expect │ │ │ │ ├── unnamed_extensions.dart.textual_outline_modelled.expect │ │ │ │ ├── unnamed_extensions.dart.weak.expect │ │ │ │ ├── unnamed_extensions.dart.weak.modular.expect │ │ │ │ ├── unnamed_extensions.dart.weak.outline.expect │ │ │ │ ├── unnamed_extensions.dart.weak.transformed.expect │ │ │ │ ├── use_this.dart │ │ │ │ ├── use_this.dart.strong.expect │ │ │ │ ├── use_this.dart.strong.transformed.expect │ │ │ │ ├── use_this.dart.textual_outline.expect │ │ │ │ ├── use_this.dart.textual_outline_modelled.expect │ │ │ │ ├── use_this.dart.weak.expect │ │ │ │ ├── use_this.dart.weak.modular.expect │ │ │ │ ├── use_this.dart.weak.outline.expect │ │ │ │ └── use_this.dart.weak.transformed.expect │ │ │ ├── general │ │ │ │ ├── DeltaBlue.dart │ │ │ │ ├── DeltaBlue.dart.strong.expect │ │ │ │ ├── DeltaBlue.dart.strong.transformed.expect │ │ │ │ ├── DeltaBlue.dart.textual_outline.expect │ │ │ │ ├── DeltaBlue.dart.textual_outline_modelled.expect │ │ │ │ ├── DeltaBlue.dart.weak.expect │ │ │ │ ├── DeltaBlue.dart.weak.modular.expect │ │ │ │ ├── DeltaBlue.dart.weak.outline.expect │ │ │ │ ├── DeltaBlue.dart.weak.transformed.expect │ │ │ │ ├── abstract_instantiation.dart │ │ │ │ ├── abstract_instantiation.dart.strong.expect │ │ │ │ ├── abstract_instantiation.dart.strong.transformed.expect │ │ │ │ ├── abstract_instantiation.dart.textual_outline.expect │ │ │ │ ├── abstract_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_instantiation.dart.weak.expect │ │ │ │ ├── abstract_instantiation.dart.weak.modular.expect │ │ │ │ ├── abstract_instantiation.dart.weak.outline.expect │ │ │ │ ├── abstract_instantiation.dart.weak.transformed.expect │ │ │ │ ├── abstract_members.dart │ │ │ │ ├── abstract_members.dart.strong.expect │ │ │ │ ├── abstract_members.dart.textual_outline.expect │ │ │ │ ├── abstract_members.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_members.dart.weak.expect │ │ │ │ ├── abstract_members.dart.weak.modular.expect │ │ │ │ ├── abstract_members.dart.weak.outline.expect │ │ │ │ ├── abstract_operator_override.dart │ │ │ │ ├── abstract_operator_override.dart.strong.expect │ │ │ │ ├── abstract_operator_override.dart.strong.transformed.expect │ │ │ │ ├── abstract_operator_override.dart.textual_outline.expect │ │ │ │ ├── abstract_operator_override.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_operator_override.dart.weak.expect │ │ │ │ ├── abstract_operator_override.dart.weak.modular.expect │ │ │ │ ├── abstract_operator_override.dart.weak.outline.expect │ │ │ │ ├── abstract_operator_override.dart.weak.transformed.expect │ │ │ │ ├── abstract_overrides_concrete.dart │ │ │ │ ├── abstract_overrides_concrete.dart.strong.expect │ │ │ │ ├── abstract_overrides_concrete.dart.strong.transformed.expect │ │ │ │ ├── abstract_overrides_concrete.dart.textual_outline.expect │ │ │ │ ├── abstract_overrides_concrete.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_overrides_concrete.dart.weak.expect │ │ │ │ ├── abstract_overrides_concrete.dart.weak.modular.expect │ │ │ │ ├── abstract_overrides_concrete.dart.weak.outline.expect │ │ │ │ ├── abstract_overrides_concrete.dart.weak.transformed.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.strong.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.strong.transformed.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.textual_outline.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.weak.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.weak.modular.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.weak.outline.expect │ │ │ │ ├── abstract_overrides_concrete_with_no_such_method.dart.weak.transformed.expect │ │ │ │ ├── abstract_super_application.dart │ │ │ │ ├── abstract_super_application.dart.strong.expect │ │ │ │ ├── abstract_super_application.dart.strong.transformed.expect │ │ │ │ ├── abstract_super_application.dart.textual_outline.expect │ │ │ │ ├── abstract_super_application.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_super_application.dart.weak.expect │ │ │ │ ├── abstract_super_application.dart.weak.modular.expect │ │ │ │ ├── abstract_super_application.dart.weak.outline.expect │ │ │ │ ├── abstract_super_application.dart.weak.transformed.expect │ │ │ │ ├── accessors.dart │ │ │ │ ├── accessors.dart.strong.expect │ │ │ │ ├── accessors.dart.strong.transformed.expect │ │ │ │ ├── accessors.dart.textual_outline.expect │ │ │ │ ├── accessors.dart.textual_outline_modelled.expect │ │ │ │ ├── accessors.dart.weak.expect │ │ │ │ ├── accessors.dart.weak.modular.expect │ │ │ │ ├── accessors.dart.weak.outline.expect │ │ │ │ ├── accessors.dart.weak.transformed.expect │ │ │ │ ├── all_variances.dart │ │ │ │ ├── all_variances.dart.strong.expect │ │ │ │ ├── all_variances.dart.strong.transformed.expect │ │ │ │ ├── all_variances.dart.textual_outline.expect │ │ │ │ ├── all_variances.dart.textual_outline_modelled.expect │ │ │ │ ├── all_variances.dart.weak.expect │ │ │ │ ├── all_variances.dart.weak.modular.expect │ │ │ │ ├── all_variances.dart.weak.outline.expect │ │ │ │ ├── all_variances.dart.weak.transformed.expect │ │ │ │ ├── ambiguous_exports.dart │ │ │ │ ├── ambiguous_exports.dart.strong.expect │ │ │ │ ├── ambiguous_exports.dart.strong.transformed.expect │ │ │ │ ├── ambiguous_exports.dart.textual_outline.expect │ │ │ │ ├── ambiguous_exports.dart.textual_outline_modelled.expect │ │ │ │ ├── ambiguous_exports.dart.weak.expect │ │ │ │ ├── ambiguous_exports.dart.weak.modular.expect │ │ │ │ ├── ambiguous_exports.dart.weak.outline.expect │ │ │ │ ├── ambiguous_exports.dart.weak.transformed.expect │ │ │ │ ├── annotation_eof.dart │ │ │ │ ├── annotation_eof.dart.strong.expect │ │ │ │ ├── annotation_eof.dart.strong.transformed.expect │ │ │ │ ├── annotation_eof.dart.textual_outline.expect │ │ │ │ ├── annotation_eof.dart.weak.expect │ │ │ │ ├── annotation_eof.dart.weak.modular.expect │ │ │ │ ├── annotation_eof.dart.weak.outline.expect │ │ │ │ ├── annotation_eof.dart.weak.transformed.expect │ │ │ │ ├── annotation_on_enum_values.dart │ │ │ │ ├── annotation_on_enum_values.dart.strong.expect │ │ │ │ ├── annotation_on_enum_values.dart.strong.transformed.expect │ │ │ │ ├── annotation_on_enum_values.dart.textual_outline.expect │ │ │ │ ├── annotation_on_enum_values.dart.textual_outline_modelled.expect │ │ │ │ ├── annotation_on_enum_values.dart.weak.expect │ │ │ │ ├── annotation_on_enum_values.dart.weak.modular.expect │ │ │ │ ├── annotation_on_enum_values.dart.weak.outline.expect │ │ │ │ ├── annotation_on_enum_values.dart.weak.transformed.expect │ │ │ │ ├── annotation_top.dart │ │ │ │ ├── annotation_top.dart.strong.expect │ │ │ │ ├── annotation_top.dart.strong.transformed.expect │ │ │ │ ├── annotation_top.dart.textual_outline.expect │ │ │ │ ├── annotation_top.dart.textual_outline_modelled.expect │ │ │ │ ├── annotation_top.dart.weak.expect │ │ │ │ ├── annotation_top.dart.weak.modular.expect │ │ │ │ ├── annotation_top.dart.weak.outline.expect │ │ │ │ ├── annotation_top.dart.weak.transformed.expect │ │ │ │ ├── annotation_typedef_formals.dart │ │ │ │ ├── annotation_typedef_formals.dart.strong.expect │ │ │ │ ├── annotation_typedef_formals.dart.strong.transformed.expect │ │ │ │ ├── annotation_typedef_formals.dart.textual_outline.expect │ │ │ │ ├── annotation_typedef_formals.dart.textual_outline_modelled.expect │ │ │ │ ├── annotation_typedef_formals.dart.weak.expect │ │ │ │ ├── annotation_typedef_formals.dart.weak.modular.expect │ │ │ │ ├── annotation_typedef_formals.dart.weak.outline.expect │ │ │ │ ├── annotation_typedef_formals.dart.weak.transformed.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart │ │ │ │ ├── annotation_typedef_formals_resolution.dart.strong.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.strong.transformed.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.textual_outline.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.textual_outline_modelled.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.weak.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.weak.modular.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.weak.outline.expect │ │ │ │ ├── annotation_typedef_formals_resolution.dart.weak.transformed.expect │ │ │ │ ├── annotation_variable_declaration.dart │ │ │ │ ├── annotation_variable_declaration.dart.strong.expect │ │ │ │ ├── annotation_variable_declaration.dart.strong.transformed.expect │ │ │ │ ├── annotation_variable_declaration.dart.textual_outline.expect │ │ │ │ ├── annotation_variable_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── annotation_variable_declaration.dart.weak.expect │ │ │ │ ├── annotation_variable_declaration.dart.weak.modular.expect │ │ │ │ ├── annotation_variable_declaration.dart.weak.outline.expect │ │ │ │ ├── annotation_variable_declaration.dart.weak.transformed.expect │ │ │ │ ├── argument.dart │ │ │ │ ├── argument.dart.strong.expect │ │ │ │ ├── argument.dart.strong.transformed.expect │ │ │ │ ├── argument.dart.textual_outline.expect │ │ │ │ ├── argument.dart.textual_outline_modelled.expect │ │ │ │ ├── argument.dart.weak.expect │ │ │ │ ├── argument.dart.weak.modular.expect │ │ │ │ ├── argument.dart.weak.outline.expect │ │ │ │ ├── argument.dart.weak.transformed.expect │ │ │ │ ├── argument_mismatch.dart │ │ │ │ ├── argument_mismatch.dart.strong.expect │ │ │ │ ├── argument_mismatch.dart.strong.transformed.expect │ │ │ │ ├── argument_mismatch.dart.textual_outline.expect │ │ │ │ ├── argument_mismatch.dart.textual_outline_modelled.expect │ │ │ │ ├── argument_mismatch.dart.weak.expect │ │ │ │ ├── argument_mismatch.dart.weak.modular.expect │ │ │ │ ├── argument_mismatch.dart.weak.outline.expect │ │ │ │ ├── argument_mismatch.dart.weak.transformed.expect │ │ │ │ ├── arithmetic.dart │ │ │ │ ├── arithmetic.dart.strong.expect │ │ │ │ ├── arithmetic.dart.strong.transformed.expect │ │ │ │ ├── arithmetic.dart.textual_outline.expect │ │ │ │ ├── arithmetic.dart.textual_outline_modelled.expect │ │ │ │ ├── arithmetic.dart.weak.expect │ │ │ │ ├── arithmetic.dart.weak.modular.expect │ │ │ │ ├── arithmetic.dart.weak.outline.expect │ │ │ │ ├── arithmetic.dart.weak.transformed.expect │ │ │ │ ├── arrow_function.dart │ │ │ │ ├── arrow_function.dart.strong.expect │ │ │ │ ├── arrow_function.dart.strong.transformed.expect │ │ │ │ ├── arrow_function.dart.textual_outline.expect │ │ │ │ ├── arrow_function.dart.textual_outline_modelled.expect │ │ │ │ ├── arrow_function.dart.weak.expect │ │ │ │ ├── arrow_function.dart.weak.modular.expect │ │ │ │ ├── arrow_function.dart.weak.outline.expect │ │ │ │ ├── arrow_function.dart.weak.transformed.expect │ │ │ │ ├── assign_to_initializing_formal.dart │ │ │ │ ├── assign_to_initializing_formal.dart.strong.expect │ │ │ │ ├── assign_to_initializing_formal.dart.strong.transformed.expect │ │ │ │ ├── assign_to_initializing_formal.dart.textual_outline.expect │ │ │ │ ├── assign_to_initializing_formal.dart.textual_outline_modelled.expect │ │ │ │ ├── assign_to_initializing_formal.dart.weak.expect │ │ │ │ ├── assign_to_initializing_formal.dart.weak.modular.expect │ │ │ │ ├── assign_to_initializing_formal.dart.weak.outline.expect │ │ │ │ ├── assign_to_initializing_formal.dart.weak.transformed.expect │ │ │ │ ├── assign_to_never.dart │ │ │ │ ├── assign_to_never.dart.strong.expect │ │ │ │ ├── assign_to_never.dart.strong.transformed.expect │ │ │ │ ├── assign_to_never.dart.textual_outline.expect │ │ │ │ ├── assign_to_never.dart.textual_outline_modelled.expect │ │ │ │ ├── assign_to_never.dart.weak.expect │ │ │ │ ├── assign_to_never.dart.weak.modular.expect │ │ │ │ ├── assign_to_never.dart.weak.outline.expect │ │ │ │ ├── assign_to_never.dart.weak.transformed.expect │ │ │ │ ├── async_function.dart │ │ │ │ ├── async_function.dart.strong.expect │ │ │ │ ├── async_function.dart.strong.transformed.expect │ │ │ │ ├── async_function.dart.textual_outline.expect │ │ │ │ ├── async_function.dart.textual_outline_modelled.expect │ │ │ │ ├── async_function.dart.weak.expect │ │ │ │ ├── async_function.dart.weak.modular.expect │ │ │ │ ├── async_function.dart.weak.outline.expect │ │ │ │ ├── async_function.dart.weak.transformed.expect │ │ │ │ ├── async_function_returns_future_or.dart │ │ │ │ ├── async_function_returns_future_or.dart.strong.expect │ │ │ │ ├── async_function_returns_future_or.dart.strong.transformed.expect │ │ │ │ ├── async_function_returns_future_or.dart.textual_outline.expect │ │ │ │ ├── async_function_returns_future_or.dart.textual_outline_modelled.expect │ │ │ │ ├── async_function_returns_future_or.dart.weak.expect │ │ │ │ ├── async_function_returns_future_or.dart.weak.modular.expect │ │ │ │ ├── async_function_returns_future_or.dart.weak.outline.expect │ │ │ │ ├── async_function_returns_future_or.dart.weak.transformed.expect │ │ │ │ ├── async_method_with_invalid_type.dart │ │ │ │ ├── async_method_with_invalid_type.dart.strong.expect │ │ │ │ ├── async_method_with_invalid_type.dart.strong.transformed.expect │ │ │ │ ├── async_method_with_invalid_type.dart.textual_outline.expect │ │ │ │ ├── async_method_with_invalid_type.dart.textual_outline_modelled.expect │ │ │ │ ├── async_method_with_invalid_type.dart.weak.expect │ │ │ │ ├── async_method_with_invalid_type.dart.weak.modular.expect │ │ │ │ ├── async_method_with_invalid_type.dart.weak.outline.expect │ │ │ │ ├── async_method_with_invalid_type.dart.weak.transformed.expect │ │ │ │ ├── async_nested.dart │ │ │ │ ├── async_nested.dart.strong.expect │ │ │ │ ├── async_nested.dart.strong.transformed.expect │ │ │ │ ├── async_nested.dart.textual_outline.expect │ │ │ │ ├── async_nested.dart.textual_outline_modelled.expect │ │ │ │ ├── async_nested.dart.weak.expect │ │ │ │ ├── async_nested.dart.weak.modular.expect │ │ │ │ ├── async_nested.dart.weak.outline.expect │ │ │ │ ├── async_nested.dart.weak.transformed.expect │ │ │ │ ├── await.dart │ │ │ │ ├── await.dart.strong.expect │ │ │ │ ├── await.dart.strong.transformed.expect │ │ │ │ ├── await.dart.textual_outline.expect │ │ │ │ ├── await.dart.textual_outline_modelled.expect │ │ │ │ ├── await.dart.weak.expect │ │ │ │ ├── await.dart.weak.modular.expect │ │ │ │ ├── await.dart.weak.outline.expect │ │ │ │ ├── await.dart.weak.transformed.expect │ │ │ │ ├── await_complex.dart │ │ │ │ ├── await_complex.dart.strong.expect │ │ │ │ ├── await_complex.dart.strong.transformed.expect │ │ │ │ ├── await_complex.dart.textual_outline.expect │ │ │ │ ├── await_complex.dart.textual_outline_modelled.expect │ │ │ │ ├── await_complex.dart.weak.expect │ │ │ │ ├── await_complex.dart.weak.modular.expect │ │ │ │ ├── await_complex.dart.weak.outline.expect │ │ │ │ ├── await_complex.dart.weak.transformed.expect │ │ │ │ ├── await_in_cascade.dart │ │ │ │ ├── await_in_cascade.dart.strong.expect │ │ │ │ ├── await_in_cascade.dart.strong.transformed.expect │ │ │ │ ├── await_in_cascade.dart.textual_outline.expect │ │ │ │ ├── await_in_cascade.dart.textual_outline_modelled.expect │ │ │ │ ├── await_in_cascade.dart.weak.expect │ │ │ │ ├── await_in_cascade.dart.weak.modular.expect │ │ │ │ ├── await_in_cascade.dart.weak.outline.expect │ │ │ │ ├── await_in_cascade.dart.weak.transformed.expect │ │ │ │ ├── await_in_non_async.dart │ │ │ │ ├── await_in_non_async.dart.strong.expect │ │ │ │ ├── await_in_non_async.dart.strong.transformed.expect │ │ │ │ ├── await_in_non_async.dart.textual_outline.expect │ │ │ │ ├── await_in_non_async.dart.textual_outline_modelled.expect │ │ │ │ ├── await_in_non_async.dart.weak.expect │ │ │ │ ├── await_in_non_async.dart.weak.modular.expect │ │ │ │ ├── await_in_non_async.dart.weak.outline.expect │ │ │ │ ├── await_in_non_async.dart.weak.transformed.expect │ │ │ │ ├── bad_setter_abstract.dart │ │ │ │ ├── bad_setter_abstract.dart.strong.expect │ │ │ │ ├── bad_setter_abstract.dart.strong.transformed.expect │ │ │ │ ├── bad_setter_abstract.dart.textual_outline.expect │ │ │ │ ├── bad_setter_abstract.dart.weak.expect │ │ │ │ ├── bad_setter_abstract.dart.weak.modular.expect │ │ │ │ ├── bad_setter_abstract.dart.weak.outline.expect │ │ │ │ ├── bad_setter_abstract.dart.weak.transformed.expect │ │ │ │ ├── bad_store.dart │ │ │ │ ├── bad_store.dart.strong.expect │ │ │ │ ├── bad_store.dart.strong.transformed.expect │ │ │ │ ├── bad_store.dart.textual_outline.expect │ │ │ │ ├── bad_store.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_store.dart.weak.expect │ │ │ │ ├── bad_store.dart.weak.modular.expect │ │ │ │ ├── bad_store.dart.weak.outline.expect │ │ │ │ ├── bad_store.dart.weak.transformed.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.strong.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.strong.transformed.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.textual_outline.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.weak.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.weak.modular.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.weak.outline.expect │ │ │ │ ├── bad_type_variable_uses_in_supertypes.dart.weak.transformed.expect │ │ │ │ ├── base_class_declaration.dart │ │ │ │ ├── base_class_declaration.dart.strong.expect │ │ │ │ ├── base_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── base_class_declaration.dart.textual_outline.expect │ │ │ │ ├── base_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── base_class_declaration.dart.weak.expect │ │ │ │ ├── base_class_declaration.dart.weak.modular.expect │ │ │ │ ├── base_class_declaration.dart.weak.outline.expect │ │ │ │ ├── base_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── bounded_implicit_instantiation.dart │ │ │ │ ├── bounded_implicit_instantiation.dart.strong.expect │ │ │ │ ├── bounded_implicit_instantiation.dart.textual_outline.expect │ │ │ │ ├── bounded_implicit_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── bounded_implicit_instantiation.dart.weak.expect │ │ │ │ ├── bounded_implicit_instantiation.dart.weak.modular.expect │ │ │ │ ├── bounded_implicit_instantiation.dart.weak.outline.expect │ │ │ │ ├── bounds_as_is.dart │ │ │ │ ├── bounds_as_is.dart.strong.expect │ │ │ │ ├── bounds_as_is.dart.strong.transformed.expect │ │ │ │ ├── bounds_as_is.dart.textual_outline.expect │ │ │ │ ├── bounds_as_is.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_as_is.dart.weak.expect │ │ │ │ ├── bounds_as_is.dart.weak.modular.expect │ │ │ │ ├── bounds_as_is.dart.weak.outline.expect │ │ │ │ ├── bounds_as_is.dart.weak.transformed.expect │ │ │ │ ├── bounds_catch.dart │ │ │ │ ├── bounds_catch.dart.strong.expect │ │ │ │ ├── bounds_catch.dart.strong.transformed.expect │ │ │ │ ├── bounds_catch.dart.textual_outline.expect │ │ │ │ ├── bounds_catch.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_catch.dart.weak.expect │ │ │ │ ├── bounds_catch.dart.weak.modular.expect │ │ │ │ ├── bounds_catch.dart.weak.outline.expect │ │ │ │ ├── bounds_catch.dart.weak.transformed.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart │ │ │ │ ├── bounds_check_depends_on_inference.dart.strong.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.strong.transformed.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.textual_outline.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.weak.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.weak.modular.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.weak.outline.expect │ │ │ │ ├── bounds_check_depends_on_inference.dart.weak.transformed.expect │ │ │ │ ├── bounds_check_in_typedef.dart │ │ │ │ ├── bounds_check_in_typedef.dart.strong.expect │ │ │ │ ├── bounds_check_in_typedef.dart.strong.transformed.expect │ │ │ │ ├── bounds_check_in_typedef.dart.textual_outline.expect │ │ │ │ ├── bounds_check_in_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_check_in_typedef.dart.weak.expect │ │ │ │ ├── bounds_check_in_typedef.dart.weak.modular.expect │ │ │ │ ├── bounds_check_in_typedef.dart.weak.outline.expect │ │ │ │ ├── bounds_check_in_typedef.dart.weak.transformed.expect │ │ │ │ ├── bounds_enums.dart │ │ │ │ ├── bounds_enums.dart.strong.expect │ │ │ │ ├── bounds_enums.dart.strong.transformed.expect │ │ │ │ ├── bounds_enums.dart.textual_outline.expect │ │ │ │ ├── bounds_enums.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_enums.dart.weak.expect │ │ │ │ ├── bounds_enums.dart.weak.modular.expect │ │ │ │ ├── bounds_enums.dart.weak.outline.expect │ │ │ │ ├── bounds_enums.dart.weak.transformed.expect │ │ │ │ ├── bounds_fields.dart │ │ │ │ ├── bounds_fields.dart.strong.expect │ │ │ │ ├── bounds_fields.dart.strong.transformed.expect │ │ │ │ ├── bounds_fields.dart.textual_outline.expect │ │ │ │ ├── bounds_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_fields.dart.weak.expect │ │ │ │ ├── bounds_fields.dart.weak.modular.expect │ │ │ │ ├── bounds_fields.dart.weak.outline.expect │ │ │ │ ├── bounds_fields.dart.weak.transformed.expect │ │ │ │ ├── bounds_instances.dart │ │ │ │ ├── bounds_instances.dart.strong.expect │ │ │ │ ├── bounds_instances.dart.textual_outline.expect │ │ │ │ ├── bounds_instances.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_instances.dart.weak.expect │ │ │ │ ├── bounds_instances.dart.weak.modular.expect │ │ │ │ ├── bounds_instances.dart.weak.outline.expect │ │ │ │ ├── bounds_literals.dart │ │ │ │ ├── bounds_literals.dart.strong.expect │ │ │ │ ├── bounds_literals.dart.strong.transformed.expect │ │ │ │ ├── bounds_literals.dart.textual_outline.expect │ │ │ │ ├── bounds_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_literals.dart.weak.expect │ │ │ │ ├── bounds_literals.dart.weak.modular.expect │ │ │ │ ├── bounds_literals.dart.weak.outline.expect │ │ │ │ ├── bounds_literals.dart.weak.transformed.expect │ │ │ │ ├── bounds_parameters.dart │ │ │ │ ├── bounds_parameters.dart.strong.expect │ │ │ │ ├── bounds_parameters.dart.strong.transformed.expect │ │ │ │ ├── bounds_parameters.dart.textual_outline.expect │ │ │ │ ├── bounds_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_parameters.dart.weak.expect │ │ │ │ ├── bounds_parameters.dart.weak.modular.expect │ │ │ │ ├── bounds_parameters.dart.weak.outline.expect │ │ │ │ ├── bounds_parameters.dart.weak.transformed.expect │ │ │ │ ├── bounds_return_types.dart │ │ │ │ ├── bounds_return_types.dart.strong.expect │ │ │ │ ├── bounds_return_types.dart.strong.transformed.expect │ │ │ │ ├── bounds_return_types.dart.textual_outline.expect │ │ │ │ ├── bounds_return_types.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_return_types.dart.weak.expect │ │ │ │ ├── bounds_return_types.dart.weak.modular.expect │ │ │ │ ├── bounds_return_types.dart.weak.outline.expect │ │ │ │ ├── bounds_return_types.dart.weak.transformed.expect │ │ │ │ ├── bounds_supertypes.dart │ │ │ │ ├── bounds_supertypes.dart.strong.expect │ │ │ │ ├── bounds_supertypes.dart.strong.transformed.expect │ │ │ │ ├── bounds_supertypes.dart.textual_outline.expect │ │ │ │ ├── bounds_supertypes.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_supertypes.dart.weak.expect │ │ │ │ ├── bounds_supertypes.dart.weak.modular.expect │ │ │ │ ├── bounds_supertypes.dart.weak.outline.expect │ │ │ │ ├── bounds_supertypes.dart.weak.transformed.expect │ │ │ │ ├── bounds_type_aliases.dart │ │ │ │ ├── bounds_type_aliases.dart.strong.expect │ │ │ │ ├── bounds_type_aliases.dart.strong.transformed.expect │ │ │ │ ├── bounds_type_aliases.dart.textual_outline.expect │ │ │ │ ├── bounds_type_aliases.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_type_aliases.dart.weak.expect │ │ │ │ ├── bounds_type_aliases.dart.weak.modular.expect │ │ │ │ ├── bounds_type_aliases.dart.weak.outline.expect │ │ │ │ ├── bounds_type_aliases.dart.weak.transformed.expect │ │ │ │ ├── bounds_type_arguments.dart │ │ │ │ ├── bounds_type_arguments.dart.strong.expect │ │ │ │ ├── bounds_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── bounds_type_arguments.dart.textual_outline.expect │ │ │ │ ├── bounds_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_type_arguments.dart.weak.expect │ │ │ │ ├── bounds_type_arguments.dart.weak.modular.expect │ │ │ │ ├── bounds_type_arguments.dart.weak.outline.expect │ │ │ │ ├── bounds_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── bounds_type_literals.dart │ │ │ │ ├── bounds_type_literals.dart.strong.expect │ │ │ │ ├── bounds_type_literals.dart.strong.transformed.expect │ │ │ │ ├── bounds_type_literals.dart.textual_outline.expect │ │ │ │ ├── bounds_type_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_type_literals.dart.weak.expect │ │ │ │ ├── bounds_type_literals.dart.weak.modular.expect │ │ │ │ ├── bounds_type_literals.dart.weak.outline.expect │ │ │ │ ├── bounds_type_literals.dart.weak.transformed.expect │ │ │ │ ├── bounds_type_parameters.dart │ │ │ │ ├── bounds_type_parameters.dart.strong.expect │ │ │ │ ├── bounds_type_parameters.dart.strong.transformed.expect │ │ │ │ ├── bounds_type_parameters.dart.textual_outline.expect │ │ │ │ ├── bounds_type_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_type_parameters.dart.weak.expect │ │ │ │ ├── bounds_type_parameters.dart.weak.modular.expect │ │ │ │ ├── bounds_type_parameters.dart.weak.outline.expect │ │ │ │ ├── bounds_type_parameters.dart.weak.transformed.expect │ │ │ │ ├── bounds_variables.dart │ │ │ │ ├── bounds_variables.dart.strong.expect │ │ │ │ ├── bounds_variables.dart.strong.transformed.expect │ │ │ │ ├── bounds_variables.dart.textual_outline.expect │ │ │ │ ├── bounds_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_variables.dart.weak.expect │ │ │ │ ├── bounds_variables.dart.weak.modular.expect │ │ │ │ ├── bounds_variables.dart.weak.outline.expect │ │ │ │ ├── bounds_variables.dart.weak.transformed.expect │ │ │ │ ├── bug21938.dart │ │ │ │ ├── bug21938.dart.strong.expect │ │ │ │ ├── bug21938.dart.strong.transformed.expect │ │ │ │ ├── bug21938.dart.textual_outline.expect │ │ │ │ ├── bug21938.dart.textual_outline_modelled.expect │ │ │ │ ├── bug21938.dart.weak.expect │ │ │ │ ├── bug21938.dart.weak.modular.expect │ │ │ │ ├── bug21938.dart.weak.outline.expect │ │ │ │ ├── bug21938.dart.weak.transformed.expect │ │ │ │ ├── bug30695.dart │ │ │ │ ├── bug30695.dart.strong.expect │ │ │ │ ├── bug30695.dart.textual_outline.expect │ │ │ │ ├── bug30695.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30695.dart.weak.expect │ │ │ │ ├── bug30695.dart.weak.modular.expect │ │ │ │ ├── bug30695.dart.weak.outline.expect │ │ │ │ ├── bug31124.dart │ │ │ │ ├── bug31124.dart.strong.expect │ │ │ │ ├── bug31124.dart.strong.transformed.expect │ │ │ │ ├── bug31124.dart.textual_outline.expect │ │ │ │ ├── bug31124.dart.weak.expect │ │ │ │ ├── bug31124.dart.weak.modular.expect │ │ │ │ ├── bug31124.dart.weak.outline.expect │ │ │ │ ├── bug31124.dart.weak.transformed.expect │ │ │ │ ├── bug32414a.dart │ │ │ │ ├── bug32414a.dart.strong.expect │ │ │ │ ├── bug32414a.dart.strong.transformed.expect │ │ │ │ ├── bug32414a.dart.textual_outline.expect │ │ │ │ ├── bug32414a.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32414a.dart.weak.expect │ │ │ │ ├── bug32414a.dart.weak.modular.expect │ │ │ │ ├── bug32414a.dart.weak.outline.expect │ │ │ │ ├── bug32414a.dart.weak.transformed.expect │ │ │ │ ├── bug32414b.dart │ │ │ │ ├── bug32414b.dart.strong.expect │ │ │ │ ├── bug32414b.dart.strong.transformed.expect │ │ │ │ ├── bug32414b.dart.textual_outline.expect │ │ │ │ ├── bug32414b.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32414b.dart.weak.expect │ │ │ │ ├── bug32414b.dart.weak.modular.expect │ │ │ │ ├── bug32414b.dart.weak.outline.expect │ │ │ │ ├── bug32414b.dart.weak.transformed.expect │ │ │ │ ├── bug32426.dart │ │ │ │ ├── bug32426.dart.strong.expect │ │ │ │ ├── bug32426.dart.strong.transformed.expect │ │ │ │ ├── bug32426.dart.textual_outline.expect │ │ │ │ ├── bug32426.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32426.dart.weak.expect │ │ │ │ ├── bug32426.dart.weak.modular.expect │ │ │ │ ├── bug32426.dart.weak.outline.expect │ │ │ │ ├── bug32426.dart.weak.transformed.expect │ │ │ │ ├── bug32629.dart │ │ │ │ ├── bug32629.dart.strong.expect │ │ │ │ ├── bug32629.dart.strong.transformed.expect │ │ │ │ ├── bug32629.dart.textual_outline.expect │ │ │ │ ├── bug32629.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32629.dart.weak.expect │ │ │ │ ├── bug32629.dart.weak.modular.expect │ │ │ │ ├── bug32629.dart.weak.outline.expect │ │ │ │ ├── bug32629.dart.weak.transformed.expect │ │ │ │ ├── bug32866.dart │ │ │ │ ├── bug32866.dart.strong.expect │ │ │ │ ├── bug32866.dart.strong.transformed.expect │ │ │ │ ├── bug32866.dart.textual_outline.expect │ │ │ │ ├── bug32866.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32866.dart.weak.expect │ │ │ │ ├── bug32866.dart.weak.modular.expect │ │ │ │ ├── bug32866.dart.weak.outline.expect │ │ │ │ ├── bug32866.dart.weak.transformed.expect │ │ │ │ ├── bug33099.dart │ │ │ │ ├── bug33099.dart.strong.expect │ │ │ │ ├── bug33099.dart.strong.transformed.expect │ │ │ │ ├── bug33099.dart.textual_outline.expect │ │ │ │ ├── bug33099.dart.textual_outline_modelled.expect │ │ │ │ ├── bug33099.dart.weak.expect │ │ │ │ ├── bug33099.dart.weak.modular.expect │ │ │ │ ├── bug33099.dart.weak.outline.expect │ │ │ │ ├── bug33099.dart.weak.transformed.expect │ │ │ │ ├── bug33196.dart │ │ │ │ ├── bug33196.dart.strong.expect │ │ │ │ ├── bug33196.dart.strong.transformed.expect │ │ │ │ ├── bug33196.dart.textual_outline.expect │ │ │ │ ├── bug33196.dart.textual_outline_modelled.expect │ │ │ │ ├── bug33196.dart.weak.expect │ │ │ │ ├── bug33196.dart.weak.modular.expect │ │ │ │ ├── bug33196.dart.weak.outline.expect │ │ │ │ ├── bug33196.dart.weak.transformed.expect │ │ │ │ ├── bug33206.dart │ │ │ │ ├── bug33206.dart.strong.expect │ │ │ │ ├── bug33206.dart.strong.transformed.expect │ │ │ │ ├── bug33206.dart.textual_outline.expect │ │ │ │ ├── bug33206.dart.textual_outline_modelled.expect │ │ │ │ ├── bug33206.dart.weak.expect │ │ │ │ ├── bug33206.dart.weak.modular.expect │ │ │ │ ├── bug33206.dart.weak.outline.expect │ │ │ │ ├── bug33206.dart.weak.transformed.expect │ │ │ │ ├── bug33298.dart │ │ │ │ ├── bug33298.dart.strong.expect │ │ │ │ ├── bug33298.dart.strong.transformed.expect │ │ │ │ ├── bug33298.dart.textual_outline.expect │ │ │ │ ├── bug33298.dart.textual_outline_modelled.expect │ │ │ │ ├── bug33298.dart.weak.expect │ │ │ │ ├── bug33298.dart.weak.modular.expect │ │ │ │ ├── bug33298.dart.weak.outline.expect │ │ │ │ ├── bug33298.dart.weak.transformed.expect │ │ │ │ ├── bug34511.dart │ │ │ │ ├── bug34511.dart.strong.expect │ │ │ │ ├── bug34511.dart.strong.transformed.expect │ │ │ │ ├── bug34511.dart.textual_outline.expect │ │ │ │ ├── bug34511.dart.textual_outline_modelled.expect │ │ │ │ ├── bug34511.dart.weak.expect │ │ │ │ ├── bug34511.dart.weak.modular.expect │ │ │ │ ├── bug34511.dart.weak.outline.expect │ │ │ │ ├── bug34511.dart.weak.transformed.expect │ │ │ │ ├── bug35470.dart │ │ │ │ ├── bug35470.dart.strong.expect │ │ │ │ ├── bug35470.dart.strong.transformed.expect │ │ │ │ ├── bug35470.dart.textual_outline.expect │ │ │ │ ├── bug35470.dart.textual_outline_modelled.expect │ │ │ │ ├── bug35470.dart.weak.expect │ │ │ │ ├── bug35470.dart.weak.modular.expect │ │ │ │ ├── bug35470.dart.weak.outline.expect │ │ │ │ ├── bug35470.dart.weak.transformed.expect │ │ │ │ ├── bug37476.dart │ │ │ │ ├── bug37476.dart.strong.expect │ │ │ │ ├── bug37476.dart.strong.transformed.expect │ │ │ │ ├── bug37476.dart.textual_outline.expect │ │ │ │ ├── bug37476.dart.textual_outline_modelled.expect │ │ │ │ ├── bug37476.dart.weak.expect │ │ │ │ ├── bug37476.dart.weak.modular.expect │ │ │ │ ├── bug37476.dart.weak.outline.expect │ │ │ │ ├── bug37476.dart.weak.transformed.expect │ │ │ │ ├── build_issue_2688.dart │ │ │ │ ├── build_issue_2688.dart.strong.expect │ │ │ │ ├── build_issue_2688.dart.strong.transformed.expect │ │ │ │ ├── build_issue_2688.dart.textual_outline.expect │ │ │ │ ├── build_issue_2688.dart.textual_outline_modelled.expect │ │ │ │ ├── build_issue_2688.dart.weak.expect │ │ │ │ ├── build_issue_2688.dart.weak.modular.expect │ │ │ │ ├── build_issue_2688.dart.weak.outline.expect │ │ │ │ ├── build_issue_2688.dart.weak.transformed.expect │ │ │ │ ├── call.dart │ │ │ │ ├── call.dart.strong.expect │ │ │ │ ├── call.dart.strong.transformed.expect │ │ │ │ ├── call.dart.textual_outline.expect │ │ │ │ ├── call.dart.textual_outline_modelled.expect │ │ │ │ ├── call.dart.weak.expect │ │ │ │ ├── call.dart.weak.modular.expect │ │ │ │ ├── call.dart.weak.outline.expect │ │ │ │ ├── call.dart.weak.transformed.expect │ │ │ │ ├── callable_type_variable.dart │ │ │ │ ├── callable_type_variable.dart.strong.expect │ │ │ │ ├── callable_type_variable.dart.strong.transformed.expect │ │ │ │ ├── callable_type_variable.dart.textual_outline.expect │ │ │ │ ├── callable_type_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── callable_type_variable.dart.weak.expect │ │ │ │ ├── callable_type_variable.dart.weak.modular.expect │ │ │ │ ├── callable_type_variable.dart.weak.outline.expect │ │ │ │ ├── callable_type_variable.dart.weak.transformed.expect │ │ │ │ ├── candidate_found.dart │ │ │ │ ├── candidate_found.dart.strong.expect │ │ │ │ ├── candidate_found.dart.strong.transformed.expect │ │ │ │ ├── candidate_found.dart.textual_outline.expect │ │ │ │ ├── candidate_found.dart.textual_outline_modelled.expect │ │ │ │ ├── candidate_found.dart.weak.expect │ │ │ │ ├── candidate_found.dart.weak.modular.expect │ │ │ │ ├── candidate_found.dart.weak.outline.expect │ │ │ │ ├── candidate_found.dart.weak.transformed.expect │ │ │ │ ├── cascade.dart │ │ │ │ ├── cascade.dart.strong.expect │ │ │ │ ├── cascade.dart.strong.transformed.expect │ │ │ │ ├── cascade.dart.textual_outline.expect │ │ │ │ ├── cascade.dart.textual_outline_modelled.expect │ │ │ │ ├── cascade.dart.weak.expect │ │ │ │ ├── cascade.dart.weak.modular.expect │ │ │ │ ├── cascade.dart.weak.outline.expect │ │ │ │ ├── cascade.dart.weak.transformed.expect │ │ │ │ ├── cascade_context.dart │ │ │ │ ├── cascade_context.dart.strong.expect │ │ │ │ ├── cascade_context.dart.strong.transformed.expect │ │ │ │ ├── cascade_context.dart.textual_outline.expect │ │ │ │ ├── cascade_context.dart.textual_outline_modelled.expect │ │ │ │ ├── cascade_context.dart.weak.expect │ │ │ │ ├── cascade_context.dart.weak.modular.expect │ │ │ │ ├── cascade_context.dart.weak.outline.expect │ │ │ │ ├── cascade_context.dart.weak.transformed.expect │ │ │ │ ├── casts.dart │ │ │ │ ├── casts.dart.strong.expect │ │ │ │ ├── casts.dart.strong.transformed.expect │ │ │ │ ├── casts.dart.textual_outline.expect │ │ │ │ ├── casts.dart.textual_outline_modelled.expect │ │ │ │ ├── casts.dart.weak.expect │ │ │ │ ├── casts.dart.weak.modular.expect │ │ │ │ ├── casts.dart.weak.outline.expect │ │ │ │ ├── casts.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_allocation.dart │ │ │ │ ├── check_deferred_allocation.dart.strong.expect │ │ │ │ ├── check_deferred_allocation.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_allocation.dart.textual_outline.expect │ │ │ │ ├── check_deferred_allocation.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_allocation.dart.weak.expect │ │ │ │ ├── check_deferred_allocation.dart.weak.modular.expect │ │ │ │ ├── check_deferred_allocation.dart.weak.outline.expect │ │ │ │ ├── check_deferred_allocation.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_as_check.dart │ │ │ │ ├── check_deferred_as_check.dart.strong.expect │ │ │ │ ├── check_deferred_as_check.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_as_check.dart.textual_outline.expect │ │ │ │ ├── check_deferred_as_check.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_as_check.dart.weak.expect │ │ │ │ ├── check_deferred_as_check.dart.weak.modular.expect │ │ │ │ ├── check_deferred_as_check.dart.weak.outline.expect │ │ │ │ ├── check_deferred_as_check.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_before_args.dart │ │ │ │ ├── check_deferred_before_args.dart.strong.expect │ │ │ │ ├── check_deferred_before_args.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_before_args.dart.textual_outline.expect │ │ │ │ ├── check_deferred_before_args.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_before_args.dart.weak.expect │ │ │ │ ├── check_deferred_before_args.dart.weak.modular.expect │ │ │ │ ├── check_deferred_before_args.dart.weak.outline.expect │ │ │ │ ├── check_deferred_before_args.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_before_args2.dart │ │ │ │ ├── check_deferred_before_args2.dart.strong.expect │ │ │ │ ├── check_deferred_before_args2.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_before_args2.dart.textual_outline.expect │ │ │ │ ├── check_deferred_before_args2.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_before_args2.dart.weak.expect │ │ │ │ ├── check_deferred_before_args2.dart.weak.modular.expect │ │ │ │ ├── check_deferred_before_args2.dart.weak.outline.expect │ │ │ │ ├── check_deferred_before_args2.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_before_call.dart │ │ │ │ ├── check_deferred_before_call.dart.strong.expect │ │ │ │ ├── check_deferred_before_call.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_before_call.dart.textual_outline.expect │ │ │ │ ├── check_deferred_before_call.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_before_call.dart.weak.expect │ │ │ │ ├── check_deferred_before_call.dart.weak.modular.expect │ │ │ │ ├── check_deferred_before_call.dart.weak.outline.expect │ │ │ │ ├── check_deferred_before_call.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_before_write.dart │ │ │ │ ├── check_deferred_before_write.dart.strong.expect │ │ │ │ ├── check_deferred_before_write.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_before_write.dart.textual_outline.expect │ │ │ │ ├── check_deferred_before_write.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_before_write.dart.weak.expect │ │ │ │ ├── check_deferred_before_write.dart.weak.modular.expect │ │ │ │ ├── check_deferred_before_write.dart.weak.outline.expect │ │ │ │ ├── check_deferred_before_write.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_is_check.dart │ │ │ │ ├── check_deferred_is_check.dart.strong.expect │ │ │ │ ├── check_deferred_is_check.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_is_check.dart.textual_outline.expect │ │ │ │ ├── check_deferred_is_check.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_is_check.dart.weak.expect │ │ │ │ ├── check_deferred_is_check.dart.weak.modular.expect │ │ │ │ ├── check_deferred_is_check.dart.weak.outline.expect │ │ │ │ ├── check_deferred_is_check.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_read.dart │ │ │ │ ├── check_deferred_read.dart.strong.expect │ │ │ │ ├── check_deferred_read.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_read.dart.textual_outline.expect │ │ │ │ ├── check_deferred_read.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_read.dart.weak.expect │ │ │ │ ├── check_deferred_read.dart.weak.modular.expect │ │ │ │ ├── check_deferred_read.dart.weak.outline.expect │ │ │ │ ├── check_deferred_read.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_read_static_field.dart │ │ │ │ ├── check_deferred_read_static_field.dart.strong.expect │ │ │ │ ├── check_deferred_read_static_field.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_read_static_field.dart.textual_outline.expect │ │ │ │ ├── check_deferred_read_static_field.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_read_static_field.dart.weak.expect │ │ │ │ ├── check_deferred_read_static_field.dart.weak.modular.expect │ │ │ │ ├── check_deferred_read_static_field.dart.weak.outline.expect │ │ │ │ ├── check_deferred_read_static_field.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_read_type.dart │ │ │ │ ├── check_deferred_read_type.dart.strong.expect │ │ │ │ ├── check_deferred_read_type.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_read_type.dart.textual_outline.expect │ │ │ │ ├── check_deferred_read_type.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_read_type.dart.weak.expect │ │ │ │ ├── check_deferred_read_type.dart.weak.modular.expect │ │ │ │ ├── check_deferred_read_type.dart.weak.outline.expect │ │ │ │ ├── check_deferred_read_type.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_static_method_call.dart │ │ │ │ ├── check_deferred_static_method_call.dart.strong.expect │ │ │ │ ├── check_deferred_static_method_call.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_static_method_call.dart.textual_outline.expect │ │ │ │ ├── check_deferred_static_method_call.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_static_method_call.dart.weak.expect │ │ │ │ ├── check_deferred_static_method_call.dart.weak.modular.expect │ │ │ │ ├── check_deferred_static_method_call.dart.weak.outline.expect │ │ │ │ ├── check_deferred_static_method_call.dart.weak.transformed.expect │ │ │ │ ├── check_deferred_type_declaration.dart │ │ │ │ ├── check_deferred_type_declaration.dart.strong.expect │ │ │ │ ├── check_deferred_type_declaration.dart.strong.transformed.expect │ │ │ │ ├── check_deferred_type_declaration.dart.textual_outline.expect │ │ │ │ ├── check_deferred_type_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── check_deferred_type_declaration.dart.weak.expect │ │ │ │ ├── check_deferred_type_declaration.dart.weak.modular.expect │ │ │ │ ├── check_deferred_type_declaration.dart.weak.outline.expect │ │ │ │ ├── check_deferred_type_declaration.dart.weak.transformed.expect │ │ │ │ ├── circularity-via-initializing-formal.dart │ │ │ │ ├── circularity-via-initializing-formal.dart.strong.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.strong.transformed.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.textual_outline.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.textual_outline_modelled.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.weak.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.weak.modular.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.weak.outline.expect │ │ │ │ ├── circularity-via-initializing-formal.dart.weak.transformed.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart │ │ │ │ ├── circularity-via-initializing-formal2.dart.strong.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.strong.transformed.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.textual_outline.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.textual_outline_modelled.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.weak.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.weak.modular.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.weak.outline.expect │ │ │ │ ├── circularity-via-initializing-formal2.dart.weak.transformed.expect │ │ │ │ ├── clamp.dart │ │ │ │ ├── clamp.dart.strong.expect │ │ │ │ ├── clamp.dart.strong.transformed.expect │ │ │ │ ├── clamp.dart.textual_outline.expect │ │ │ │ ├── clamp.dart.textual_outline_modelled.expect │ │ │ │ ├── clamp.dart.weak.expect │ │ │ │ ├── clamp.dart.weak.modular.expect │ │ │ │ ├── clamp.dart.weak.outline.expect │ │ │ │ ├── clamp.dart.weak.transformed.expect │ │ │ │ ├── classes.dart │ │ │ │ ├── classes.dart.strong.expect │ │ │ │ ├── classes.dart.strong.transformed.expect │ │ │ │ ├── classes.dart.textual_outline.expect │ │ │ │ ├── classes.dart.textual_outline_modelled.expect │ │ │ │ ├── classes.dart.weak.expect │ │ │ │ ├── classes.dart.weak.modular.expect │ │ │ │ ├── classes.dart.weak.outline.expect │ │ │ │ ├── classes.dart.weak.transformed.expect │ │ │ │ ├── clone_function_type.dart │ │ │ │ ├── clone_function_type.dart.strong.expect │ │ │ │ ├── clone_function_type.dart.strong.transformed.expect │ │ │ │ ├── clone_function_type.dart.textual_outline.expect │ │ │ │ ├── clone_function_type.dart.weak.expect │ │ │ │ ├── clone_function_type.dart.weak.modular.expect │ │ │ │ ├── clone_function_type.dart.weak.outline.expect │ │ │ │ ├── clone_function_type.dart.weak.transformed.expect │ │ │ │ ├── closure.dart │ │ │ │ ├── closure.dart.strong.expect │ │ │ │ ├── closure.dart.strong.transformed.expect │ │ │ │ ├── closure.dart.textual_outline.expect │ │ │ │ ├── closure.dart.textual_outline_modelled.expect │ │ │ │ ├── closure.dart.weak.expect │ │ │ │ ├── closure.dart.weak.modular.expect │ │ │ │ ├── closure.dart.weak.outline.expect │ │ │ │ ├── closure.dart.weak.transformed.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.strong.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.strong.transformed.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.textual_outline.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.textual_outline_modelled.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.weak.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.weak.modular.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.weak.outline.expect │ │ │ │ ├── co19_language_metadata_syntax_t04.dart.weak.transformed.expect │ │ │ │ ├── colon_default_value.dart │ │ │ │ ├── colon_default_value.dart.strong.expect │ │ │ │ ├── colon_default_value.dart.strong.transformed.expect │ │ │ │ ├── colon_default_value.dart.textual_outline.expect │ │ │ │ ├── colon_default_value.dart.textual_outline_modelled.expect │ │ │ │ ├── colon_default_value.dart.weak.expect │ │ │ │ ├── colon_default_value.dart.weak.modular.expect │ │ │ │ ├── colon_default_value.dart.weak.outline.expect │ │ │ │ ├── colon_default_value.dart.weak.transformed.expect │ │ │ │ ├── colon_default_value_legacy.dart │ │ │ │ ├── colon_default_value_legacy.dart.strong.expect │ │ │ │ ├── colon_default_value_legacy.dart.strong.transformed.expect │ │ │ │ ├── colon_default_value_legacy.dart.textual_outline.expect │ │ │ │ ├── colon_default_value_legacy.dart.textual_outline_modelled.expect │ │ │ │ ├── colon_default_value_legacy.dart.weak.expect │ │ │ │ ├── colon_default_value_legacy.dart.weak.modular.expect │ │ │ │ ├── colon_default_value_legacy.dart.weak.outline.expect │ │ │ │ ├── colon_default_value_legacy.dart.weak.transformed.expect │ │ │ │ ├── complex_class_hierarchy.dart │ │ │ │ ├── complex_class_hierarchy.dart.strong.expect │ │ │ │ ├── complex_class_hierarchy.dart.strong.transformed.expect │ │ │ │ ├── complex_class_hierarchy.dart.textual_outline.expect │ │ │ │ ├── complex_class_hierarchy.dart.textual_outline_modelled.expect │ │ │ │ ├── complex_class_hierarchy.dart.weak.expect │ │ │ │ ├── complex_class_hierarchy.dart.weak.modular.expect │ │ │ │ ├── complex_class_hierarchy.dart.weak.outline.expect │ │ │ │ ├── complex_class_hierarchy.dart.weak.transformed.expect │ │ │ │ ├── compound_binary_implicit_as.dart │ │ │ │ ├── compound_binary_implicit_as.dart.strong.expect │ │ │ │ ├── compound_binary_implicit_as.dart.strong.transformed.expect │ │ │ │ ├── compound_binary_implicit_as.dart.textual_outline.expect │ │ │ │ ├── compound_binary_implicit_as.dart.textual_outline_modelled.expect │ │ │ │ ├── compound_binary_implicit_as.dart.weak.expect │ │ │ │ ├── compound_binary_implicit_as.dart.weak.modular.expect │ │ │ │ ├── compound_binary_implicit_as.dart.weak.outline.expect │ │ │ │ ├── compound_binary_implicit_as.dart.weak.transformed.expect │ │ │ │ ├── conditional_import.dart │ │ │ │ ├── conditional_import.dart.strong.expect │ │ │ │ ├── conditional_import.dart.strong.transformed.expect │ │ │ │ ├── conditional_import.dart.textual_outline.expect │ │ │ │ ├── conditional_import.dart.textual_outline_modelled.expect │ │ │ │ ├── conditional_import.dart.weak.expect │ │ │ │ ├── conditional_import.dart.weak.modular.expect │ │ │ │ ├── conditional_import.dart.weak.outline.expect │ │ │ │ ├── conditional_import.dart.weak.transformed.expect │ │ │ │ ├── const_redirect_to_nonconst.dart │ │ │ │ ├── const_redirect_to_nonconst.dart.strong.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.strong.transformed.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.textual_outline.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.textual_outline_modelled.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.weak.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.weak.modular.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.weak.outline.expect │ │ │ │ ├── const_redirect_to_nonconst.dart.weak.transformed.expect │ │ │ │ ├── constant_truncate.dart │ │ │ │ ├── constant_truncate.dart.strong.expect │ │ │ │ ├── constant_truncate.dart.strong.transformed.expect │ │ │ │ ├── constant_truncate.dart.textual_outline.expect │ │ │ │ ├── constant_truncate.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_truncate.dart.weak.expect │ │ │ │ ├── constant_truncate.dart.weak.modular.expect │ │ │ │ ├── constant_truncate.dart.weak.outline.expect │ │ │ │ ├── constant_truncate.dart.weak.transformed.expect │ │ │ │ ├── constants │ │ │ │ │ ├── circularity.dart │ │ │ │ │ ├── circularity.dart.strong.expect │ │ │ │ │ ├── circularity.dart.strong.transformed.expect │ │ │ │ │ ├── circularity.dart.textual_outline.expect │ │ │ │ │ ├── circularity.dart.textual_outline_modelled.expect │ │ │ │ │ ├── circularity.dart.weak.expect │ │ │ │ │ ├── circularity.dart.weak.modular.expect │ │ │ │ │ ├── circularity.dart.weak.outline.expect │ │ │ │ │ ├── circularity.dart.weak.transformed.expect │ │ │ │ │ ├── const_asserts.dart │ │ │ │ │ ├── const_asserts.dart.strong.expect │ │ │ │ │ ├── const_asserts.dart.strong.transformed.expect │ │ │ │ │ ├── const_asserts.dart.textual_outline.expect │ │ │ │ │ ├── const_asserts.dart.textual_outline_modelled.expect │ │ │ │ │ ├── const_asserts.dart.weak.expect │ │ │ │ │ ├── const_asserts.dart.weak.modular.expect │ │ │ │ │ ├── const_asserts.dart.weak.outline.expect │ │ │ │ │ ├── const_asserts.dart.weak.transformed.expect │ │ │ │ │ ├── const_asserts2.dart │ │ │ │ │ ├── const_asserts2.dart.strong.expect │ │ │ │ │ ├── const_asserts2.dart.strong.transformed.expect │ │ │ │ │ ├── const_asserts2.dart.textual_outline.expect │ │ │ │ │ ├── const_asserts2.dart.textual_outline_modelled.expect │ │ │ │ │ ├── const_asserts2.dart.weak.expect │ │ │ │ │ ├── const_asserts2.dart.weak.modular.expect │ │ │ │ │ ├── const_asserts2.dart.weak.outline.expect │ │ │ │ │ ├── const_asserts2.dart.weak.transformed.expect │ │ │ │ │ ├── const_collections.dart │ │ │ │ │ ├── const_collections.dart.strong.expect │ │ │ │ │ ├── const_collections.dart.strong.transformed.expect │ │ │ │ │ ├── const_collections.dart.textual_outline.expect │ │ │ │ │ ├── const_collections.dart.textual_outline_modelled.expect │ │ │ │ │ ├── const_collections.dart.weak.expect │ │ │ │ │ ├── const_collections.dart.weak.modular.expect │ │ │ │ │ ├── const_collections.dart.weak.outline.expect │ │ │ │ │ ├── const_collections.dart.weak.transformed.expect │ │ │ │ │ ├── const_constructor_coverage.dart │ │ │ │ │ ├── const_constructor_coverage.dart.strong.expect │ │ │ │ │ ├── const_constructor_coverage.dart.strong.transformed.expect │ │ │ │ │ ├── const_constructor_coverage.dart.textual_outline.expect │ │ │ │ │ ├── const_constructor_coverage.dart.textual_outline_modelled.expect │ │ │ │ │ ├── const_constructor_coverage.dart.weak.expect │ │ │ │ │ ├── const_constructor_coverage.dart.weak.modular.expect │ │ │ │ │ ├── const_constructor_coverage.dart.weak.outline.expect │ │ │ │ │ ├── const_constructor_coverage.dart.weak.transformed.expect │ │ │ │ │ ├── const_constructor_coverage_lib1.dart │ │ │ │ │ ├── const_constructor_coverage_lib2.dart │ │ │ │ │ ├── const_exponential_compare.dart │ │ │ │ │ ├── const_exponential_compare.dart.strong.expect │ │ │ │ │ ├── const_exponential_compare.dart.strong.transformed.expect │ │ │ │ │ ├── const_exponential_compare.dart.textual_outline.expect │ │ │ │ │ ├── const_exponential_compare.dart.textual_outline_modelled.expect │ │ │ │ │ ├── const_exponential_compare.dart.weak.expect │ │ │ │ │ ├── const_exponential_compare.dart.weak.modular.expect │ │ │ │ │ ├── const_exponential_compare.dart.weak.outline.expect │ │ │ │ │ ├── const_exponential_compare.dart.weak.transformed.expect │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── from_lib │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── function_invocation.dart │ │ │ │ │ ├── function_invocation.dart.strong.expect │ │ │ │ │ ├── function_invocation.dart.strong.transformed.expect │ │ │ │ │ ├── function_invocation.dart.textual_outline.expect │ │ │ │ │ ├── function_invocation.dart.textual_outline_modelled.expect │ │ │ │ │ ├── function_invocation.dart.weak.expect │ │ │ │ │ ├── function_invocation.dart.weak.modular.expect │ │ │ │ │ ├── function_invocation.dart.weak.outline.expect │ │ │ │ │ ├── function_invocation.dart.weak.transformed.expect │ │ │ │ │ ├── inferred_const_initializer.dart │ │ │ │ │ ├── inferred_const_initializer.dart.strong.expect │ │ │ │ │ ├── inferred_const_initializer.dart.strong.transformed.expect │ │ │ │ │ ├── inferred_const_initializer.dart.textual_outline.expect │ │ │ │ │ ├── inferred_const_initializer.dart.textual_outline_modelled.expect │ │ │ │ │ ├── inferred_const_initializer.dart.weak.expect │ │ │ │ │ ├── inferred_const_initializer.dart.weak.modular.expect │ │ │ │ │ ├── inferred_const_initializer.dart.weak.outline.expect │ │ │ │ │ ├── inferred_const_initializer.dart.weak.transformed.expect │ │ │ │ │ ├── issue46925.dart │ │ │ │ │ ├── issue46925.dart.strong.expect │ │ │ │ │ ├── issue46925.dart.strong.transformed.expect │ │ │ │ │ ├── issue46925.dart.textual_outline.expect │ │ │ │ │ ├── issue46925.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue46925.dart.weak.expect │ │ │ │ │ ├── issue46925.dart.weak.modular.expect │ │ │ │ │ ├── issue46925.dart.weak.outline.expect │ │ │ │ │ ├── issue46925.dart.weak.transformed.expect │ │ │ │ │ ├── issue_43431.dart │ │ │ │ │ ├── issue_43431.dart.strong.expect │ │ │ │ │ ├── issue_43431.dart.strong.transformed.expect │ │ │ │ │ ├── issue_43431.dart.textual_outline.expect │ │ │ │ │ ├── issue_43431.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_43431.dart.weak.expect │ │ │ │ │ ├── issue_43431.dart.weak.modular.expect │ │ │ │ │ ├── issue_43431.dart.weak.outline.expect │ │ │ │ │ ├── issue_43431.dart.weak.transformed.expect │ │ │ │ │ ├── js_semantics │ │ │ │ │ │ ├── folder.options │ │ │ │ │ │ ├── issue45376.dart │ │ │ │ │ │ ├── issue45376.dart.strong.expect │ │ │ │ │ │ ├── issue45376.dart.strong.transformed.expect │ │ │ │ │ │ ├── issue45376.dart.textual_outline.expect │ │ │ │ │ │ ├── issue45376.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── issue45376.dart.weak.expect │ │ │ │ │ │ ├── issue45376.dart.weak.modular.expect │ │ │ │ │ │ ├── issue45376.dart.weak.outline.expect │ │ │ │ │ │ ├── issue45376.dart.weak.transformed.expect │ │ │ │ │ │ ├── issue46123.dart │ │ │ │ │ │ ├── issue46123.dart.strong.expect │ │ │ │ │ │ ├── issue46123.dart.strong.transformed.expect │ │ │ │ │ │ ├── issue46123.dart.textual_outline.expect │ │ │ │ │ │ ├── issue46123.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── issue46123.dart.weak.expect │ │ │ │ │ │ ├── issue46123.dart.weak.modular.expect │ │ │ │ │ │ ├── issue46123.dart.weak.outline.expect │ │ │ │ │ │ ├── issue46123.dart.weak.transformed.expect │ │ │ │ │ │ ├── issue46123b.dart │ │ │ │ │ │ ├── issue46123b.dart.strong.expect │ │ │ │ │ │ ├── issue46123b.dart.strong.transformed.expect │ │ │ │ │ │ ├── issue46123b.dart.textual_outline.expect │ │ │ │ │ │ ├── issue46123b.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── issue46123b.dart.weak.expect │ │ │ │ │ │ ├── issue46123b.dart.weak.modular.expect │ │ │ │ │ │ ├── issue46123b.dart.weak.outline.expect │ │ │ │ │ │ ├── issue46123b.dart.weak.transformed.expect │ │ │ │ │ │ ├── number_folds.dart │ │ │ │ │ │ ├── number_folds.dart.strong.expect │ │ │ │ │ │ ├── number_folds.dart.strong.transformed.expect │ │ │ │ │ │ ├── number_folds.dart.textual_outline.expect │ │ │ │ │ │ ├── number_folds.dart.weak.expect │ │ │ │ │ │ ├── number_folds.dart.weak.modular.expect │ │ │ │ │ │ ├── number_folds.dart.weak.outline.expect │ │ │ │ │ │ ├── number_folds.dart.weak.transformed.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart │ │ │ │ │ │ ├── number_folds_opt_out.dart.strong.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart.strong.transformed.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart.textual_outline.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart.weak.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart.weak.modular.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart.weak.outline.expect │ │ │ │ │ │ ├── number_folds_opt_out.dart.weak.transformed.expect │ │ │ │ │ │ ├── on_double.dart │ │ │ │ │ │ ├── on_double.dart.strong.expect │ │ │ │ │ │ ├── on_double.dart.strong.transformed.expect │ │ │ │ │ │ ├── on_double.dart.textual_outline.expect │ │ │ │ │ │ ├── on_double.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── on_double.dart.weak.expect │ │ │ │ │ │ ├── on_double.dart.weak.modular.expect │ │ │ │ │ │ ├── on_double.dart.weak.outline.expect │ │ │ │ │ │ ├── on_double.dart.weak.transformed.expect │ │ │ │ │ │ ├── various.dart │ │ │ │ │ │ ├── various.dart.strong.expect │ │ │ │ │ │ ├── various.dart.strong.transformed.expect │ │ │ │ │ │ ├── various.dart.textual_outline.expect │ │ │ │ │ │ ├── various.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── various.dart.weak.expect │ │ │ │ │ │ ├── various.dart.weak.modular.expect │ │ │ │ │ │ ├── various.dart.weak.outline.expect │ │ │ │ │ │ └── various.dart.weak.transformed.expect │ │ │ │ │ ├── no_experiments │ │ │ │ │ │ ├── folder.options │ │ │ │ │ │ ├── various.dart │ │ │ │ │ │ ├── various.dart.strong.expect │ │ │ │ │ │ ├── various.dart.strong.transformed.expect │ │ │ │ │ │ ├── various.dart.textual_outline.expect │ │ │ │ │ │ ├── various.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── various.dart.weak.expect │ │ │ │ │ │ ├── various.dart.weak.modular.expect │ │ │ │ │ │ ├── various.dart.weak.outline.expect │ │ │ │ │ │ └── various.dart.weak.transformed.expect │ │ │ │ │ ├── non_const_constructor.dart │ │ │ │ │ ├── non_const_constructor.dart.strong.expect │ │ │ │ │ ├── non_const_constructor.dart.strong.transformed.expect │ │ │ │ │ ├── non_const_constructor.dart.textual_outline.expect │ │ │ │ │ ├── non_const_constructor.dart.weak.expect │ │ │ │ │ ├── non_const_constructor.dart.weak.modular.expect │ │ │ │ │ ├── non_const_constructor.dart.weak.outline.expect │ │ │ │ │ ├── non_const_constructor.dart.weak.transformed.expect │ │ │ │ │ ├── non_const_variable.dart │ │ │ │ │ ├── non_const_variable.dart.strong.expect │ │ │ │ │ ├── non_const_variable.dart.strong.transformed.expect │ │ │ │ │ ├── non_const_variable.dart.textual_outline.expect │ │ │ │ │ ├── non_const_variable.dart.textual_outline_modelled.expect │ │ │ │ │ ├── non_const_variable.dart.weak.expect │ │ │ │ │ ├── non_const_variable.dart.weak.modular.expect │ │ │ │ │ ├── non_const_variable.dart.weak.outline.expect │ │ │ │ │ ├── non_const_variable.dart.weak.transformed.expect │ │ │ │ │ ├── number_folds.dart │ │ │ │ │ ├── number_folds.dart.strong.expect │ │ │ │ │ ├── number_folds.dart.strong.transformed.expect │ │ │ │ │ ├── number_folds.dart.textual_outline.expect │ │ │ │ │ ├── number_folds.dart.weak.expect │ │ │ │ │ ├── number_folds.dart.weak.modular.expect │ │ │ │ │ ├── number_folds.dart.weak.outline.expect │ │ │ │ │ ├── number_folds.dart.weak.transformed.expect │ │ │ │ │ ├── number_folds_opt_out.dart │ │ │ │ │ ├── number_folds_opt_out.dart.strong.expect │ │ │ │ │ ├── number_folds_opt_out.dart.strong.transformed.expect │ │ │ │ │ ├── number_folds_opt_out.dart.textual_outline.expect │ │ │ │ │ ├── number_folds_opt_out.dart.weak.expect │ │ │ │ │ ├── number_folds_opt_out.dart.weak.modular.expect │ │ │ │ │ ├── number_folds_opt_out.dart.weak.outline.expect │ │ │ │ │ ├── number_folds_opt_out.dart.weak.transformed.expect │ │ │ │ │ ├── potentially_constant_type.dart │ │ │ │ │ ├── potentially_constant_type.dart.strong.expect │ │ │ │ │ ├── potentially_constant_type.dart.strong.transformed.expect │ │ │ │ │ ├── potentially_constant_type.dart.textual_outline.expect │ │ │ │ │ ├── potentially_constant_type.dart.textual_outline_modelled.expect │ │ │ │ │ ├── potentially_constant_type.dart.weak.expect │ │ │ │ │ ├── potentially_constant_type.dart.weak.modular.expect │ │ │ │ │ ├── potentially_constant_type.dart.weak.outline.expect │ │ │ │ │ ├── potentially_constant_type.dart.weak.transformed.expect │ │ │ │ │ ├── potentially_constant_type_lib1.dart │ │ │ │ │ ├── potentially_constant_type_lib2.dart │ │ │ │ │ ├── rudimentary_test_01.dart │ │ │ │ │ ├── rudimentary_test_01.dart.strong.expect │ │ │ │ │ ├── rudimentary_test_01.dart.strong.transformed.expect │ │ │ │ │ ├── rudimentary_test_01.dart.textual_outline.expect │ │ │ │ │ ├── rudimentary_test_01.dart.textual_outline_modelled.expect │ │ │ │ │ ├── rudimentary_test_01.dart.weak.expect │ │ │ │ │ ├── rudimentary_test_01.dart.weak.modular.expect │ │ │ │ │ ├── rudimentary_test_01.dart.weak.outline.expect │ │ │ │ │ ├── rudimentary_test_01.dart.weak.transformed.expect │ │ │ │ │ ├── various.dart │ │ │ │ │ ├── various.dart.strong.expect │ │ │ │ │ ├── various.dart.strong.transformed.expect │ │ │ │ │ ├── various.dart.textual_outline.expect │ │ │ │ │ ├── various.dart.weak.expect │ │ │ │ │ ├── various.dart.weak.modular.expect │ │ │ │ │ ├── various.dart.weak.outline.expect │ │ │ │ │ ├── various.dart.weak.transformed.expect │ │ │ │ │ ├── various2.dart │ │ │ │ │ ├── various2.dart.strong.expect │ │ │ │ │ ├── various2.dart.strong.transformed.expect │ │ │ │ │ ├── various2.dart.textual_outline.expect │ │ │ │ │ ├── various2.dart.weak.expect │ │ │ │ │ ├── various2.dart.weak.modular.expect │ │ │ │ │ ├── various2.dart.weak.outline.expect │ │ │ │ │ ├── various2.dart.weak.transformed.expect │ │ │ │ │ └── with_unevaluated_agnostic │ │ │ │ │ │ ├── const_asserts.dart │ │ │ │ │ │ ├── const_asserts.dart.strong.expect │ │ │ │ │ │ ├── const_asserts.dart.strong.transformed.expect │ │ │ │ │ │ ├── const_asserts.dart.textual_outline.expect │ │ │ │ │ │ ├── const_asserts.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── const_asserts.dart.weak.expect │ │ │ │ │ │ ├── const_asserts.dart.weak.modular.expect │ │ │ │ │ │ ├── const_asserts.dart.weak.outline.expect │ │ │ │ │ │ ├── const_asserts.dart.weak.transformed.expect │ │ │ │ │ │ ├── const_collections.dart │ │ │ │ │ │ ├── const_collections.dart.strong.expect │ │ │ │ │ │ ├── const_collections.dart.strong.transformed.expect │ │ │ │ │ │ ├── const_collections.dart.textual_outline.expect │ │ │ │ │ │ ├── const_collections.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── const_collections.dart.weak.expect │ │ │ │ │ │ ├── const_collections.dart.weak.modular.expect │ │ │ │ │ │ ├── const_collections.dart.weak.outline.expect │ │ │ │ │ │ ├── const_collections.dart.weak.transformed.expect │ │ │ │ │ │ ├── const_collections_2.dart │ │ │ │ │ │ ├── const_collections_2.dart.strong.expect │ │ │ │ │ │ ├── const_collections_2.dart.strong.transformed.expect │ │ │ │ │ │ ├── const_collections_2.dart.textual_outline.expect │ │ │ │ │ │ ├── const_collections_2.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── const_collections_2.dart.weak.expect │ │ │ │ │ │ ├── const_collections_2.dart.weak.modular.expect │ │ │ │ │ │ ├── const_collections_2.dart.weak.outline.expect │ │ │ │ │ │ ├── const_collections_2.dart.weak.transformed.expect │ │ │ │ │ │ ├── folder.options │ │ │ │ │ │ ├── issue_49245.dart │ │ │ │ │ │ ├── issue_49245.dart.strong.expect │ │ │ │ │ │ ├── issue_49245.dart.strong.transformed.expect │ │ │ │ │ │ ├── issue_49245.dart.textual_outline.expect │ │ │ │ │ │ ├── issue_49245.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── issue_49245.dart.weak.expect │ │ │ │ │ │ ├── issue_49245.dart.weak.modular.expect │ │ │ │ │ │ ├── issue_49245.dart.weak.outline.expect │ │ │ │ │ │ ├── issue_49245.dart.weak.transformed.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart │ │ │ │ │ │ ├── issue_49245_variation_is.dart.strong.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.strong.transformed.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.textual_outline.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.weak.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.weak.modular.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.weak.outline.expect │ │ │ │ │ │ ├── issue_49245_variation_is.dart.weak.transformed.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.strong.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.strong.transformed.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.textual_outline.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.weak.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.weak.modular.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.weak.outline.expect │ │ │ │ │ │ ├── issue_49245_variation_potential_exponential_blowup.dart.weak.transformed.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.strong.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.strong.transformed.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.textual_outline.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.weak.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.weak.modular.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.weak.outline.expect │ │ │ │ │ │ ├── many_fields_pointing_to_previous_field.dart.weak.transformed.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart │ │ │ │ │ │ ├── rudimentary_test_01.dart.strong.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.strong.transformed.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.textual_outline.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.weak.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.weak.modular.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.weak.outline.expect │ │ │ │ │ │ ├── rudimentary_test_01.dart.weak.transformed.expect │ │ │ │ │ │ ├── various.dart │ │ │ │ │ │ ├── various.dart.strong.expect │ │ │ │ │ │ ├── various.dart.strong.transformed.expect │ │ │ │ │ │ ├── various.dart.textual_outline.expect │ │ │ │ │ │ ├── various.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── various.dart.weak.expect │ │ │ │ │ │ ├── various.dart.weak.modular.expect │ │ │ │ │ │ ├── various.dart.weak.outline.expect │ │ │ │ │ │ ├── various.dart.weak.transformed.expect │ │ │ │ │ │ ├── various_2.dart │ │ │ │ │ │ ├── various_2.dart.strong.expect │ │ │ │ │ │ ├── various_2.dart.strong.transformed.expect │ │ │ │ │ │ ├── various_2.dart.textual_outline.expect │ │ │ │ │ │ ├── various_2.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── various_2.dart.weak.expect │ │ │ │ │ │ ├── various_2.dart.weak.modular.expect │ │ │ │ │ │ ├── various_2.dart.weak.outline.expect │ │ │ │ │ │ ├── various_2.dart.weak.transformed.expect │ │ │ │ │ │ ├── various_2_lib.dart │ │ │ │ │ │ └── various_lib.dart │ │ │ │ ├── constructor_const_inference.dart │ │ │ │ ├── constructor_const_inference.dart.strong.expect │ │ │ │ ├── constructor_const_inference.dart.strong.transformed.expect │ │ │ │ ├── constructor_const_inference.dart.textual_outline.expect │ │ │ │ ├── constructor_const_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_const_inference.dart.weak.expect │ │ │ │ ├── constructor_const_inference.dart.weak.modular.expect │ │ │ │ ├── constructor_const_inference.dart.weak.outline.expect │ │ │ │ ├── constructor_const_inference.dart.weak.transformed.expect │ │ │ │ ├── constructor_cycle.dart │ │ │ │ ├── constructor_cycle.dart.strong.expect │ │ │ │ ├── constructor_cycle.dart.strong.transformed.expect │ │ │ │ ├── constructor_cycle.dart.textual_outline.expect │ │ │ │ ├── constructor_cycle.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_cycle.dart.weak.expect │ │ │ │ ├── constructor_cycle.dart.weak.modular.expect │ │ │ │ ├── constructor_cycle.dart.weak.outline.expect │ │ │ │ ├── constructor_cycle.dart.weak.transformed.expect │ │ │ │ ├── constructor_function_types.dart │ │ │ │ ├── constructor_function_types.dart.strong.expect │ │ │ │ ├── constructor_function_types.dart.strong.transformed.expect │ │ │ │ ├── constructor_function_types.dart.textual_outline.expect │ │ │ │ ├── constructor_function_types.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_function_types.dart.weak.expect │ │ │ │ ├── constructor_function_types.dart.weak.modular.expect │ │ │ │ ├── constructor_function_types.dart.weak.outline.expect │ │ │ │ ├── constructor_function_types.dart.weak.transformed.expect │ │ │ │ ├── constructor_initializer_invalid.dart │ │ │ │ ├── constructor_initializer_invalid.dart.strong.expect │ │ │ │ ├── constructor_initializer_invalid.dart.strong.transformed.expect │ │ │ │ ├── constructor_initializer_invalid.dart.textual_outline.expect │ │ │ │ ├── constructor_initializer_invalid.dart.weak.expect │ │ │ │ ├── constructor_initializer_invalid.dart.weak.modular.expect │ │ │ │ ├── constructor_initializer_invalid.dart.weak.outline.expect │ │ │ │ ├── constructor_initializer_invalid.dart.weak.transformed.expect │ │ │ │ ├── constructor_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── continue_inference_after_error.dart │ │ │ │ ├── continue_inference_after_error.dart.strong.expect │ │ │ │ ├── continue_inference_after_error.dart.strong.transformed.expect │ │ │ │ ├── continue_inference_after_error.dart.textual_outline.expect │ │ │ │ ├── continue_inference_after_error.dart.textual_outline_modelled.expect │ │ │ │ ├── continue_inference_after_error.dart.weak.expect │ │ │ │ ├── continue_inference_after_error.dart.weak.modular.expect │ │ │ │ ├── continue_inference_after_error.dart.weak.outline.expect │ │ │ │ ├── continue_inference_after_error.dart.weak.transformed.expect │ │ │ │ ├── continue_inference_after_error_lib.dart │ │ │ │ ├── continue_label_invalid.dart │ │ │ │ ├── continue_label_invalid.dart.strong.expect │ │ │ │ ├── continue_label_invalid.dart.strong.transformed.expect │ │ │ │ ├── continue_label_invalid.dart.textual_outline.expect │ │ │ │ ├── continue_label_invalid.dart.textual_outline_modelled.expect │ │ │ │ ├── continue_label_invalid.dart.weak.expect │ │ │ │ ├── continue_label_invalid.dart.weak.modular.expect │ │ │ │ ├── continue_label_invalid.dart.weak.outline.expect │ │ │ │ ├── continue_label_invalid.dart.weak.transformed.expect │ │ │ │ ├── control_flow_collection.dart │ │ │ │ ├── control_flow_collection.dart.strong.expect │ │ │ │ ├── control_flow_collection.dart.strong.transformed.expect │ │ │ │ ├── control_flow_collection.dart.textual_outline.expect │ │ │ │ ├── control_flow_collection.dart.textual_outline_modelled.expect │ │ │ │ ├── control_flow_collection.dart.weak.expect │ │ │ │ ├── control_flow_collection.dart.weak.modular.expect │ │ │ │ ├── control_flow_collection.dart.weak.outline.expect │ │ │ │ ├── control_flow_collection.dart.weak.transformed.expect │ │ │ │ ├── control_flow_collection_inference.dart │ │ │ │ ├── control_flow_collection_inference.dart.strong.expect │ │ │ │ ├── control_flow_collection_inference.dart.strong.transformed.expect │ │ │ │ ├── control_flow_collection_inference.dart.textual_outline.expect │ │ │ │ ├── control_flow_collection_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── control_flow_collection_inference.dart.weak.expect │ │ │ │ ├── control_flow_collection_inference.dart.weak.modular.expect │ │ │ │ ├── control_flow_collection_inference.dart.weak.outline.expect │ │ │ │ ├── control_flow_collection_inference.dart.weak.transformed.expect │ │ │ │ ├── control_flow_collection_inference2.dart │ │ │ │ ├── control_flow_collection_inference2.dart.strong.expect │ │ │ │ ├── control_flow_collection_inference2.dart.strong.transformed.expect │ │ │ │ ├── control_flow_collection_inference2.dart.textual_outline.expect │ │ │ │ ├── control_flow_collection_inference2.dart.textual_outline_modelled.expect │ │ │ │ ├── control_flow_collection_inference2.dart.weak.expect │ │ │ │ ├── control_flow_collection_inference2.dart.weak.modular.expect │ │ │ │ ├── control_flow_collection_inference2.dart.weak.outline.expect │ │ │ │ ├── control_flow_collection_inference2.dart.weak.transformed.expect │ │ │ │ ├── covariant_equals.dart │ │ │ │ ├── covariant_equals.dart.strong.expect │ │ │ │ ├── covariant_equals.dart.strong.transformed.expect │ │ │ │ ├── covariant_equals.dart.textual_outline.expect │ │ │ │ ├── covariant_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_equals.dart.weak.expect │ │ │ │ ├── covariant_equals.dart.weak.modular.expect │ │ │ │ ├── covariant_equals.dart.weak.outline.expect │ │ │ │ ├── covariant_equals.dart.weak.transformed.expect │ │ │ │ ├── covariant_field.dart │ │ │ │ ├── covariant_field.dart.strong.expect │ │ │ │ ├── covariant_field.dart.textual_outline.expect │ │ │ │ ├── covariant_field.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_field.dart.weak.expect │ │ │ │ ├── covariant_field.dart.weak.modular.expect │ │ │ │ ├── covariant_field.dart.weak.outline.expect │ │ │ │ ├── covariant_field_override.dart │ │ │ │ ├── covariant_field_override.dart.strong.expect │ │ │ │ ├── covariant_field_override.dart.strong.transformed.expect │ │ │ │ ├── covariant_field_override.dart.textual_outline.expect │ │ │ │ ├── covariant_field_override.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_field_override.dart.weak.expect │ │ │ │ ├── covariant_field_override.dart.weak.modular.expect │ │ │ │ ├── covariant_field_override.dart.weak.outline.expect │ │ │ │ ├── covariant_field_override.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic.dart │ │ │ │ ├── covariant_generic.dart.strong.expect │ │ │ │ ├── covariant_generic.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic.dart.textual_outline.expect │ │ │ │ ├── covariant_generic.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic.dart.weak.expect │ │ │ │ ├── covariant_generic.dart.weak.modular.expect │ │ │ │ ├── covariant_generic.dart.weak.outline.expect │ │ │ │ ├── covariant_generic.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic2.dart │ │ │ │ ├── covariant_generic2.dart.strong.expect │ │ │ │ ├── covariant_generic2.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic2.dart.textual_outline.expect │ │ │ │ ├── covariant_generic2.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic2.dart.weak.expect │ │ │ │ ├── covariant_generic2.dart.weak.modular.expect │ │ │ │ ├── covariant_generic2.dart.weak.outline.expect │ │ │ │ ├── covariant_generic2.dart.weak.transformed.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.strong.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.strong.transformed.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.textual_outline.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.weak.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.weak.modular.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.weak.outline.expect │ │ │ │ ├── covariant_parameter_in_superclass_of_mixin_application.dart.weak.transformed.expect │ │ │ │ ├── covariant_super_check.dart │ │ │ │ ├── covariant_super_check.dart.strong.expect │ │ │ │ ├── covariant_super_check.dart.strong.transformed.expect │ │ │ │ ├── covariant_super_check.dart.textual_outline.expect │ │ │ │ ├── covariant_super_check.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_super_check.dart.weak.expect │ │ │ │ ├── covariant_super_check.dart.weak.modular.expect │ │ │ │ ├── covariant_super_check.dart.weak.outline.expect │ │ │ │ ├── covariant_super_check.dart.weak.transformed.expect │ │ │ │ ├── covariant_type_parameter.dart │ │ │ │ ├── covariant_type_parameter.dart.strong.expect │ │ │ │ ├── covariant_type_parameter.dart.strong.transformed.expect │ │ │ │ ├── covariant_type_parameter.dart.textual_outline.expect │ │ │ │ ├── covariant_type_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_type_parameter.dart.weak.expect │ │ │ │ ├── covariant_type_parameter.dart.weak.modular.expect │ │ │ │ ├── covariant_type_parameter.dart.weak.outline.expect │ │ │ │ ├── covariant_type_parameter.dart.weak.transformed.expect │ │ │ │ ├── crashes │ │ │ │ │ ├── crash_01 │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ └── main_lib.dart │ │ │ │ │ ├── crash_02 │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ └── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── crash_03 │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ └── main_lib.dart │ │ │ │ │ ├── crash_04 │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ └── main.dart.weak.transformed.expect │ │ │ │ │ ├── crash_05 │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ └── main_lib.dart │ │ │ │ │ └── crash_06 │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ └── main.dart.textual_outline_modelled.expect │ │ │ │ ├── cycles.dart │ │ │ │ ├── cycles.dart.strong.expect │ │ │ │ ├── cycles.dart.strong.transformed.expect │ │ │ │ ├── cycles.dart.textual_outline.expect │ │ │ │ ├── cycles.dart.textual_outline_modelled.expect │ │ │ │ ├── cycles.dart.weak.expect │ │ │ │ ├── cycles.dart.weak.modular.expect │ │ │ │ ├── cycles.dart.weak.outline.expect │ │ │ │ ├── cycles.dart.weak.transformed.expect │ │ │ │ ├── deeply_nested_types.dart │ │ │ │ ├── deeply_nested_types.dart.strong.expect │ │ │ │ ├── deeply_nested_types.dart.strong.transformed.expect │ │ │ │ ├── deeply_nested_types.dart.textual_outline.expect │ │ │ │ ├── deeply_nested_types.dart.textual_outline_modelled.expect │ │ │ │ ├── deeply_nested_types.dart.weak.expect │ │ │ │ ├── deeply_nested_types.dart.weak.modular.expect │ │ │ │ ├── deeply_nested_types.dart.weak.outline.expect │ │ │ │ ├── deeply_nested_types.dart.weak.transformed.expect │ │ │ │ ├── default_values.dart │ │ │ │ ├── default_values.dart.strong.expect │ │ │ │ ├── default_values.dart.strong.transformed.expect │ │ │ │ ├── default_values.dart.textual_outline.expect │ │ │ │ ├── default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── default_values.dart.weak.expect │ │ │ │ ├── default_values.dart.weak.modular.expect │ │ │ │ ├── default_values.dart.weak.outline.expect │ │ │ │ ├── default_values.dart.weak.transformed.expect │ │ │ │ ├── deferred_lib.dart │ │ │ │ ├── deferred_type_annotation.dart │ │ │ │ ├── deferred_type_annotation.dart.strong.expect │ │ │ │ ├── deferred_type_annotation.dart.strong.transformed.expect │ │ │ │ ├── deferred_type_annotation.dart.textual_outline.expect │ │ │ │ ├── deferred_type_annotation.dart.textual_outline_modelled.expect │ │ │ │ ├── deferred_type_annotation.dart.weak.expect │ │ │ │ ├── deferred_type_annotation.dart.weak.modular.expect │ │ │ │ ├── deferred_type_annotation.dart.weak.outline.expect │ │ │ │ ├── deferred_type_annotation.dart.weak.transformed.expect │ │ │ │ ├── demote_closure_types.dart │ │ │ │ ├── demote_closure_types.dart.strong.expect │ │ │ │ ├── demote_closure_types.dart.strong.transformed.expect │ │ │ │ ├── demote_closure_types.dart.textual_outline.expect │ │ │ │ ├── demote_closure_types.dart.textual_outline_modelled.expect │ │ │ │ ├── demote_closure_types.dart.weak.expect │ │ │ │ ├── demote_closure_types.dart.weak.modular.expect │ │ │ │ ├── demote_closure_types.dart.weak.outline.expect │ │ │ │ ├── demote_closure_types.dart.weak.transformed.expect │ │ │ │ ├── duplicate_instantiation.dart │ │ │ │ ├── duplicate_instantiation.dart.strong.expect │ │ │ │ ├── duplicate_instantiation.dart.strong.transformed.expect │ │ │ │ ├── duplicate_instantiation.dart.textual_outline.expect │ │ │ │ ├── duplicate_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.modular.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.outline.expect │ │ │ │ ├── duplicate_instantiation.dart.weak.transformed.expect │ │ │ │ ├── duplicate_typedef.dart │ │ │ │ ├── duplicate_typedef.dart.strong.expect │ │ │ │ ├── duplicate_typedef.dart.strong.transformed.expect │ │ │ │ ├── duplicate_typedef.dart.textual_outline.expect │ │ │ │ ├── duplicate_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicate_typedef.dart.weak.expect │ │ │ │ ├── duplicate_typedef.dart.weak.modular.expect │ │ │ │ ├── duplicate_typedef.dart.weak.outline.expect │ │ │ │ ├── duplicate_typedef.dart.weak.transformed.expect │ │ │ │ ├── duplicated_bad_prefix.dart │ │ │ │ ├── duplicated_bad_prefix.dart.strong.expect │ │ │ │ ├── duplicated_bad_prefix.dart.strong.transformed.expect │ │ │ │ ├── duplicated_bad_prefix.dart.textual_outline.expect │ │ │ │ ├── duplicated_bad_prefix.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicated_bad_prefix.dart.weak.expect │ │ │ │ ├── duplicated_bad_prefix.dart.weak.modular.expect │ │ │ │ ├── duplicated_bad_prefix.dart.weak.outline.expect │ │ │ │ ├── duplicated_bad_prefix.dart.weak.transformed.expect │ │ │ │ ├── duplicated_bad_prefix_lib1.dart │ │ │ │ ├── duplicated_bad_prefix_lib2.dart │ │ │ │ ├── duplicated_declarations.dart │ │ │ │ ├── duplicated_declarations.dart.strong.expect │ │ │ │ ├── duplicated_declarations.dart.strong.transformed.expect │ │ │ │ ├── duplicated_declarations.dart.textual_outline.expect │ │ │ │ ├── duplicated_declarations.dart.weak.expect │ │ │ │ ├── duplicated_declarations.dart.weak.modular.expect │ │ │ │ ├── duplicated_declarations.dart.weak.outline.expect │ │ │ │ ├── duplicated_declarations.dart.weak.transformed.expect │ │ │ │ ├── duplicated_declarations_lib.dart │ │ │ │ ├── duplicated_declarations_part.dart │ │ │ │ ├── duplicated_field_initializer.dart │ │ │ │ ├── duplicated_field_initializer.dart.strong.expect │ │ │ │ ├── duplicated_field_initializer.dart.strong.transformed.expect │ │ │ │ ├── duplicated_field_initializer.dart.textual_outline.expect │ │ │ │ ├── duplicated_field_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicated_field_initializer.dart.weak.expect │ │ │ │ ├── duplicated_field_initializer.dart.weak.modular.expect │ │ │ │ ├── duplicated_field_initializer.dart.weak.outline.expect │ │ │ │ ├── duplicated_field_initializer.dart.weak.transformed.expect │ │ │ │ ├── duplicated_named_args_3.dart │ │ │ │ ├── duplicated_named_args_3.dart.strong.expect │ │ │ │ ├── duplicated_named_args_3.dart.strong.transformed.expect │ │ │ │ ├── duplicated_named_args_3.dart.textual_outline.expect │ │ │ │ ├── duplicated_named_args_3.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicated_named_args_3.dart.weak.expect │ │ │ │ ├── duplicated_named_args_3.dart.weak.modular.expect │ │ │ │ ├── duplicated_named_args_3.dart.weak.outline.expect │ │ │ │ ├── duplicated_named_args_3.dart.weak.transformed.expect │ │ │ │ ├── dynamic_and_void.dart │ │ │ │ ├── dynamic_and_void.dart.strong.expect │ │ │ │ ├── dynamic_and_void.dart.strong.transformed.expect │ │ │ │ ├── dynamic_and_void.dart.textual_outline.expect │ │ │ │ ├── dynamic_and_void.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_and_void.dart.weak.expect │ │ │ │ ├── dynamic_and_void.dart.weak.modular.expect │ │ │ │ ├── dynamic_and_void.dart.weak.outline.expect │ │ │ │ ├── dynamic_and_void.dart.weak.transformed.expect │ │ │ │ ├── empty_switch.dart │ │ │ │ ├── empty_switch.dart.strong.expect │ │ │ │ ├── empty_switch.dart.strong.transformed.expect │ │ │ │ ├── empty_switch.dart.textual_outline.expect │ │ │ │ ├── empty_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── empty_switch.dart.weak.expect │ │ │ │ ├── empty_switch.dart.weak.modular.expect │ │ │ │ ├── empty_switch.dart.weak.outline.expect │ │ │ │ ├── empty_switch.dart.weak.transformed.expect │ │ │ │ ├── enum_names_from_core.dart │ │ │ │ ├── enum_names_from_core.dart.strong.expect │ │ │ │ ├── enum_names_from_core.dart.strong.transformed.expect │ │ │ │ ├── enum_names_from_core.dart.textual_outline.expect │ │ │ │ ├── enum_names_from_core.dart.textual_outline_modelled.expect │ │ │ │ ├── enum_names_from_core.dart.weak.expect │ │ │ │ ├── enum_names_from_core.dart.weak.modular.expect │ │ │ │ ├── enum_names_from_core.dart.weak.outline.expect │ │ │ │ ├── enum_names_from_core.dart.weak.transformed.expect │ │ │ │ ├── enum_super_constructor.dart │ │ │ │ ├── enum_super_constructor.dart.strong.expect │ │ │ │ ├── enum_super_constructor.dart.strong.transformed.expect │ │ │ │ ├── enum_super_constructor.dart.textual_outline.expect │ │ │ │ ├── enum_super_constructor.dart.weak.expect │ │ │ │ ├── enum_super_constructor.dart.weak.modular.expect │ │ │ │ ├── enum_super_constructor.dart.weak.outline.expect │ │ │ │ ├── enum_super_constructor.dart.weak.transformed.expect │ │ │ │ ├── error_export_from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.strong_BACKUP_1352056.expect │ │ │ │ │ ├── main.dart.strong_BASE_1352056.expect │ │ │ │ │ ├── main.dart.strong_LOCAL_1352056.expect │ │ │ │ │ ├── main.dart.strong_REMOTE_1352056.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ ├── main_lib3.dart │ │ │ │ │ └── test.options │ │ │ │ ├── error_locations │ │ │ │ │ ├── error_location_01.dart │ │ │ │ │ ├── error_location_01.dart.strong.expect │ │ │ │ │ ├── error_location_01.dart.strong.transformed.expect │ │ │ │ │ ├── error_location_01.dart.textual_outline.expect │ │ │ │ │ ├── error_location_01.dart.textual_outline_modelled.expect │ │ │ │ │ ├── error_location_01.dart.weak.expect │ │ │ │ │ ├── error_location_01.dart.weak.modular.expect │ │ │ │ │ ├── error_location_01.dart.weak.outline.expect │ │ │ │ │ ├── error_location_01.dart.weak.transformed.expect │ │ │ │ │ ├── error_location_01_lib1.dart │ │ │ │ │ ├── error_location_01_lib2.dart │ │ │ │ │ ├── error_location_02.dart │ │ │ │ │ ├── error_location_02.dart.strong.expect │ │ │ │ │ ├── error_location_02.dart.strong.transformed.expect │ │ │ │ │ ├── error_location_02.dart.textual_outline.expect │ │ │ │ │ ├── error_location_02.dart.textual_outline_modelled.expect │ │ │ │ │ ├── error_location_02.dart.weak.expect │ │ │ │ │ ├── error_location_02.dart.weak.modular.expect │ │ │ │ │ ├── error_location_02.dart.weak.outline.expect │ │ │ │ │ ├── error_location_02.dart.weak.transformed.expect │ │ │ │ │ ├── error_location_02_lib1.dart │ │ │ │ │ ├── error_location_02_lib2.dart │ │ │ │ │ ├── error_location_02_lib3.dart │ │ │ │ │ ├── error_location_03.dart │ │ │ │ │ ├── error_location_03.dart.strong.expect │ │ │ │ │ ├── error_location_03.dart.strong.transformed.expect │ │ │ │ │ ├── error_location_03.dart.textual_outline.expect │ │ │ │ │ ├── error_location_03.dart.textual_outline_modelled.expect │ │ │ │ │ ├── error_location_03.dart.weak.expect │ │ │ │ │ ├── error_location_03.dart.weak.modular.expect │ │ │ │ │ ├── error_location_03.dart.weak.outline.expect │ │ │ │ │ ├── error_location_03.dart.weak.transformed.expect │ │ │ │ │ ├── error_location_03_lib1.dart │ │ │ │ │ ├── error_location_03_lib2.dart │ │ │ │ │ ├── error_location_03_lib3.dart │ │ │ │ │ ├── error_location_04.dart │ │ │ │ │ ├── error_location_04.dart.strong.expect │ │ │ │ │ ├── error_location_04.dart.strong.transformed.expect │ │ │ │ │ ├── error_location_04.dart.textual_outline.expect │ │ │ │ │ ├── error_location_04.dart.textual_outline_modelled.expect │ │ │ │ │ ├── error_location_04.dart.weak.expect │ │ │ │ │ ├── error_location_04.dart.weak.modular.expect │ │ │ │ │ ├── error_location_04.dart.weak.outline.expect │ │ │ │ │ ├── error_location_04.dart.weak.transformed.expect │ │ │ │ │ ├── error_location_04_lib1.dart │ │ │ │ │ ├── error_location_04_lib2.dart │ │ │ │ │ ├── error_location_05.dart │ │ │ │ │ ├── error_location_05.dart.strong.expect │ │ │ │ │ ├── error_location_05.dart.strong.transformed.expect │ │ │ │ │ ├── error_location_05.dart.textual_outline.expect │ │ │ │ │ ├── error_location_05.dart.textual_outline_modelled.expect │ │ │ │ │ ├── error_location_05.dart.weak.expect │ │ │ │ │ ├── error_location_05.dart.weak.modular.expect │ │ │ │ │ ├── error_location_05.dart.weak.outline.expect │ │ │ │ │ ├── error_location_05.dart.weak.transformed.expect │ │ │ │ │ ├── error_location_05_lib1.dart │ │ │ │ │ ├── error_location_06.dart │ │ │ │ │ ├── error_location_06.dart.strong.expect │ │ │ │ │ ├── error_location_06.dart.strong.transformed.expect │ │ │ │ │ ├── error_location_06.dart.textual_outline.expect │ │ │ │ │ ├── error_location_06.dart.textual_outline_modelled.expect │ │ │ │ │ ├── error_location_06.dart.weak.expect │ │ │ │ │ ├── error_location_06.dart.weak.modular.expect │ │ │ │ │ ├── error_location_06.dart.weak.outline.expect │ │ │ │ │ ├── error_location_06.dart.weak.transformed.expect │ │ │ │ │ └── error_location_06_lib1.dart │ │ │ │ ├── error_recovery │ │ │ │ │ ├── annotations.dart │ │ │ │ │ ├── annotations.dart.strong.expect │ │ │ │ │ ├── annotations.dart.strong.transformed.expect │ │ │ │ │ ├── annotations.dart.textual_outline.expect │ │ │ │ │ ├── annotations.dart.weak.expect │ │ │ │ │ ├── annotations.dart.weak.modular.expect │ │ │ │ │ ├── annotations.dart.weak.outline.expect │ │ │ │ │ ├── annotations.dart.weak.transformed.expect │ │ │ │ │ ├── await_not_in_async.dart │ │ │ │ │ ├── await_not_in_async.dart.strong.expect │ │ │ │ │ ├── await_not_in_async.dart.strong.transformed.expect │ │ │ │ │ ├── await_not_in_async.dart.textual_outline.expect │ │ │ │ │ ├── await_not_in_async.dart.textual_outline_modelled.expect │ │ │ │ │ ├── await_not_in_async.dart.weak.expect │ │ │ │ │ ├── await_not_in_async.dart.weak.modular.expect │ │ │ │ │ ├── await_not_in_async.dart.weak.outline.expect │ │ │ │ │ ├── await_not_in_async.dart.weak.transformed.expect │ │ │ │ │ ├── class_header.dart │ │ │ │ │ ├── class_header.dart.strong.expect │ │ │ │ │ ├── class_header.dart.strong.transformed.expect │ │ │ │ │ ├── class_header.dart.textual_outline.expect │ │ │ │ │ ├── class_header.dart.weak.expect │ │ │ │ │ ├── class_header.dart.weak.modular.expect │ │ │ │ │ ├── class_header.dart.weak.outline.expect │ │ │ │ │ ├── class_header.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.strong.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.weak.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_general.crash_dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.strong.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.weak.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_get.crash_dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.strong.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.weak.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_return_type.crash_dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.strong.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.weak.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_bad_name_set.crash_dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_get.dart │ │ │ │ │ ├── constructor_recovery_get.dart.strong.expect │ │ │ │ │ ├── constructor_recovery_get.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_get.dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_get.dart.weak.expect │ │ │ │ │ ├── constructor_recovery_get.dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_get.dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_get.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_ok.dart │ │ │ │ │ ├── constructor_recovery_ok.dart.strong.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.textual_outline_modelled.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.weak.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_ok.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.strong.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.weak.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_operator.crash_dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart │ │ │ │ │ ├── constructor_recovery_return_type.dart.strong.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart.weak.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_return_type.dart.weak.transformed.expect │ │ │ │ │ ├── constructor_recovery_set.dart │ │ │ │ │ ├── constructor_recovery_set.dart.strong.expect │ │ │ │ │ ├── constructor_recovery_set.dart.strong.transformed.expect │ │ │ │ │ ├── constructor_recovery_set.dart.textual_outline.expect │ │ │ │ │ ├── constructor_recovery_set.dart.weak.expect │ │ │ │ │ ├── constructor_recovery_set.dart.weak.modular.expect │ │ │ │ │ ├── constructor_recovery_set.dart.weak.outline.expect │ │ │ │ │ ├── constructor_recovery_set.dart.weak.transformed.expect │ │ │ │ │ ├── empty_await_for.dart │ │ │ │ │ ├── empty_await_for.dart.strong.expect │ │ │ │ │ ├── empty_await_for.dart.strong.transformed.expect │ │ │ │ │ ├── empty_await_for.dart.textual_outline.expect │ │ │ │ │ ├── empty_await_for.dart.textual_outline_modelled.expect │ │ │ │ │ ├── empty_await_for.dart.weak.expect │ │ │ │ │ ├── empty_await_for.dart.weak.modular.expect │ │ │ │ │ ├── empty_await_for.dart.weak.outline.expect │ │ │ │ │ ├── empty_await_for.dart.weak.transformed.expect │ │ │ │ │ ├── empty_for.dart │ │ │ │ │ ├── empty_for.dart.strong.expect │ │ │ │ │ ├── empty_for.dart.strong.transformed.expect │ │ │ │ │ ├── empty_for.dart.textual_outline.expect │ │ │ │ │ ├── empty_for.dart.textual_outline_modelled.expect │ │ │ │ │ ├── empty_for.dart.weak.expect │ │ │ │ │ ├── empty_for.dart.weak.modular.expect │ │ │ │ │ ├── empty_for.dart.weak.outline.expect │ │ │ │ │ ├── empty_for.dart.weak.transformed.expect │ │ │ │ │ ├── for_in_with_colon.dart │ │ │ │ │ ├── for_in_with_colon.dart.strong.expect │ │ │ │ │ ├── for_in_with_colon.dart.strong.transformed.expect │ │ │ │ │ ├── for_in_with_colon.dart.textual_outline.expect │ │ │ │ │ ├── for_in_with_colon.dart.textual_outline_modelled.expect │ │ │ │ │ ├── for_in_with_colon.dart.weak.expect │ │ │ │ │ ├── for_in_with_colon.dart.weak.modular.expect │ │ │ │ │ ├── for_in_with_colon.dart.weak.outline.expect │ │ │ │ │ ├── for_in_with_colon.dart.weak.transformed.expect │ │ │ │ │ ├── issue_22313.dart │ │ │ │ │ ├── issue_22313.dart.strong.expect │ │ │ │ │ ├── issue_22313.dart.strong.transformed.expect │ │ │ │ │ ├── issue_22313.dart.textual_outline.expect │ │ │ │ │ ├── issue_22313.dart.weak.expect │ │ │ │ │ ├── issue_22313.dart.weak.modular.expect │ │ │ │ │ ├── issue_22313.dart.weak.outline.expect │ │ │ │ │ ├── issue_22313.dart.weak.transformed.expect │ │ │ │ │ ├── issue_26810.dart │ │ │ │ │ ├── issue_26810.dart.strong.expect │ │ │ │ │ ├── issue_26810.dart.strong.transformed.expect │ │ │ │ │ ├── issue_26810.dart.textual_outline.expect │ │ │ │ │ ├── issue_26810.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_26810.dart.weak.expect │ │ │ │ │ ├── issue_26810.dart.weak.modular.expect │ │ │ │ │ ├── issue_26810.dart.weak.outline.expect │ │ │ │ │ ├── issue_26810.dart.weak.transformed.expect │ │ │ │ │ ├── issue_38415.crash_dart │ │ │ │ │ ├── issue_38415.crash_dart.strong.expect │ │ │ │ │ ├── issue_38415.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_38415.crash_dart.weak.expect │ │ │ │ │ ├── issue_38415.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_38415.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_38415.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39024.crash_dart │ │ │ │ │ ├── issue_39024.crash_dart.strong.expect │ │ │ │ │ ├── issue_39024.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39024.crash_dart.weak.expect │ │ │ │ │ ├── issue_39024.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39024.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39024.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39026.crash_dart │ │ │ │ │ ├── issue_39026.crash_dart.strong.expect │ │ │ │ │ ├── issue_39026.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39026.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39026.crash_dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_39026.crash_dart.weak.expect │ │ │ │ │ ├── issue_39026.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39026.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39026.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart │ │ │ │ │ ├── issue_39026_prime.crash_dart.strong.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.weak.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39026_prime.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39033.crash_dart │ │ │ │ │ ├── issue_39033.crash_dart.strong.expect │ │ │ │ │ ├── issue_39033.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39033.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39033.crash_dart.weak.expect │ │ │ │ │ ├── issue_39033.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39033.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39033.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39033b.crash_dart │ │ │ │ │ ├── issue_39033b.crash_dart.strong.expect │ │ │ │ │ ├── issue_39033b.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39033b.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39033b.crash_dart.weak.expect │ │ │ │ │ ├── issue_39033b.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39033b.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39033b.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39058.crash_dart │ │ │ │ │ ├── issue_39058.crash_dart.strong.expect │ │ │ │ │ ├── issue_39058.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39058.crash_dart.weak.expect │ │ │ │ │ ├── issue_39058.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39058.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39058.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart │ │ │ │ │ ├── issue_39058_prime.crash_dart.strong.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart.weak.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39058_prime.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39060.dart │ │ │ │ │ ├── issue_39060.dart.strong.expect │ │ │ │ │ ├── issue_39060.dart.strong.transformed.expect │ │ │ │ │ ├── issue_39060.dart.textual_outline.expect │ │ │ │ │ ├── issue_39060.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_39060.dart.weak.expect │ │ │ │ │ ├── issue_39060.dart.weak.modular.expect │ │ │ │ │ ├── issue_39060.dart.weak.outline.expect │ │ │ │ │ ├── issue_39060.dart.weak.transformed.expect │ │ │ │ │ ├── issue_39202.crash_dart │ │ │ │ │ ├── issue_39202.crash_dart.strong.expect │ │ │ │ │ ├── issue_39202.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39202.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39202.crash_dart.weak.expect │ │ │ │ │ ├── issue_39202.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39202.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39202.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39230.crash_dart │ │ │ │ │ ├── issue_39230.crash_dart.strong.expect │ │ │ │ │ ├── issue_39230.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_39230.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_39230.crash_dart.weak.expect │ │ │ │ │ ├── issue_39230.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_39230.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_39230.crash_dart.weak.transformed.expect │ │ │ │ │ ├── issue_39958_01.dart │ │ │ │ │ ├── issue_39958_01.dart.strong.expect │ │ │ │ │ ├── issue_39958_01.dart.strong.transformed.expect │ │ │ │ │ ├── issue_39958_01.dart.textual_outline.expect │ │ │ │ │ ├── issue_39958_01.dart.weak.expect │ │ │ │ │ ├── issue_39958_01.dart.weak.modular.expect │ │ │ │ │ ├── issue_39958_01.dart.weak.outline.expect │ │ │ │ │ ├── issue_39958_01.dart.weak.transformed.expect │ │ │ │ │ ├── issue_39958_02.dart │ │ │ │ │ ├── issue_39958_02.dart.strong.expect │ │ │ │ │ ├── issue_39958_02.dart.strong.transformed.expect │ │ │ │ │ ├── issue_39958_02.dart.textual_outline.expect │ │ │ │ │ ├── issue_39958_02.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_39958_02.dart.weak.expect │ │ │ │ │ ├── issue_39958_02.dart.weak.modular.expect │ │ │ │ │ ├── issue_39958_02.dart.weak.outline.expect │ │ │ │ │ ├── issue_39958_02.dart.weak.transformed.expect │ │ │ │ │ ├── issue_39958_03.dart │ │ │ │ │ ├── issue_39958_03.dart.strong.expect │ │ │ │ │ ├── issue_39958_03.dart.strong.transformed.expect │ │ │ │ │ ├── issue_39958_03.dart.textual_outline.expect │ │ │ │ │ ├── issue_39958_03.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_39958_03.dart.weak.expect │ │ │ │ │ ├── issue_39958_03.dart.weak.modular.expect │ │ │ │ │ ├── issue_39958_03.dart.weak.outline.expect │ │ │ │ │ ├── issue_39958_03.dart.weak.transformed.expect │ │ │ │ │ ├── issue_39958_04.dart │ │ │ │ │ ├── issue_39958_04.dart.strong.expect │ │ │ │ │ ├── issue_39958_04.dart.strong.transformed.expect │ │ │ │ │ ├── issue_39958_04.dart.textual_outline.expect │ │ │ │ │ ├── issue_39958_04.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_39958_04.dart.weak.expect │ │ │ │ │ ├── issue_39958_04.dart.weak.modular.expect │ │ │ │ │ ├── issue_39958_04.dart.weak.outline.expect │ │ │ │ │ ├── issue_39958_04.dart.weak.transformed.expect │ │ │ │ │ ├── issue_43090.crash_dart │ │ │ │ │ ├── issue_43090.crash_dart.strong.expect │ │ │ │ │ ├── issue_43090.crash_dart.strong.transformed.expect │ │ │ │ │ ├── issue_43090.crash_dart.textual_outline.expect │ │ │ │ │ ├── issue_43090.crash_dart.weak.expect │ │ │ │ │ ├── issue_43090.crash_dart.weak.modular.expect │ │ │ │ │ ├── issue_43090.crash_dart.weak.outline.expect │ │ │ │ │ ├── issue_43090.crash_dart.weak.transformed.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.strong.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.strong.transformed.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.textual_outline.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.textual_outline_modelled.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.weak.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.weak.modular.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.weak.outline.expect │ │ │ │ │ ├── parse_error_in_try_on_clause.dart.weak.transformed.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart │ │ │ │ │ ├── weekly_bot_83_failure.dart.strong.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.strong.transformed.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.textual_outline.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.textual_outline_modelled.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.weak.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.weak.modular.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.weak.outline.expect │ │ │ │ │ ├── weekly_bot_83_failure.dart.weak.transformed.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.strong.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.strong.transformed.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.textual_outline.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.textual_outline_modelled.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.weak.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.weak.modular.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.weak.outline.expect │ │ │ │ │ ├── weekly_bot_83_failure_2.dart.weak.transformed.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart │ │ │ │ │ ├── weekly_bot_91_failure.dart.strong.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.strong.transformed.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.textual_outline.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.textual_outline_modelled.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.weak.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.weak.modular.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.weak.outline.expect │ │ │ │ │ ├── weekly_bot_91_failure.dart.weak.transformed.expect │ │ │ │ │ ├── weekly_bot_91_failure_lib.dart │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.strong.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.strong.transformed.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.textual_outline.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.textual_outline_modelled.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.weak.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.weak.modular.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.weak.outline.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1.dart.weak.transformed.expect │ │ │ │ │ ├── weekly_bot_91_failure_variation_1_lib.dart │ │ │ │ │ ├── yield_not_in_generator.dart │ │ │ │ │ ├── yield_not_in_generator.dart.strong.expect │ │ │ │ │ ├── yield_not_in_generator.dart.strong.transformed.expect │ │ │ │ │ ├── yield_not_in_generator.dart.textual_outline.expect │ │ │ │ │ ├── yield_not_in_generator.dart.textual_outline_modelled.expect │ │ │ │ │ ├── yield_not_in_generator.dart.weak.expect │ │ │ │ │ ├── yield_not_in_generator.dart.weak.modular.expect │ │ │ │ │ ├── yield_not_in_generator.dart.weak.outline.expect │ │ │ │ │ └── yield_not_in_generator.dart.weak.transformed.expect │ │ │ │ ├── escape.dart │ │ │ │ ├── escape.dart.strong.expect │ │ │ │ ├── escape.dart.strong.transformed.expect │ │ │ │ ├── escape.dart.textual_outline.expect │ │ │ │ ├── escape.dart.textual_outline_modelled.expect │ │ │ │ ├── escape.dart.weak.expect │ │ │ │ ├── escape.dart.weak.modular.expect │ │ │ │ ├── escape.dart.weak.outline.expect │ │ │ │ ├── escape.dart.weak.transformed.expect │ │ │ │ ├── experiment_release_version │ │ │ │ │ ├── allowed_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── not_allowed_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ │ ├── test.options │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ ├── export_builtin_from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ ├── main_lib3.dart │ │ │ │ │ ├── main_lib4.dart │ │ │ │ │ └── test.options │ │ │ │ ├── export_main.dart │ │ │ │ ├── export_main.dart.strong.expect │ │ │ │ ├── export_main.dart.strong.transformed.expect │ │ │ │ ├── export_main.dart.textual_outline.expect │ │ │ │ ├── export_main.dart.textual_outline_modelled.expect │ │ │ │ ├── export_main.dart.weak.expect │ │ │ │ ├── export_main.dart.weak.modular.expect │ │ │ │ ├── export_main.dart.weak.outline.expect │ │ │ │ ├── export_main.dart.weak.transformed.expect │ │ │ │ ├── export_test.dart │ │ │ │ ├── export_test.dart.strong.expect │ │ │ │ ├── export_test.dart.strong.transformed.expect │ │ │ │ ├── export_test.dart.textual_outline.expect │ │ │ │ ├── export_test.dart.textual_outline_modelled.expect │ │ │ │ ├── export_test.dart.weak.expect │ │ │ │ ├── export_test.dart.weak.modular.expect │ │ │ │ ├── export_test.dart.weak.outline.expect │ │ │ │ ├── export_test.dart.weak.transformed.expect │ │ │ │ ├── expressions.dart │ │ │ │ ├── expressions.dart.strong.expect │ │ │ │ ├── expressions.dart.strong.transformed.expect │ │ │ │ ├── expressions.dart.textual_outline.expect │ │ │ │ ├── expressions.dart.textual_outline_modelled.expect │ │ │ │ ├── expressions.dart.weak.expect │ │ │ │ ├── expressions.dart.weak.modular.expect │ │ │ │ ├── expressions.dart.weak.outline.expect │ │ │ │ ├── expressions.dart.weak.transformed.expect │ │ │ │ ├── extend_with_type_variable.dart │ │ │ │ ├── extend_with_type_variable.dart.strong.expect │ │ │ │ ├── extend_with_type_variable.dart.strong.transformed.expect │ │ │ │ ├── extend_with_type_variable.dart.textual_outline.expect │ │ │ │ ├── extend_with_type_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── extend_with_type_variable.dart.weak.expect │ │ │ │ ├── extend_with_type_variable.dart.weak.modular.expect │ │ │ │ ├── extend_with_type_variable.dart.weak.outline.expect │ │ │ │ ├── extend_with_type_variable.dart.weak.transformed.expect │ │ │ │ ├── extension_annotation.dart │ │ │ │ ├── extension_annotation.dart.strong.expect │ │ │ │ ├── extension_annotation.dart.strong.transformed.expect │ │ │ │ ├── extension_annotation.dart.textual_outline.expect │ │ │ │ ├── extension_annotation.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_annotation.dart.weak.expect │ │ │ │ ├── extension_annotation.dart.weak.modular.expect │ │ │ │ ├── extension_annotation.dart.weak.outline.expect │ │ │ │ ├── extension_annotation.dart.weak.transformed.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.strong.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.strong.transformed.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.textual_outline.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.weak.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.weak.modular.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.weak.outline.expect │ │ │ │ ├── extension_type_when_experiment_not_enabled.dart.weak.transformed.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart │ │ │ │ ├── extension_types_feature_not_enabled.dart.strong.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart.strong.transformed.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart.textual_outline.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart.weak.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart.weak.modular.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart.weak.outline.expect │ │ │ │ ├── extension_types_feature_not_enabled.dart.weak.transformed.expect │ │ │ │ ├── external.dart │ │ │ │ ├── external.dart.strong.expect │ │ │ │ ├── external.dart.strong.transformed.expect │ │ │ │ ├── external.dart.textual_outline.expect │ │ │ │ ├── external.dart.textual_outline_modelled.expect │ │ │ │ ├── external.dart.weak.expect │ │ │ │ ├── external.dart.weak.modular.expect │ │ │ │ ├── external.dart.weak.outline.expect │ │ │ │ ├── external.dart.weak.transformed.expect │ │ │ │ ├── external_constructor.dart │ │ │ │ ├── external_constructor.dart.strong.expect │ │ │ │ ├── external_constructor.dart.strong.transformed.expect │ │ │ │ ├── external_constructor.dart.textual_outline.expect │ │ │ │ ├── external_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── external_constructor.dart.weak.expect │ │ │ │ ├── external_constructor.dart.weak.modular.expect │ │ │ │ ├── external_constructor.dart.weak.outline.expect │ │ │ │ ├── external_constructor.dart.weak.transformed.expect │ │ │ │ ├── external_import.dart │ │ │ │ ├── external_import.dart.strong.expect │ │ │ │ ├── external_import.dart.strong.transformed.expect │ │ │ │ ├── external_import.dart.textual_outline.expect │ │ │ │ ├── external_import.dart.textual_outline_modelled.expect │ │ │ │ ├── external_import.dart.weak.expect │ │ │ │ ├── external_import.dart.weak.modular.expect │ │ │ │ ├── external_import.dart.weak.outline.expect │ │ │ │ ├── external_import.dart.weak.transformed.expect │ │ │ │ ├── external_members.dart.textual_outline.expect │ │ │ │ ├── external_members.dart.textual_outline_modelled.expect │ │ │ │ ├── external_method.dart │ │ │ │ ├── external_method.dart.strong.expect │ │ │ │ ├── external_method.dart.strong.transformed.expect │ │ │ │ ├── external_method.dart.textual_outline.expect │ │ │ │ ├── external_method.dart.textual_outline_modelled.expect │ │ │ │ ├── external_method.dart.weak.expect │ │ │ │ ├── external_method.dart.weak.modular.expect │ │ │ │ ├── external_method.dart.weak.outline.expect │ │ │ │ ├── external_method.dart.weak.transformed.expect │ │ │ │ ├── factory_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── fallthrough.dart │ │ │ │ ├── fallthrough.dart.strong.expect │ │ │ │ ├── fallthrough.dart.strong.transformed.expect │ │ │ │ ├── fallthrough.dart.textual_outline.expect │ │ │ │ ├── fallthrough.dart.textual_outline_modelled.expect │ │ │ │ ├── fallthrough.dart.weak.expect │ │ │ │ ├── fallthrough.dart.weak.modular.expect │ │ │ │ ├── fallthrough.dart.weak.outline.expect │ │ │ │ ├── fallthrough.dart.weak.transformed.expect │ │ │ │ ├── ffi_sample.dart │ │ │ │ ├── ffi_sample.dart.strong.expect │ │ │ │ ├── ffi_sample.dart.strong.transformed.expect │ │ │ │ ├── ffi_sample.dart.textual_outline.expect │ │ │ │ ├── ffi_sample.dart.textual_outline_modelled.expect │ │ │ │ ├── ffi_sample.dart.weak.expect │ │ │ │ ├── ffi_sample.dart.weak.modular.expect │ │ │ │ ├── ffi_sample.dart.weak.outline.expect │ │ │ │ ├── ffi_sample.dart.weak.transformed.expect │ │ │ │ ├── fibonacci.dart │ │ │ │ ├── fibonacci.dart.strong.expect │ │ │ │ ├── fibonacci.dart.strong.transformed.expect │ │ │ │ ├── fibonacci.dart.textual_outline.expect │ │ │ │ ├── fibonacci.dart.textual_outline_modelled.expect │ │ │ │ ├── fibonacci.dart.weak.expect │ │ │ │ ├── fibonacci.dart.weak.modular.expect │ │ │ │ ├── fibonacci.dart.weak.outline.expect │ │ │ │ ├── fibonacci.dart.weak.transformed.expect │ │ │ │ ├── field_initializer_capture_this.dart │ │ │ │ ├── field_initializer_capture_this.dart.strong.expect │ │ │ │ ├── field_initializer_capture_this.dart.strong.transformed.expect │ │ │ │ ├── field_initializer_capture_this.dart.textual_outline.expect │ │ │ │ ├── field_initializer_capture_this.dart.textual_outline_modelled.expect │ │ │ │ ├── field_initializer_capture_this.dart.weak.expect │ │ │ │ ├── field_initializer_capture_this.dart.weak.modular.expect │ │ │ │ ├── field_initializer_capture_this.dart.weak.outline.expect │ │ │ │ ├── field_initializer_capture_this.dart.weak.transformed.expect │ │ │ │ ├── final_class_declaration.dart │ │ │ │ ├── final_class_declaration.dart.strong.expect │ │ │ │ ├── final_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── final_class_declaration.dart.textual_outline.expect │ │ │ │ ├── final_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── final_class_declaration.dart.weak.expect │ │ │ │ ├── final_class_declaration.dart.weak.modular.expect │ │ │ │ ├── final_class_declaration.dart.weak.outline.expect │ │ │ │ ├── final_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── final_field_setter.dart │ │ │ │ ├── final_field_setter.dart.strong.expect │ │ │ │ ├── final_field_setter.dart.strong.transformed.expect │ │ │ │ ├── final_field_setter.dart.textual_outline.expect │ │ │ │ ├── final_field_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── final_field_setter.dart.weak.expect │ │ │ │ ├── final_field_setter.dart.weak.modular.expect │ │ │ │ ├── final_field_setter.dart.weak.outline.expect │ │ │ │ ├── final_field_setter.dart.weak.transformed.expect │ │ │ │ ├── flatten_type_variable_bound.dart │ │ │ │ ├── flatten_type_variable_bound.dart.strong.expect │ │ │ │ ├── flatten_type_variable_bound.dart.strong.transformed.expect │ │ │ │ ├── flatten_type_variable_bound.dart.textual_outline.expect │ │ │ │ ├── flatten_type_variable_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.modular.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.outline.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.transformed.expect │ │ │ │ ├── flutter_issue100888.dart │ │ │ │ ├── flutter_issue100888.dart.strong.expect │ │ │ │ ├── flutter_issue100888.dart.strong.transformed.expect │ │ │ │ ├── flutter_issue100888.dart.textual_outline.expect │ │ │ │ ├── flutter_issue100888.dart.textual_outline_modelled.expect │ │ │ │ ├── flutter_issue100888.dart.weak.expect │ │ │ │ ├── flutter_issue100888.dart.weak.modular.expect │ │ │ │ ├── flutter_issue100888.dart.weak.outline.expect │ │ │ │ ├── flutter_issue100888.dart.weak.transformed.expect │ │ │ │ ├── flutter_issue64155.dart │ │ │ │ ├── flutter_issue64155.dart.strong.expect │ │ │ │ ├── flutter_issue64155.dart.strong.transformed.expect │ │ │ │ ├── flutter_issue64155.dart.textual_outline.expect │ │ │ │ ├── flutter_issue64155.dart.textual_outline_modelled.expect │ │ │ │ ├── flutter_issue64155.dart.weak.expect │ │ │ │ ├── flutter_issue64155.dart.weak.modular.expect │ │ │ │ ├── flutter_issue64155.dart.weak.outline.expect │ │ │ │ ├── flutter_issue64155.dart.weak.transformed.expect │ │ │ │ ├── flutter_issue68092 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── folder.options │ │ │ │ ├── for_in_final_variable.dart │ │ │ │ ├── for_in_final_variable.dart.strong.expect │ │ │ │ ├── for_in_final_variable.dart.strong.transformed.expect │ │ │ │ ├── for_in_final_variable.dart.textual_outline.expect │ │ │ │ ├── for_in_final_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_final_variable.dart.weak.expect │ │ │ │ ├── for_in_final_variable.dart.weak.modular.expect │ │ │ │ ├── for_in_final_variable.dart.weak.outline.expect │ │ │ │ ├── for_in_final_variable.dart.weak.transformed.expect │ │ │ │ ├── for_in_scope.dart │ │ │ │ ├── for_in_scope.dart.strong.expect │ │ │ │ ├── for_in_scope.dart.strong.transformed.expect │ │ │ │ ├── for_in_scope.dart.textual_outline.expect │ │ │ │ ├── for_in_scope.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_scope.dart.weak.expect │ │ │ │ ├── for_in_scope.dart.weak.modular.expect │ │ │ │ ├── for_in_scope.dart.weak.outline.expect │ │ │ │ ├── for_in_scope.dart.weak.transformed.expect │ │ │ │ ├── for_in_without_declaration.dart │ │ │ │ ├── for_in_without_declaration.dart.strong.expect │ │ │ │ ├── for_in_without_declaration.dart.strong.transformed.expect │ │ │ │ ├── for_in_without_declaration.dart.textual_outline.expect │ │ │ │ ├── for_in_without_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_without_declaration.dart.weak.expect │ │ │ │ ├── for_in_without_declaration.dart.weak.modular.expect │ │ │ │ ├── for_in_without_declaration.dart.weak.outline.expect │ │ │ │ ├── for_in_without_declaration.dart.weak.transformed.expect │ │ │ │ ├── forwarding_semi_stub.dart │ │ │ │ ├── forwarding_semi_stub.dart.strong.expect │ │ │ │ ├── forwarding_semi_stub.dart.strong.transformed.expect │ │ │ │ ├── forwarding_semi_stub.dart.textual_outline.expect │ │ │ │ ├── forwarding_semi_stub.dart.textual_outline_modelled.expect │ │ │ │ ├── forwarding_semi_stub.dart.weak.expect │ │ │ │ ├── forwarding_semi_stub.dart.weak.modular.expect │ │ │ │ ├── forwarding_semi_stub.dart.weak.outline.expect │ │ │ │ ├── forwarding_semi_stub.dart.weak.transformed.expect │ │ │ │ ├── forwarding_stub_for_operator.dart │ │ │ │ ├── forwarding_stub_for_operator.dart.strong.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.strong.transformed.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.textual_outline.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.textual_outline_modelled.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.weak.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.weak.modular.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.weak.outline.expect │ │ │ │ ├── forwarding_stub_for_operator.dart.weak.transformed.expect │ │ │ │ ├── function_bad_use.dart │ │ │ │ ├── function_bad_use.dart.strong.expect │ │ │ │ ├── function_bad_use.dart.strong.transformed.expect │ │ │ │ ├── function_bad_use.dart.textual_outline.expect │ │ │ │ ├── function_bad_use.dart.textual_outline_modelled.expect │ │ │ │ ├── function_bad_use.dart.weak.expect │ │ │ │ ├── function_bad_use.dart.weak.modular.expect │ │ │ │ ├── function_bad_use.dart.weak.outline.expect │ │ │ │ ├── function_bad_use.dart.weak.transformed.expect │ │ │ │ ├── function_call1.dart │ │ │ │ ├── function_call1.dart.strong.expect │ │ │ │ ├── function_call1.dart.strong.transformed.expect │ │ │ │ ├── function_call1.dart.textual_outline.expect │ │ │ │ ├── function_call1.dart.textual_outline_modelled.expect │ │ │ │ ├── function_call1.dart.weak.expect │ │ │ │ ├── function_call1.dart.weak.modular.expect │ │ │ │ ├── function_call1.dart.weak.outline.expect │ │ │ │ ├── function_call1.dart.weak.transformed.expect │ │ │ │ ├── function_call2.dart │ │ │ │ ├── function_call2.dart.strong.expect │ │ │ │ ├── function_call2.dart.strong.transformed.expect │ │ │ │ ├── function_call2.dart.textual_outline.expect │ │ │ │ ├── function_call2.dart.textual_outline_modelled.expect │ │ │ │ ├── function_call2.dart.weak.expect │ │ │ │ ├── function_call2.dart.weak.modular.expect │ │ │ │ ├── function_call2.dart.weak.outline.expect │ │ │ │ ├── function_call2.dart.weak.transformed.expect │ │ │ │ ├── function_in_field.dart │ │ │ │ ├── function_in_field.dart.strong.expect │ │ │ │ ├── function_in_field.dart.strong.transformed.expect │ │ │ │ ├── function_in_field.dart.textual_outline.expect │ │ │ │ ├── function_in_field.dart.textual_outline_modelled.expect │ │ │ │ ├── function_in_field.dart.weak.expect │ │ │ │ ├── function_in_field.dart.weak.modular.expect │ │ │ │ ├── function_in_field.dart.weak.outline.expect │ │ │ │ ├── function_in_field.dart.weak.transformed.expect │ │ │ │ ├── function_invocation_bounds.dart │ │ │ │ ├── function_invocation_bounds.dart.strong.expect │ │ │ │ ├── function_invocation_bounds.dart.strong.transformed.expect │ │ │ │ ├── function_invocation_bounds.dart.textual_outline.expect │ │ │ │ ├── function_invocation_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── function_invocation_bounds.dart.weak.expect │ │ │ │ ├── function_invocation_bounds.dart.weak.modular.expect │ │ │ │ ├── function_invocation_bounds.dart.weak.outline.expect │ │ │ │ ├── function_invocation_bounds.dart.weak.transformed.expect │ │ │ │ ├── function_type_assignments.dart │ │ │ │ ├── function_type_assignments.dart.strong.expect │ │ │ │ ├── function_type_assignments.dart.strong.transformed.expect │ │ │ │ ├── function_type_assignments.dart.textual_outline.expect │ │ │ │ ├── function_type_assignments.dart.textual_outline_modelled.expect │ │ │ │ ├── function_type_assignments.dart.weak.expect │ │ │ │ ├── function_type_assignments.dart.weak.modular.expect │ │ │ │ ├── function_type_assignments.dart.weak.outline.expect │ │ │ │ ├── function_type_assignments.dart.weak.transformed.expect │ │ │ │ ├── function_type_default_value.dart │ │ │ │ ├── function_type_default_value.dart.strong.expect │ │ │ │ ├── function_type_default_value.dart.strong.transformed.expect │ │ │ │ ├── function_type_default_value.dart.textual_outline.expect │ │ │ │ ├── function_type_default_value.dart.weak.expect │ │ │ │ ├── function_type_default_value.dart.weak.modular.expect │ │ │ │ ├── function_type_default_value.dart.weak.outline.expect │ │ │ │ ├── function_type_default_value.dart.weak.transformed.expect │ │ │ │ ├── function_type_is_check.dart │ │ │ │ ├── function_type_is_check.dart.strong.expect │ │ │ │ ├── function_type_is_check.dart.strong.transformed.expect │ │ │ │ ├── function_type_is_check.dart.textual_outline.expect │ │ │ │ ├── function_type_is_check.dart.textual_outline_modelled.expect │ │ │ │ ├── function_type_is_check.dart.weak.expect │ │ │ │ ├── function_type_is_check.dart.weak.modular.expect │ │ │ │ ├── function_type_is_check.dart.weak.outline.expect │ │ │ │ ├── function_type_is_check.dart.weak.transformed.expect │ │ │ │ ├── function_type_parameter.dart │ │ │ │ ├── function_type_parameter.dart.strong.expect │ │ │ │ ├── function_type_parameter.dart.strong.transformed.expect │ │ │ │ ├── function_type_parameter.dart.textual_outline.expect │ │ │ │ ├── function_type_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── function_type_parameter.dart.weak.expect │ │ │ │ ├── function_type_parameter.dart.weak.modular.expect │ │ │ │ ├── function_type_parameter.dart.weak.outline.expect │ │ │ │ ├── function_type_parameter.dart.weak.transformed.expect │ │ │ │ ├── function_type_recovery.dart │ │ │ │ ├── function_type_recovery.dart.strong.expect │ │ │ │ ├── function_type_recovery.dart.strong.transformed.expect │ │ │ │ ├── function_type_recovery.dart.textual_outline.expect │ │ │ │ ├── function_type_recovery.dart.textual_outline_modelled.expect │ │ │ │ ├── function_type_recovery.dart.weak.expect │ │ │ │ ├── function_type_recovery.dart.weak.modular.expect │ │ │ │ ├── function_type_recovery.dart.weak.outline.expect │ │ │ │ ├── function_type_recovery.dart.weak.transformed.expect │ │ │ │ ├── functions.dart │ │ │ │ ├── functions.dart.strong.expect │ │ │ │ ├── functions.dart.strong.transformed.expect │ │ │ │ ├── functions.dart.textual_outline.expect │ │ │ │ ├── functions.dart.textual_outline_modelled.expect │ │ │ │ ├── functions.dart.weak.expect │ │ │ │ ├── functions.dart.weak.modular.expect │ │ │ │ ├── functions.dart.weak.outline.expect │ │ │ │ ├── functions.dart.weak.transformed.expect │ │ │ │ ├── future_or_null.dart │ │ │ │ ├── future_or_null.dart.strong.expect │ │ │ │ ├── future_or_null.dart.strong.transformed.expect │ │ │ │ ├── future_or_null.dart.textual_outline.expect │ │ │ │ ├── future_or_null.dart.textual_outline_modelled.expect │ │ │ │ ├── future_or_null.dart.weak.expect │ │ │ │ ├── future_or_null.dart.weak.modular.expect │ │ │ │ ├── future_or_null.dart.weak.outline.expect │ │ │ │ ├── future_or_null.dart.weak.transformed.expect │ │ │ │ ├── future_or_test.dart │ │ │ │ ├── future_or_test.dart.strong.expect │ │ │ │ ├── future_or_test.dart.strong.transformed.expect │ │ │ │ ├── future_or_test.dart.textual_outline.expect │ │ │ │ ├── future_or_test.dart.textual_outline_modelled.expect │ │ │ │ ├── future_or_test.dart.weak.expect │ │ │ │ ├── future_or_test.dart.weak.modular.expect │ │ │ │ ├── future_or_test.dart.weak.outline.expect │ │ │ │ ├── future_or_test.dart.weak.transformed.expect │ │ │ │ ├── future_return.dart │ │ │ │ ├── future_return.dart.strong.expect │ │ │ │ ├── future_return.dart.strong.transformed.expect │ │ │ │ ├── future_return.dart.textual_outline.expect │ │ │ │ ├── future_return.dart.textual_outline_modelled.expect │ │ │ │ ├── future_return.dart.weak.expect │ │ │ │ ├── future_return.dart.weak.modular.expect │ │ │ │ ├── future_return.dart.weak.outline.expect │ │ │ │ ├── future_return.dart.weak.transformed.expect │ │ │ │ ├── generic_function_type_in_message.dart │ │ │ │ ├── generic_function_type_in_message.dart.strong.expect │ │ │ │ ├── generic_function_type_in_message.dart.strong.transformed.expect │ │ │ │ ├── generic_function_type_in_message.dart.textual_outline.expect │ │ │ │ ├── generic_function_type_in_message.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_function_type_in_message.dart.weak.expect │ │ │ │ ├── generic_function_type_in_message.dart.weak.modular.expect │ │ │ │ ├── generic_function_type_in_message.dart.weak.outline.expect │ │ │ │ ├── generic_function_type_in_message.dart.weak.transformed.expect │ │ │ │ ├── generic_function_typedef.dart │ │ │ │ ├── generic_function_typedef.dart.strong.expect │ │ │ │ ├── generic_function_typedef.dart.strong.transformed.expect │ │ │ │ ├── generic_function_typedef.dart.textual_outline.expect │ │ │ │ ├── generic_function_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_function_typedef.dart.weak.expect │ │ │ │ ├── generic_function_typedef.dart.weak.modular.expect │ │ │ │ ├── generic_function_typedef.dart.weak.outline.expect │ │ │ │ ├── generic_function_typedef.dart.weak.transformed.expect │ │ │ │ ├── generic_function_typedef2.dart │ │ │ │ ├── generic_function_typedef2.dart.strong.expect │ │ │ │ ├── generic_function_typedef2.dart.strong.transformed.expect │ │ │ │ ├── generic_function_typedef2.dart.textual_outline.expect │ │ │ │ ├── generic_function_typedef2.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_function_typedef2.dart.weak.expect │ │ │ │ ├── generic_function_typedef2.dart.weak.modular.expect │ │ │ │ ├── generic_function_typedef2.dart.weak.outline.expect │ │ │ │ ├── generic_function_typedef2.dart.weak.transformed.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart │ │ │ │ ├── generic_typedef_in_generic_class.dart.strong.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.strong.transformed.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.textual_outline.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.weak.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.weak.modular.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.weak.outline.expect │ │ │ │ ├── generic_typedef_in_generic_class.dart.weak.transformed.expect │ │ │ │ ├── getter_call.dart │ │ │ │ ├── getter_call.dart.strong.expect │ │ │ │ ├── getter_call.dart.strong.transformed.expect │ │ │ │ ├── getter_call.dart.textual_outline.expect │ │ │ │ ├── getter_call.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_call.dart.weak.expect │ │ │ │ ├── getter_call.dart.weak.modular.expect │ │ │ │ ├── getter_call.dart.weak.outline.expect │ │ │ │ ├── getter_call.dart.weak.transformed.expect │ │ │ │ ├── getter_vs_setter_type.dart │ │ │ │ ├── getter_vs_setter_type.dart.strong.expect │ │ │ │ ├── getter_vs_setter_type.dart.textual_outline.expect │ │ │ │ ├── getter_vs_setter_type.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.modular.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.outline.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart │ │ │ │ ├── having_part_with_part_and_annotation.dart.strong.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.strong.transformed.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.textual_outline.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.textual_outline_modelled.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.weak.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.weak.modular.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.weak.outline.expect │ │ │ │ ├── having_part_with_part_and_annotation.dart.weak.transformed.expect │ │ │ │ ├── having_part_with_part_and_annotation_lib1.dart │ │ │ │ ├── having_part_with_part_and_annotation_lib2.dart │ │ │ │ ├── having_part_with_parts_and_annotation.dart │ │ │ │ ├── having_part_with_parts_and_annotation.dart.strong.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.strong.transformed.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.textual_outline.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.textual_outline_modelled.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.weak.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.weak.modular.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.weak.outline.expect │ │ │ │ ├── having_part_with_parts_and_annotation.dart.weak.transformed.expect │ │ │ │ ├── having_part_with_parts_and_annotation_lib1.dart │ │ │ │ ├── having_part_with_parts_and_annotation_lib2.dart │ │ │ │ ├── hello.dart │ │ │ │ ├── hello.dart.strong.expect │ │ │ │ ├── hello.dart.strong.transformed.expect │ │ │ │ ├── hello.dart.textual_outline.expect │ │ │ │ ├── hello.dart.textual_outline_modelled.expect │ │ │ │ ├── hello.dart.weak.expect │ │ │ │ ├── hello.dart.weak.modular.expect │ │ │ │ ├── hello.dart.weak.outline.expect │ │ │ │ ├── hello.dart.weak.transformed.expect │ │ │ │ ├── hierarchy.dart │ │ │ │ ├── hierarchy.dart.strong.expect │ │ │ │ ├── hierarchy.dart.strong.transformed.expect │ │ │ │ ├── hierarchy.dart.textual_outline.expect │ │ │ │ ├── hierarchy.dart.textual_outline_modelled.expect │ │ │ │ ├── hierarchy.dart.weak.expect │ │ │ │ ├── hierarchy.dart.weak.modular.expect │ │ │ │ ├── hierarchy.dart.weak.outline.expect │ │ │ │ ├── hierarchy.dart.weak.transformed.expect │ │ │ │ ├── hoist_in_this_invocation.dart │ │ │ │ ├── hoist_in_this_invocation.dart.strong.expect │ │ │ │ ├── hoist_in_this_invocation.dart.strong.transformed.expect │ │ │ │ ├── hoist_in_this_invocation.dart.textual_outline.expect │ │ │ │ ├── hoist_in_this_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── hoist_in_this_invocation.dart.weak.expect │ │ │ │ ├── hoist_in_this_invocation.dart.weak.modular.expect │ │ │ │ ├── hoist_in_this_invocation.dart.weak.outline.expect │ │ │ │ ├── hoist_in_this_invocation.dart.weak.transformed.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.strong.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.strong.transformed.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.textual_outline.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.textual_outline_modelled.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.modular.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.outline.expect │ │ │ │ ├── identical_instantiated_function_tearoffs.dart.weak.transformed.expect │ │ │ │ ├── if_case_disabled.dart │ │ │ │ ├── if_case_disabled.dart.strong.expect │ │ │ │ ├── if_case_disabled.dart.strong.transformed.expect │ │ │ │ ├── if_case_disabled.dart.textual_outline.expect │ │ │ │ ├── if_case_disabled.dart.textual_outline_modelled.expect │ │ │ │ ├── if_case_disabled.dart.weak.expect │ │ │ │ ├── if_case_disabled.dart.weak.modular.expect │ │ │ │ ├── if_case_disabled.dart.weak.outline.expect │ │ │ │ ├── if_case_disabled.dart.weak.transformed.expect │ │ │ │ ├── if_null_in_cascade.dart │ │ │ │ ├── if_null_in_cascade.dart.strong.expect │ │ │ │ ├── if_null_in_cascade.dart.strong.transformed.expect │ │ │ │ ├── if_null_in_cascade.dart.textual_outline.expect │ │ │ │ ├── if_null_in_cascade.dart.textual_outline_modelled.expect │ │ │ │ ├── if_null_in_cascade.dart.weak.expect │ │ │ │ ├── if_null_in_cascade.dart.weak.modular.expect │ │ │ │ ├── if_null_in_cascade.dart.weak.outline.expect │ │ │ │ ├── if_null_in_cascade.dart.weak.transformed.expect │ │ │ │ ├── if_null_in_list_literal.dart │ │ │ │ ├── if_null_in_list_literal.dart.strong.expect │ │ │ │ ├── if_null_in_list_literal.dart.strong.transformed.expect │ │ │ │ ├── if_null_in_list_literal.dart.textual_outline.expect │ │ │ │ ├── if_null_in_list_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── if_null_in_list_literal.dart.weak.expect │ │ │ │ ├── if_null_in_list_literal.dart.weak.modular.expect │ │ │ │ ├── if_null_in_list_literal.dart.weak.outline.expect │ │ │ │ ├── if_null_in_list_literal.dart.weak.transformed.expect │ │ │ │ ├── if_null_in_set_literal.dart │ │ │ │ ├── if_null_in_set_literal.dart.strong.expect │ │ │ │ ├── if_null_in_set_literal.dart.strong.transformed.expect │ │ │ │ ├── if_null_in_set_literal.dart.textual_outline.expect │ │ │ │ ├── if_null_in_set_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── if_null_in_set_literal.dart.weak.expect │ │ │ │ ├── if_null_in_set_literal.dart.weak.modular.expect │ │ │ │ ├── if_null_in_set_literal.dart.weak.outline.expect │ │ │ │ ├── if_null_in_set_literal.dart.weak.transformed.expect │ │ │ │ ├── ignore_function.dart │ │ │ │ ├── ignore_function.dart.strong.expect │ │ │ │ ├── ignore_function.dart.strong.transformed.expect │ │ │ │ ├── ignore_function.dart.textual_outline.expect │ │ │ │ ├── ignore_function.dart.textual_outline_modelled.expect │ │ │ │ ├── ignore_function.dart.weak.expect │ │ │ │ ├── ignore_function.dart.weak.modular.expect │ │ │ │ ├── ignore_function.dart.weak.outline.expect │ │ │ │ ├── ignore_function.dart.weak.transformed.expect │ │ │ │ ├── illegal_named_function_expression.dart │ │ │ │ ├── illegal_named_function_expression.dart.strong.expect │ │ │ │ ├── illegal_named_function_expression.dart.strong.transformed.expect │ │ │ │ ├── illegal_named_function_expression.dart.textual_outline.expect │ │ │ │ ├── illegal_named_function_expression.dart.textual_outline_modelled.expect │ │ │ │ ├── illegal_named_function_expression.dart.weak.expect │ │ │ │ ├── illegal_named_function_expression.dart.weak.modular.expect │ │ │ │ ├── illegal_named_function_expression.dart.weak.outline.expect │ │ │ │ ├── illegal_named_function_expression.dart.weak.transformed.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart │ │ │ │ ├── illegal_named_function_expression_scope.dart.strong.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.strong.transformed.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.textual_outline.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.textual_outline_modelled.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.weak.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.weak.modular.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.weak.outline.expect │ │ │ │ ├── illegal_named_function_expression_scope.dart.weak.transformed.expect │ │ │ │ ├── implement_semi_stub.dart │ │ │ │ ├── implement_semi_stub.dart.strong.expect │ │ │ │ ├── implement_semi_stub.dart.textual_outline.expect │ │ │ │ ├── implement_semi_stub.dart.textual_outline_modelled.expect │ │ │ │ ├── implement_semi_stub.dart.weak.expect │ │ │ │ ├── implement_semi_stub.dart.weak.modular.expect │ │ │ │ ├── implement_semi_stub.dart.weak.outline.expect │ │ │ │ ├── implicit_const_with_static_fields.dart │ │ │ │ ├── implicit_const_with_static_fields.dart.strong.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.strong.transformed.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.textual_outline.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.weak.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.weak.modular.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.weak.outline.expect │ │ │ │ ├── implicit_const_with_static_fields.dart.weak.transformed.expect │ │ │ │ ├── implicit_constant_in_switch.dart │ │ │ │ ├── implicit_constant_in_switch.dart.strong.expect │ │ │ │ ├── implicit_constant_in_switch.dart.strong.transformed.expect │ │ │ │ ├── implicit_constant_in_switch.dart.textual_outline.expect │ │ │ │ ├── implicit_constant_in_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_constant_in_switch.dart.weak.expect │ │ │ │ ├── implicit_constant_in_switch.dart.weak.modular.expect │ │ │ │ ├── implicit_constant_in_switch.dart.weak.outline.expect │ │ │ │ ├── implicit_constant_in_switch.dart.weak.transformed.expect │ │ │ │ ├── implicit_constructor_02.dart │ │ │ │ ├── implicit_constructor_02.dart.strong.expect │ │ │ │ ├── implicit_constructor_02.dart.strong.transformed.expect │ │ │ │ ├── implicit_constructor_02.dart.textual_outline.expect │ │ │ │ ├── implicit_constructor_02.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_constructor_02.dart.weak.expect │ │ │ │ ├── implicit_constructor_02.dart.weak.modular.expect │ │ │ │ ├── implicit_constructor_02.dart.weak.outline.expect │ │ │ │ ├── implicit_constructor_02.dart.weak.transformed.expect │ │ │ │ ├── implicit_covariance.dart │ │ │ │ ├── implicit_covariance.dart.strong.expect │ │ │ │ ├── implicit_covariance.dart.strong.transformed.expect │ │ │ │ ├── implicit_covariance.dart.textual_outline.expect │ │ │ │ ├── implicit_covariance.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_covariance.dart.weak.expect │ │ │ │ ├── implicit_covariance.dart.weak.modular.expect │ │ │ │ ├── implicit_covariance.dart.weak.outline.expect │ │ │ │ ├── implicit_covariance.dart.weak.transformed.expect │ │ │ │ ├── implicit_instantiation.dart │ │ │ │ ├── implicit_instantiation.dart.strong.expect │ │ │ │ ├── implicit_instantiation.dart.strong.transformed.expect │ │ │ │ ├── implicit_instantiation.dart.textual_outline.expect │ │ │ │ ├── implicit_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_instantiation.dart.weak.expect │ │ │ │ ├── implicit_instantiation.dart.weak.modular.expect │ │ │ │ ├── implicit_instantiation.dart.weak.outline.expect │ │ │ │ ├── implicit_instantiation.dart.weak.transformed.expect │ │ │ │ ├── implicit_new.dart │ │ │ │ ├── implicit_new.dart.strong.expect │ │ │ │ ├── implicit_new.dart.strong.transformed.expect │ │ │ │ ├── implicit_new.dart.textual_outline.expect │ │ │ │ ├── implicit_new.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_new.dart.weak.expect │ │ │ │ ├── implicit_new.dart.weak.modular.expect │ │ │ │ ├── implicit_new.dart.weak.outline.expect │ │ │ │ ├── implicit_new.dart.weak.transformed.expect │ │ │ │ ├── implicit_new2.dart │ │ │ │ ├── implicit_new2.dart.strong.expect │ │ │ │ ├── implicit_new2.dart.strong.transformed.expect │ │ │ │ ├── implicit_new2.dart.textual_outline.expect │ │ │ │ ├── implicit_new2.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_new2.dart.weak.expect │ │ │ │ ├── implicit_new2.dart.weak.modular.expect │ │ │ │ ├── implicit_new2.dart.weak.outline.expect │ │ │ │ ├── implicit_new2.dart.weak.transformed.expect │ │ │ │ ├── implicit_scope_test.dart │ │ │ │ ├── implicit_scope_test.dart.strong.expect │ │ │ │ ├── implicit_scope_test.dart.strong.transformed.expect │ │ │ │ ├── implicit_scope_test.dart.textual_outline.expect │ │ │ │ ├── implicit_scope_test.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_scope_test.dart.weak.expect │ │ │ │ ├── implicit_scope_test.dart.weak.modular.expect │ │ │ │ ├── implicit_scope_test.dart.weak.outline.expect │ │ │ │ ├── implicit_scope_test.dart.weak.transformed.expect │ │ │ │ ├── implicit_super_call.dart │ │ │ │ ├── implicit_super_call.dart.strong.expect │ │ │ │ ├── implicit_super_call.dart.strong.transformed.expect │ │ │ │ ├── implicit_super_call.dart.textual_outline.expect │ │ │ │ ├── implicit_super_call.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_super_call.dart.weak.expect │ │ │ │ ├── implicit_super_call.dart.weak.modular.expect │ │ │ │ ├── implicit_super_call.dart.weak.outline.expect │ │ │ │ ├── implicit_super_call.dart.weak.transformed.expect │ │ │ │ ├── implicit_this.dart │ │ │ │ ├── implicit_this.dart.strong.expect │ │ │ │ ├── implicit_this.dart.strong.transformed.expect │ │ │ │ ├── implicit_this.dart.textual_outline.expect │ │ │ │ ├── implicit_this.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_this.dart.weak.expect │ │ │ │ ├── implicit_this.dart.weak.modular.expect │ │ │ │ ├── implicit_this.dart.weak.outline.expect │ │ │ │ ├── implicit_this.dart.weak.transformed.expect │ │ │ │ ├── import_conflicting_getters.dart │ │ │ │ ├── import_conflicting_getters.dart.strong.expect │ │ │ │ ├── import_conflicting_getters.dart.strong.transformed.expect │ │ │ │ ├── import_conflicting_getters.dart.textual_outline.expect │ │ │ │ ├── import_conflicting_getters.dart.textual_outline_modelled.expect │ │ │ │ ├── import_conflicting_getters.dart.weak.expect │ │ │ │ ├── import_conflicting_getters.dart.weak.modular.expect │ │ │ │ ├── import_conflicting_getters.dart.weak.outline.expect │ │ │ │ ├── import_conflicting_getters.dart.weak.transformed.expect │ │ │ │ ├── import_conflicting_getters_lib1.dart │ │ │ │ ├── import_conflicting_getters_lib2.dart │ │ │ │ ├── import_conflicting_setters.dart │ │ │ │ ├── import_conflicting_setters.dart.strong.expect │ │ │ │ ├── import_conflicting_setters.dart.strong.transformed.expect │ │ │ │ ├── import_conflicting_setters.dart.textual_outline.expect │ │ │ │ ├── import_conflicting_setters.dart.textual_outline_modelled.expect │ │ │ │ ├── import_conflicting_setters.dart.weak.expect │ │ │ │ ├── import_conflicting_setters.dart.weak.modular.expect │ │ │ │ ├── import_conflicting_setters.dart.weak.outline.expect │ │ │ │ ├── import_conflicting_setters.dart.weak.transformed.expect │ │ │ │ ├── import_conflicting_setters_lib1.dart │ │ │ │ ├── import_conflicting_setters_lib2.dart │ │ │ │ ├── import_conflicting_type_member.dart │ │ │ │ ├── import_conflicting_type_member.dart.strong.expect │ │ │ │ ├── import_conflicting_type_member.dart.strong.transformed.expect │ │ │ │ ├── import_conflicting_type_member.dart.textual_outline.expect │ │ │ │ ├── import_conflicting_type_member.dart.textual_outline_modelled.expect │ │ │ │ ├── import_conflicting_type_member.dart.weak.expect │ │ │ │ ├── import_conflicting_type_member.dart.weak.modular.expect │ │ │ │ ├── import_conflicting_type_member.dart.weak.outline.expect │ │ │ │ ├── import_conflicting_type_member.dart.weak.transformed.expect │ │ │ │ ├── import_conflicting_type_member_lib1.dart │ │ │ │ ├── import_conflicting_type_member_lib2.dart │ │ │ │ ├── import_conflicting_types.dart │ │ │ │ ├── import_conflicting_types.dart.strong.expect │ │ │ │ ├── import_conflicting_types.dart.strong.transformed.expect │ │ │ │ ├── import_conflicting_types.dart.textual_outline.expect │ │ │ │ ├── import_conflicting_types.dart.textual_outline_modelled.expect │ │ │ │ ├── import_conflicting_types.dart.weak.expect │ │ │ │ ├── import_conflicting_types.dart.weak.modular.expect │ │ │ │ ├── import_conflicting_types.dart.weak.outline.expect │ │ │ │ ├── import_conflicting_types.dart.weak.transformed.expect │ │ │ │ ├── import_conflicting_types_lib1.dart │ │ │ │ ├── import_conflicting_types_lib2.dart │ │ │ │ ├── incomplete_field_formal_parameter.dart │ │ │ │ ├── incomplete_field_formal_parameter.dart.strong.expect │ │ │ │ ├── incomplete_field_formal_parameter.dart.strong.transformed.expect │ │ │ │ ├── incomplete_field_formal_parameter.dart.textual_outline.expect │ │ │ │ ├── incomplete_field_formal_parameter.dart.weak.expect │ │ │ │ ├── incomplete_field_formal_parameter.dart.weak.modular.expect │ │ │ │ ├── incomplete_field_formal_parameter.dart.weak.outline.expect │ │ │ │ ├── incomplete_field_formal_parameter.dart.weak.transformed.expect │ │ │ │ ├── infer_equals.dart │ │ │ │ ├── infer_equals.dart.strong.expect │ │ │ │ ├── infer_equals.dart.strong.transformed.expect │ │ │ │ ├── infer_equals.dart.textual_outline.expect │ │ │ │ ├── infer_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_equals.dart.weak.expect │ │ │ │ ├── infer_equals.dart.weak.modular.expect │ │ │ │ ├── infer_equals.dart.weak.outline.expect │ │ │ │ ├── infer_equals.dart.weak.transformed.expect │ │ │ │ ├── infer_field_from_multiple.dart │ │ │ │ ├── infer_field_from_multiple.dart.strong.expect │ │ │ │ ├── infer_field_from_multiple.dart.textual_outline.expect │ │ │ │ ├── infer_field_from_multiple.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_from_multiple.dart.weak.expect │ │ │ │ ├── infer_field_from_multiple.dart.weak.modular.expect │ │ │ │ ├── infer_field_from_multiple.dart.weak.outline.expect │ │ │ │ ├── infer_field_from_multiple2.dart │ │ │ │ ├── infer_field_from_multiple2.dart.strong.expect │ │ │ │ ├── infer_field_from_multiple2.dart.textual_outline.expect │ │ │ │ ├── infer_field_from_multiple2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_from_multiple2.dart.weak.expect │ │ │ │ ├── infer_field_from_multiple2.dart.weak.modular.expect │ │ │ │ ├── infer_field_from_multiple2.dart.weak.outline.expect │ │ │ │ ├── infer_field_type.dart │ │ │ │ ├── infer_field_type.dart.strong.expect │ │ │ │ ├── infer_field_type.dart.strong.transformed.expect │ │ │ │ ├── infer_field_type.dart.textual_outline.expect │ │ │ │ ├── infer_field_type.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_type.dart.weak.expect │ │ │ │ ├── infer_field_type.dart.weak.modular.expect │ │ │ │ ├── infer_field_type.dart.weak.outline.expect │ │ │ │ ├── infer_field_type.dart.weak.transformed.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart │ │ │ │ ├── infer_fixed_generic_return_type.dart.strong.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.strong.transformed.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.textual_outline.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.weak.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.weak.modular.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.weak.outline.expect │ │ │ │ ├── infer_fixed_generic_return_type.dart.weak.transformed.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.strong.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.strong.transformed.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.textual_outline.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.weak.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.weak.modular.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.weak.outline.expect │ │ │ │ ├── infer_generic_type_parameter_mismatch.dart.weak.transformed.expect │ │ │ │ ├── infer_map.dart │ │ │ │ ├── infer_map.dart.strong.expect │ │ │ │ ├── infer_map.dart.strong.transformed.expect │ │ │ │ ├── infer_map.dart.textual_outline.expect │ │ │ │ ├── infer_map.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_map.dart.weak.expect │ │ │ │ ├── infer_map.dart.weak.modular.expect │ │ │ │ ├── infer_map.dart.weak.outline.expect │ │ │ │ ├── infer_map.dart.weak.transformed.expect │ │ │ │ ├── infer_map_literal_with_closure.dart │ │ │ │ ├── infer_map_literal_with_closure.dart.strong.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.strong.transformed.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.textual_outline.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.weak.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.weak.modular.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.weak.outline.expect │ │ │ │ ├── infer_map_literal_with_closure.dart.weak.transformed.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart │ │ │ │ ├── inferred_generic_function_type_argument.dart.strong.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.strong.transformed.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.textual_outline.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.weak.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.weak.modular.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.weak.outline.expect │ │ │ │ ├── inferred_generic_function_type_argument.dart.weak.transformed.expect │ │ │ │ ├── inferred_void.dart │ │ │ │ ├── inferred_void.dart.strong.expect │ │ │ │ ├── inferred_void.dart.strong.transformed.expect │ │ │ │ ├── inferred_void.dart.textual_outline.expect │ │ │ │ ├── inferred_void.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_void.dart.weak.expect │ │ │ │ ├── inferred_void.dart.weak.modular.expect │ │ │ │ ├── inferred_void.dart.weak.outline.expect │ │ │ │ ├── inferred_void.dart.weak.transformed.expect │ │ │ │ ├── inherit_function.dart │ │ │ │ ├── inherit_function.dart.strong.expect │ │ │ │ ├── inherit_function.dart.strong.transformed.expect │ │ │ │ ├── inherit_function.dart.textual_outline.expect │ │ │ │ ├── inherit_function.dart.textual_outline_modelled.expect │ │ │ │ ├── inherit_function.dart.weak.expect │ │ │ │ ├── inherit_function.dart.weak.modular.expect │ │ │ │ ├── inherit_function.dart.weak.outline.expect │ │ │ │ ├── inherit_function.dart.weak.transformed.expect │ │ │ │ ├── initialization_errors.dart │ │ │ │ ├── initialization_errors.dart.strong.expect │ │ │ │ ├── initialization_errors.dart.strong.transformed.expect │ │ │ │ ├── initialization_errors.dart.textual_outline.expect │ │ │ │ ├── initialization_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── initialization_errors.dart.weak.expect │ │ │ │ ├── initialization_errors.dart.weak.modular.expect │ │ │ │ ├── initialization_errors.dart.weak.outline.expect │ │ │ │ ├── initialization_errors.dart.weak.transformed.expect │ │ │ │ ├── inject_private_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ ├── patch_lib1.dart │ │ │ │ │ └── patch_lib2.dart │ │ │ │ ├── inline_class_declaration.dart │ │ │ │ ├── inline_class_declaration.dart.strong.expect │ │ │ │ ├── inline_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── inline_class_declaration.dart.textual_outline.expect │ │ │ │ ├── inline_class_declaration.dart.weak.expect │ │ │ │ ├── inline_class_declaration.dart.weak.modular.expect │ │ │ │ ├── inline_class_declaration.dart.weak.outline.expect │ │ │ │ ├── inline_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── instance_setter_conflict.dart │ │ │ │ ├── instance_setter_conflict.dart.strong.expect │ │ │ │ ├── instance_setter_conflict.dart.strong.transformed.expect │ │ │ │ ├── instance_setter_conflict.dart.textual_outline.expect │ │ │ │ ├── instance_setter_conflict.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_setter_conflict.dart.weak.expect │ │ │ │ ├── instance_setter_conflict.dart.weak.modular.expect │ │ │ │ ├── instance_setter_conflict.dart.weak.outline.expect │ │ │ │ ├── instance_setter_conflict.dart.weak.transformed.expect │ │ │ │ ├── instantiate_enum │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── interface_class_declaration.dart │ │ │ │ ├── interface_class_declaration.dart.strong.expect │ │ │ │ ├── interface_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── interface_class_declaration.dart.textual_outline.expect │ │ │ │ ├── interface_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_class_declaration.dart.weak.expect │ │ │ │ ├── interface_class_declaration.dart.weak.modular.expect │ │ │ │ ├── interface_class_declaration.dart.weak.outline.expect │ │ │ │ ├── interface_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── interface_conflict.dart │ │ │ │ ├── interface_conflict.dart.strong.expect │ │ │ │ ├── interface_conflict.dart.strong.transformed.expect │ │ │ │ ├── interface_conflict.dart.textual_outline.expect │ │ │ │ ├── interface_conflict.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_conflict.dart.weak.expect │ │ │ │ ├── interface_conflict.dart.weak.modular.expect │ │ │ │ ├── interface_conflict.dart.weak.outline.expect │ │ │ │ ├── interface_conflict.dart.weak.transformed.expect │ │ │ │ ├── interface_contravariant_from_class.dart │ │ │ │ ├── interface_contravariant_from_class.dart.strong.expect │ │ │ │ ├── interface_contravariant_from_class.dart.strong.transformed.expect │ │ │ │ ├── interface_contravariant_from_class.dart.textual_outline.expect │ │ │ │ ├── interface_contravariant_from_class.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_contravariant_from_class.dart.weak.expect │ │ │ │ ├── interface_contravariant_from_class.dart.weak.modular.expect │ │ │ │ ├── interface_contravariant_from_class.dart.weak.outline.expect │ │ │ │ ├── interface_contravariant_from_class.dart.weak.transformed.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart │ │ │ │ ├── interface_covariantImpl_from_class.dart.strong.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.strong.transformed.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.textual_outline.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.weak.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.weak.modular.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.weak.outline.expect │ │ │ │ ├── interface_covariantImpl_from_class.dart.weak.transformed.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart │ │ │ │ ├── interface_covariantInterface_from_class.dart.strong.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.strong.transformed.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.textual_outline.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.weak.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.weak.modular.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.weak.outline.expect │ │ │ │ ├── interface_covariantInterface_from_class.dart.weak.transformed.expect │ │ │ │ ├── invalid_assignment.dart │ │ │ │ ├── invalid_assignment.dart.strong.expect │ │ │ │ ├── invalid_assignment.dart.strong.transformed.expect │ │ │ │ ├── invalid_assignment.dart.textual_outline.expect │ │ │ │ ├── invalid_assignment.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_assignment.dart.weak.expect │ │ │ │ ├── invalid_assignment.dart.weak.modular.expect │ │ │ │ ├── invalid_assignment.dart.weak.outline.expect │ │ │ │ ├── invalid_assignment.dart.weak.transformed.expect │ │ │ │ ├── invalid_cast.dart │ │ │ │ ├── invalid_cast.dart.strong.expect │ │ │ │ ├── invalid_cast.dart.strong.transformed.expect │ │ │ │ ├── invalid_cast.dart.textual_outline.expect │ │ │ │ ├── invalid_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_cast.dart.weak.expect │ │ │ │ ├── invalid_cast.dart.weak.modular.expect │ │ │ │ ├── invalid_cast.dart.weak.outline.expect │ │ │ │ ├── invalid_cast.dart.weak.transformed.expect │ │ │ │ ├── invalid_for_in_iterable.dart │ │ │ │ ├── invalid_for_in_iterable.dart.strong.expect │ │ │ │ ├── invalid_for_in_iterable.dart.strong.transformed.expect │ │ │ │ ├── invalid_for_in_iterable.dart.textual_outline.expect │ │ │ │ ├── invalid_for_in_iterable.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_for_in_iterable.dart.weak.expect │ │ │ │ ├── invalid_for_in_iterable.dart.weak.modular.expect │ │ │ │ ├── invalid_for_in_iterable.dart.weak.outline.expect │ │ │ │ ├── invalid_for_in_iterable.dart.weak.transformed.expect │ │ │ │ ├── invalid_for_in_iterable2.dart │ │ │ │ ├── invalid_for_in_iterable2.dart.strong.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.strong.transformed.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.textual_outline.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.weak.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.weak.modular.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.weak.outline.expect │ │ │ │ ├── invalid_for_in_iterable2.dart.weak.transformed.expect │ │ │ │ ├── invalid_operator.dart │ │ │ │ ├── invalid_operator.dart.strong.expect │ │ │ │ ├── invalid_operator.dart.textual_outline.expect │ │ │ │ ├── invalid_operator.dart.weak.expect │ │ │ │ ├── invalid_operator.dart.weak.modular.expect │ │ │ │ ├── invalid_operator.dart.weak.outline.expect │ │ │ │ ├── invalid_operator2.dart │ │ │ │ ├── invalid_operator2.dart.strong.expect │ │ │ │ ├── invalid_operator2.dart.strong.transformed.expect │ │ │ │ ├── invalid_operator2.dart.textual_outline.expect │ │ │ │ ├── invalid_operator2.dart.weak.expect │ │ │ │ ├── invalid_operator2.dart.weak.modular.expect │ │ │ │ ├── invalid_operator2.dart.weak.outline.expect │ │ │ │ ├── invalid_operator2.dart.weak.transformed.expect │ │ │ │ ├── invalid_operator_override.dart │ │ │ │ ├── invalid_operator_override.dart.strong.expect │ │ │ │ ├── invalid_operator_override.dart.textual_outline.expect │ │ │ │ ├── invalid_operator_override.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_operator_override.dart.weak.expect │ │ │ │ ├── invalid_operator_override.dart.weak.modular.expect │ │ │ │ ├── invalid_operator_override.dart.weak.outline.expect │ │ │ │ ├── invalid_setter_return_type.dart │ │ │ │ ├── invalid_setter_return_type.dart.strong.expect │ │ │ │ ├── invalid_setter_return_type.dart.strong.transformed.expect │ │ │ │ ├── invalid_setter_return_type.dart.textual_outline.expect │ │ │ │ ├── invalid_setter_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_setter_return_type.dart.weak.expect │ │ │ │ ├── invalid_setter_return_type.dart.weak.modular.expect │ │ │ │ ├── invalid_setter_return_type.dart.weak.outline.expect │ │ │ │ ├── invalid_setter_return_type.dart.weak.transformed.expect │ │ │ │ ├── invalid_super_initializer.dart │ │ │ │ ├── invalid_super_initializer.dart.strong.expect │ │ │ │ ├── invalid_super_initializer.dart.strong.transformed.expect │ │ │ │ ├── invalid_super_initializer.dart.textual_outline.expect │ │ │ │ ├── invalid_super_initializer.dart.weak.expect │ │ │ │ ├── invalid_super_initializer.dart.weak.modular.expect │ │ │ │ ├── invalid_super_initializer.dart.weak.outline.expect │ │ │ │ ├── invalid_super_initializer.dart.weak.transformed.expect │ │ │ │ ├── invalid_type.dart │ │ │ │ ├── invalid_type.dart.strong.expect │ │ │ │ ├── invalid_type.dart.strong.transformed.expect │ │ │ │ ├── invalid_type.dart.textual_outline.expect │ │ │ │ ├── invalid_type.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_type.dart.weak.expect │ │ │ │ ├── invalid_type.dart.weak.modular.expect │ │ │ │ ├── invalid_type.dart.weak.outline.expect │ │ │ │ ├── invalid_type.dart.weak.transformed.expect │ │ │ │ ├── invocations.dart │ │ │ │ ├── invocations.dart.strong.expect │ │ │ │ ├── invocations.dart.textual_outline.expect │ │ │ │ ├── invocations.dart.textual_outline_modelled.expect │ │ │ │ ├── invocations.dart.weak.expect │ │ │ │ ├── invocations.dart.weak.modular.expect │ │ │ │ ├── invocations.dart.weak.outline.expect │ │ │ │ ├── invocations.dart.weak.transformed.expect │ │ │ │ ├── issue129167943.dart │ │ │ │ ├── issue129167943.dart.strong.expect │ │ │ │ ├── issue129167943.dart.strong.transformed.expect │ │ │ │ ├── issue129167943.dart.textual_outline.expect │ │ │ │ ├── issue129167943.dart.textual_outline_modelled.expect │ │ │ │ ├── issue129167943.dart.weak.expect │ │ │ │ ├── issue129167943.dart.weak.modular.expect │ │ │ │ ├── issue129167943.dart.weak.outline.expect │ │ │ │ ├── issue129167943.dart.weak.transformed.expect │ │ │ │ ├── issue28565.dart │ │ │ │ ├── issue28565.dart.strong.expect │ │ │ │ ├── issue28565.dart.strong.transformed.expect │ │ │ │ ├── issue28565.dart.textual_outline.expect │ │ │ │ ├── issue28565.dart.textual_outline_modelled.expect │ │ │ │ ├── issue28565.dart.weak.expect │ │ │ │ ├── issue28565.dart.weak.modular.expect │ │ │ │ ├── issue28565.dart.weak.outline.expect │ │ │ │ ├── issue28565.dart.weak.transformed.expect │ │ │ │ ├── issue31767.dart │ │ │ │ ├── issue31767.dart.strong.expect │ │ │ │ ├── issue31767.dart.strong.transformed.expect │ │ │ │ ├── issue31767.dart.textual_outline.expect │ │ │ │ ├── issue31767.dart.textual_outline_modelled.expect │ │ │ │ ├── issue31767.dart.weak.expect │ │ │ │ ├── issue31767.dart.weak.modular.expect │ │ │ │ ├── issue31767.dart.weak.outline.expect │ │ │ │ ├── issue31767.dart.weak.transformed.expect │ │ │ │ ├── issue31767_lib.dart │ │ │ │ ├── issue34515.dart │ │ │ │ ├── issue34515.dart.strong.expect │ │ │ │ ├── issue34515.dart.strong.transformed.expect │ │ │ │ ├── issue34515.dart.textual_outline.expect │ │ │ │ ├── issue34515.dart.textual_outline_modelled.expect │ │ │ │ ├── issue34515.dart.weak.expect │ │ │ │ ├── issue34515.dart.weak.modular.expect │ │ │ │ ├── issue34515.dart.weak.outline.expect │ │ │ │ ├── issue34515.dart.weak.transformed.expect │ │ │ │ ├── issue34515_lib1.dart │ │ │ │ ├── issue34515_lib2.dart │ │ │ │ ├── issue34714.dart │ │ │ │ ├── issue34714.dart.strong.expect │ │ │ │ ├── issue34714.dart.strong.transformed.expect │ │ │ │ ├── issue34714.dart.textual_outline.expect │ │ │ │ ├── issue34714.dart.textual_outline_modelled.expect │ │ │ │ ├── issue34714.dart.weak.expect │ │ │ │ ├── issue34714.dart.weak.modular.expect │ │ │ │ ├── issue34714.dart.weak.outline.expect │ │ │ │ ├── issue34714.dart.weak.transformed.expect │ │ │ │ ├── issue34899.dart │ │ │ │ ├── issue34899.dart.strong.expect │ │ │ │ ├── issue34899.dart.strong.transformed.expect │ │ │ │ ├── issue34899.dart.textual_outline.expect │ │ │ │ ├── issue34899.dart.textual_outline_modelled.expect │ │ │ │ ├── issue34899.dart.weak.expect │ │ │ │ ├── issue34899.dart.weak.modular.expect │ │ │ │ ├── issue34899.dart.weak.outline.expect │ │ │ │ ├── issue34899.dart.weak.transformed.expect │ │ │ │ ├── issue35875.dart │ │ │ │ ├── issue35875.dart.strong.expect │ │ │ │ ├── issue35875.dart.strong.transformed.expect │ │ │ │ ├── issue35875.dart.textual_outline.expect │ │ │ │ ├── issue35875.dart.textual_outline_modelled.expect │ │ │ │ ├── issue35875.dart.weak.expect │ │ │ │ ├── issue35875.dart.weak.modular.expect │ │ │ │ ├── issue35875.dart.weak.outline.expect │ │ │ │ ├── issue35875.dart.weak.transformed.expect │ │ │ │ ├── issue37027.dart │ │ │ │ ├── issue37027.dart.strong.expect │ │ │ │ ├── issue37027.dart.strong.transformed.expect │ │ │ │ ├── issue37027.dart.textual_outline.expect │ │ │ │ ├── issue37027.dart.textual_outline_modelled.expect │ │ │ │ ├── issue37027.dart.weak.expect │ │ │ │ ├── issue37027.dart.weak.modular.expect │ │ │ │ ├── issue37027.dart.weak.outline.expect │ │ │ │ ├── issue37027.dart.weak.transformed.expect │ │ │ │ ├── issue37381.dart │ │ │ │ ├── issue37381.dart.strong.expect │ │ │ │ ├── issue37381.dart.strong.transformed.expect │ │ │ │ ├── issue37381.dart.textual_outline.expect │ │ │ │ ├── issue37381.dart.textual_outline_modelled.expect │ │ │ │ ├── issue37381.dart.weak.expect │ │ │ │ ├── issue37381.dart.weak.modular.expect │ │ │ │ ├── issue37381.dart.weak.outline.expect │ │ │ │ ├── issue37381.dart.weak.transformed.expect │ │ │ │ ├── issue37753.dart │ │ │ │ ├── issue37753.dart.strong.expect │ │ │ │ ├── issue37753.dart.strong.transformed.expect │ │ │ │ ├── issue37753.dart.textual_outline.expect │ │ │ │ ├── issue37753.dart.textual_outline_modelled.expect │ │ │ │ ├── issue37753.dart.weak.expect │ │ │ │ ├── issue37753.dart.weak.modular.expect │ │ │ │ ├── issue37753.dart.weak.outline.expect │ │ │ │ ├── issue37753.dart.weak.transformed.expect │ │ │ │ ├── issue37776.dart │ │ │ │ ├── issue37776.dart.strong.expect │ │ │ │ ├── issue37776.dart.strong.transformed.expect │ │ │ │ ├── issue37776.dart.textual_outline.expect │ │ │ │ ├── issue37776.dart.textual_outline_modelled.expect │ │ │ │ ├── issue37776.dart.weak.expect │ │ │ │ ├── issue37776.dart.weak.modular.expect │ │ │ │ ├── issue37776.dart.weak.outline.expect │ │ │ │ ├── issue37776.dart.weak.transformed.expect │ │ │ │ ├── issue38253.dart │ │ │ │ ├── issue38253.dart.outline.expect │ │ │ │ ├── issue38253.dart.strong.expect │ │ │ │ ├── issue38253.dart.strong.transformed.expect │ │ │ │ ├── issue38253.dart.textual_outline.expect │ │ │ │ ├── issue38253.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38253.dart.weak.expect │ │ │ │ ├── issue38253.dart.weak.modular.expect │ │ │ │ ├── issue38253.dart.weak.outline.expect │ │ │ │ ├── issue38253.dart.weak.transformed.expect │ │ │ │ ├── issue38253b.dart │ │ │ │ ├── issue38253b.dart.outline.expect │ │ │ │ ├── issue38253b.dart.strong.expect │ │ │ │ ├── issue38253b.dart.strong.transformed.expect │ │ │ │ ├── issue38253b.dart.textual_outline.expect │ │ │ │ ├── issue38253b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38253b.dart.weak.expect │ │ │ │ ├── issue38253b.dart.weak.modular.expect │ │ │ │ ├── issue38253b.dart.weak.outline.expect │ │ │ │ ├── issue38253b.dart.weak.transformed.expect │ │ │ │ ├── issue38253c.dart │ │ │ │ ├── issue38253c.dart.outline.expect │ │ │ │ ├── issue38253c.dart.strong.expect │ │ │ │ ├── issue38253c.dart.strong.transformed.expect │ │ │ │ ├── issue38253c.dart.textual_outline.expect │ │ │ │ ├── issue38253c.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38253c.dart.weak.expect │ │ │ │ ├── issue38253c.dart.weak.modular.expect │ │ │ │ ├── issue38253c.dart.weak.outline.expect │ │ │ │ ├── issue38253c.dart.weak.transformed.expect │ │ │ │ ├── issue38812.dart │ │ │ │ ├── issue38812.dart.strong.expect │ │ │ │ ├── issue38812.dart.strong.transformed.expect │ │ │ │ ├── issue38812.dart.textual_outline.expect │ │ │ │ ├── issue38812.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38812.dart.weak.expect │ │ │ │ ├── issue38812.dart.weak.modular.expect │ │ │ │ ├── issue38812.dart.weak.outline.expect │ │ │ │ ├── issue38812.dart.weak.transformed.expect │ │ │ │ ├── issue38938.dart │ │ │ │ ├── issue38938.dart.strong.expect │ │ │ │ ├── issue38938.dart.strong.transformed.expect │ │ │ │ ├── issue38938.dart.textual_outline.expect │ │ │ │ ├── issue38938.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38938.dart.weak.expect │ │ │ │ ├── issue38938.dart.weak.modular.expect │ │ │ │ ├── issue38938.dart.weak.outline.expect │ │ │ │ ├── issue38938.dart.weak.transformed.expect │ │ │ │ ├── issue38943.dart │ │ │ │ ├── issue38943.dart.strong.expect │ │ │ │ ├── issue38943.dart.strong.transformed.expect │ │ │ │ ├── issue38943.dart.textual_outline.expect │ │ │ │ ├── issue38943.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38943.dart.weak.expect │ │ │ │ ├── issue38943.dart.weak.modular.expect │ │ │ │ ├── issue38943.dart.weak.outline.expect │ │ │ │ ├── issue38943.dart.weak.transformed.expect │ │ │ │ ├── issue38944.dart │ │ │ │ ├── issue38944.dart.strong.expect │ │ │ │ ├── issue38944.dart.strong.transformed.expect │ │ │ │ ├── issue38944.dart.textual_outline.expect │ │ │ │ ├── issue38944.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38944.dart.weak.expect │ │ │ │ ├── issue38944.dart.weak.modular.expect │ │ │ │ ├── issue38944.dart.weak.outline.expect │ │ │ │ ├── issue38944.dart.weak.transformed.expect │ │ │ │ ├── issue38961.dart │ │ │ │ ├── issue38961.dart.strong.expect │ │ │ │ ├── issue38961.dart.strong.transformed.expect │ │ │ │ ├── issue38961.dart.textual_outline.expect │ │ │ │ ├── issue38961.dart.textual_outline_modelled.expect │ │ │ │ ├── issue38961.dart.weak.expect │ │ │ │ ├── issue38961.dart.weak.modular.expect │ │ │ │ ├── issue38961.dart.weak.outline.expect │ │ │ │ ├── issue38961.dart.weak.transformed.expect │ │ │ │ ├── issue39344.dart │ │ │ │ ├── issue39344.dart.strong.expect │ │ │ │ ├── issue39344.dart.strong.transformed.expect │ │ │ │ ├── issue39344.dart.textual_outline.expect │ │ │ │ ├── issue39344.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39344.dart.weak.expect │ │ │ │ ├── issue39344.dart.weak.modular.expect │ │ │ │ ├── issue39344.dart.weak.outline.expect │ │ │ │ ├── issue39344.dart.weak.transformed.expect │ │ │ │ ├── issue39421.dart │ │ │ │ ├── issue39421.dart.strong.expect │ │ │ │ ├── issue39421.dart.strong.transformed.expect │ │ │ │ ├── issue39421.dart.textual_outline.expect │ │ │ │ ├── issue39421.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39421.dart.weak.expect │ │ │ │ ├── issue39421.dart.weak.modular.expect │ │ │ │ ├── issue39421.dart.weak.outline.expect │ │ │ │ ├── issue39421.dart.weak.transformed.expect │ │ │ │ ├── issue39817.dart │ │ │ │ ├── issue39817.dart.strong.expect │ │ │ │ ├── issue39817.dart.strong.transformed.expect │ │ │ │ ├── issue39817.dart.textual_outline.expect │ │ │ │ ├── issue39817.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39817.dart.weak.expect │ │ │ │ ├── issue39817.dart.weak.modular.expect │ │ │ │ ├── issue39817.dart.weak.outline.expect │ │ │ │ ├── issue39817.dart.weak.transformed.expect │ │ │ │ ├── issue40242.dart │ │ │ │ ├── issue40242.dart.strong.expect │ │ │ │ ├── issue40242.dart.strong.transformed.expect │ │ │ │ ├── issue40242.dart.textual_outline.expect │ │ │ │ ├── issue40242.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40242.dart.weak.expect │ │ │ │ ├── issue40242.dart.weak.modular.expect │ │ │ │ ├── issue40242.dart.weak.outline.expect │ │ │ │ ├── issue40242.dart.weak.transformed.expect │ │ │ │ ├── issue40428.dart │ │ │ │ ├── issue40428.dart.strong.expect │ │ │ │ ├── issue40428.dart.strong.transformed.expect │ │ │ │ ├── issue40428.dart.textual_outline.expect │ │ │ │ ├── issue40428.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40428.dart.weak.expect │ │ │ │ ├── issue40428.dart.weak.modular.expect │ │ │ │ ├── issue40428.dart.weak.outline.expect │ │ │ │ ├── issue40428.dart.weak.transformed.expect │ │ │ │ ├── issue40662.dart │ │ │ │ ├── issue40662.dart.strong.expect │ │ │ │ ├── issue40662.dart.strong.transformed.expect │ │ │ │ ├── issue40662.dart.textual_outline.expect │ │ │ │ ├── issue40662.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40662.dart.weak.expect │ │ │ │ ├── issue40662.dart.weak.modular.expect │ │ │ │ ├── issue40662.dart.weak.outline.expect │ │ │ │ ├── issue40662.dart.weak.transformed.expect │ │ │ │ ├── issue40744.dart │ │ │ │ ├── issue40744.dart.strong.expect │ │ │ │ ├── issue40744.dart.strong.transformed.expect │ │ │ │ ├── issue40744.dart.textual_outline.expect │ │ │ │ ├── issue40744.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40744.dart.weak.expect │ │ │ │ ├── issue40744.dart.weak.modular.expect │ │ │ │ ├── issue40744.dart.weak.outline.expect │ │ │ │ ├── issue40744.dart.weak.transformed.expect │ │ │ │ ├── issue40982.dart │ │ │ │ ├── issue40982.dart.strong.expect │ │ │ │ ├── issue40982.dart.strong.transformed.expect │ │ │ │ ├── issue40982.dart.textual_outline.expect │ │ │ │ ├── issue40982.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40982.dart.weak.expect │ │ │ │ ├── issue40982.dart.weak.modular.expect │ │ │ │ ├── issue40982.dart.weak.outline.expect │ │ │ │ ├── issue40982.dart.weak.transformed.expect │ │ │ │ ├── issue41070.dart │ │ │ │ ├── issue41070.dart.strong.expect │ │ │ │ ├── issue41070.dart.strong.transformed.expect │ │ │ │ ├── issue41070.dart.textual_outline.expect │ │ │ │ ├── issue41070.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41070.dart.weak.expect │ │ │ │ ├── issue41070.dart.weak.modular.expect │ │ │ │ ├── issue41070.dart.weak.outline.expect │ │ │ │ ├── issue41070.dart.weak.transformed.expect │ │ │ │ ├── issue41210a.dart │ │ │ │ ├── issue41210a.dart.strong.expect │ │ │ │ ├── issue41210a.dart.textual_outline.expect │ │ │ │ ├── issue41210a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41210a.dart.weak.expect │ │ │ │ ├── issue41210a.dart.weak.modular.expect │ │ │ │ ├── issue41210a.dart.weak.outline.expect │ │ │ │ ├── issue41210a_no_error.dart │ │ │ │ ├── issue41210a_no_error.dart.strong.expect │ │ │ │ ├── issue41210a_no_error.dart.strong.transformed.expect │ │ │ │ ├── issue41210a_no_error.dart.textual_outline.expect │ │ │ │ ├── issue41210a_no_error.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41210a_no_error.dart.weak.expect │ │ │ │ ├── issue41210a_no_error.dart.weak.modular.expect │ │ │ │ ├── issue41210a_no_error.dart.weak.outline.expect │ │ │ │ ├── issue41210a_no_error.dart.weak.transformed.expect │ │ │ │ ├── issue41210b │ │ │ │ │ ├── issue41210.dart │ │ │ │ │ ├── issue41210.dart.strong.expect │ │ │ │ │ ├── issue41210.dart.textual_outline.expect │ │ │ │ │ ├── issue41210.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41210.dart.weak.expect │ │ │ │ │ ├── issue41210.dart.weak.modular.expect │ │ │ │ │ ├── issue41210.dart.weak.outline.expect │ │ │ │ │ ├── issue41210.no_link.dart │ │ │ │ │ ├── issue41210.no_link.dart.strong.expect │ │ │ │ │ ├── issue41210.no_link.dart.textual_outline.expect │ │ │ │ │ ├── issue41210.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.modular.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.outline.expect │ │ │ │ │ ├── issue41210_lib.dart │ │ │ │ │ ├── issue41210_no_error.dart │ │ │ │ │ ├── issue41210_no_error.dart.strong.expect │ │ │ │ │ ├── issue41210_no_error.dart.strong.transformed.expect │ │ │ │ │ ├── issue41210_no_error.dart.textual_outline.expect │ │ │ │ │ ├── issue41210_no_error.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41210_no_error.dart.weak.expect │ │ │ │ │ ├── issue41210_no_error.dart.weak.modular.expect │ │ │ │ │ ├── issue41210_no_error.dart.weak.outline.expect │ │ │ │ │ ├── issue41210_no_error.dart.weak.transformed.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart │ │ │ │ │ ├── issue41210_no_error.no_link.dart.strong.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.textual_outline.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.weak.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.weak.modular.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.weak.outline.expect │ │ │ │ │ ├── issue41210_no_error.no_link.dart.weak.transformed.expect │ │ │ │ │ └── test.options │ │ │ │ ├── issue41252.dart │ │ │ │ ├── issue41252.dart.strong.expect │ │ │ │ ├── issue41252.dart.strong.transformed.expect │ │ │ │ ├── issue41252.dart.textual_outline.expect │ │ │ │ ├── issue41252.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41252.dart.weak.expect │ │ │ │ ├── issue41252.dart.weak.modular.expect │ │ │ │ ├── issue41252.dart.weak.outline.expect │ │ │ │ ├── issue41252.dart.weak.transformed.expect │ │ │ │ ├── issue41842.dart │ │ │ │ ├── issue41842.dart.strong.expect │ │ │ │ ├── issue41842.dart.strong.transformed.expect │ │ │ │ ├── issue41842.dart.textual_outline.expect │ │ │ │ ├── issue41842.dart.weak.expect │ │ │ │ ├── issue41842.dart.weak.modular.expect │ │ │ │ ├── issue41842.dart.weak.outline.expect │ │ │ │ ├── issue41842.dart.weak.transformed.expect │ │ │ │ ├── issue41842_lib.dart │ │ │ │ ├── issue42435.dart │ │ │ │ ├── issue42435.dart.strong.expect │ │ │ │ ├── issue42435.dart.strong.transformed.expect │ │ │ │ ├── issue42435.dart.textual_outline.expect │ │ │ │ ├── issue42435.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42435.dart.weak.expect │ │ │ │ ├── issue42435.dart.weak.modular.expect │ │ │ │ ├── issue42435.dart.weak.outline.expect │ │ │ │ ├── issue42435.dart.weak.transformed.expect │ │ │ │ ├── issue42435_2.dart │ │ │ │ ├── issue42435_2.dart.strong.expect │ │ │ │ ├── issue42435_2.dart.strong.transformed.expect │ │ │ │ ├── issue42435_2.dart.textual_outline.expect │ │ │ │ ├── issue42435_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42435_2.dart.weak.expect │ │ │ │ ├── issue42435_2.dart.weak.modular.expect │ │ │ │ ├── issue42435_2.dart.weak.outline.expect │ │ │ │ ├── issue42435_2.dart.weak.transformed.expect │ │ │ │ ├── issue42610.dart │ │ │ │ ├── issue42610.dart.strong.expect │ │ │ │ ├── issue42610.dart.strong.transformed.expect │ │ │ │ ├── issue42610.dart.textual_outline.expect │ │ │ │ ├── issue42610.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42610.dart.weak.expect │ │ │ │ ├── issue42610.dart.weak.modular.expect │ │ │ │ ├── issue42610.dart.weak.outline.expect │ │ │ │ ├── issue42610.dart.weak.transformed.expect │ │ │ │ ├── issue42610b.dart │ │ │ │ ├── issue42610b.dart.strong.expect │ │ │ │ ├── issue42610b.dart.strong.transformed.expect │ │ │ │ ├── issue42610b.dart.textual_outline.expect │ │ │ │ ├── issue42610b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42610b.dart.weak.expect │ │ │ │ ├── issue42610b.dart.weak.modular.expect │ │ │ │ ├── issue42610b.dart.weak.outline.expect │ │ │ │ ├── issue42610b.dart.weak.transformed.expect │ │ │ │ ├── issue42615.dart │ │ │ │ ├── issue42615.dart.strong.expect │ │ │ │ ├── issue42615.dart.strong.transformed.expect │ │ │ │ ├── issue42615.dart.textual_outline.expect │ │ │ │ ├── issue42615.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42615.dart.weak.expect │ │ │ │ ├── issue42615.dart.weak.modular.expect │ │ │ │ ├── issue42615.dart.weak.outline.expect │ │ │ │ ├── issue42615.dart.weak.transformed.expect │ │ │ │ ├── issue42694.dart │ │ │ │ ├── issue42694.dart.strong.expect │ │ │ │ ├── issue42694.dart.strong.transformed.expect │ │ │ │ ├── issue42694.dart.textual_outline.expect │ │ │ │ ├── issue42694.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42694.dart.weak.expect │ │ │ │ ├── issue42694.dart.weak.modular.expect │ │ │ │ ├── issue42694.dart.weak.outline.expect │ │ │ │ ├── issue42694.dart.weak.transformed.expect │ │ │ │ ├── issue42997.dart │ │ │ │ ├── issue42997.dart.strong.expect │ │ │ │ ├── issue42997.dart.strong.transformed.expect │ │ │ │ ├── issue42997.dart.textual_outline.expect │ │ │ │ ├── issue42997.dart.weak.expect │ │ │ │ ├── issue42997.dart.weak.modular.expect │ │ │ │ ├── issue42997.dart.weak.outline.expect │ │ │ │ ├── issue42997.dart.weak.transformed.expect │ │ │ │ ├── issue43290.dart │ │ │ │ ├── issue43290.dart.strong.expect │ │ │ │ ├── issue43290.dart.strong.transformed.expect │ │ │ │ ├── issue43290.dart.textual_outline.expect │ │ │ │ ├── issue43290.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43290.dart.weak.expect │ │ │ │ ├── issue43290.dart.weak.modular.expect │ │ │ │ ├── issue43290.dart.weak.outline.expect │ │ │ │ ├── issue43290.dart.weak.transformed.expect │ │ │ │ ├── issue43363.dart │ │ │ │ ├── issue43363.dart.strong.expect │ │ │ │ ├── issue43363.dart.strong.transformed.expect │ │ │ │ ├── issue43363.dart.textual_outline.expect │ │ │ │ ├── issue43363.dart.weak.expect │ │ │ │ ├── issue43363.dart.weak.modular.expect │ │ │ │ ├── issue43363.dart.weak.outline.expect │ │ │ │ ├── issue43363.dart.weak.transformed.expect │ │ │ │ ├── issue43401.dart │ │ │ │ ├── issue43401.dart.strong.expect │ │ │ │ ├── issue43401.dart.strong.transformed.expect │ │ │ │ ├── issue43401.dart.textual_outline.expect │ │ │ │ ├── issue43401.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43401.dart.weak.expect │ │ │ │ ├── issue43401.dart.weak.modular.expect │ │ │ │ ├── issue43401.dart.weak.outline.expect │ │ │ │ ├── issue43401.dart.weak.transformed.expect │ │ │ │ ├── issue43721.dart │ │ │ │ ├── issue43721.dart.strong.expect │ │ │ │ ├── issue43721.dart.strong.transformed.expect │ │ │ │ ├── issue43721.dart.textual_outline.expect │ │ │ │ ├── issue43721.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43721.dart.weak.expect │ │ │ │ ├── issue43721.dart.weak.modular.expect │ │ │ │ ├── issue43721.dart.weak.outline.expect │ │ │ │ ├── issue43721.dart.weak.transformed.expect │ │ │ │ ├── issue43975.dart │ │ │ │ ├── issue43975.dart.strong.expect │ │ │ │ ├── issue43975.dart.strong.transformed.expect │ │ │ │ ├── issue43975.dart.textual_outline.expect │ │ │ │ ├── issue43975.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43975.dart.weak.expect │ │ │ │ ├── issue43975.dart.weak.modular.expect │ │ │ │ ├── issue43975.dart.weak.outline.expect │ │ │ │ ├── issue43975.dart.weak.transformed.expect │ │ │ │ ├── issue44007.dart │ │ │ │ ├── issue44007.dart.strong.expect │ │ │ │ ├── issue44007.dart.strong.transformed.expect │ │ │ │ ├── issue44007.dart.textual_outline.expect │ │ │ │ ├── issue44007.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44007.dart.weak.expect │ │ │ │ ├── issue44007.dart.weak.modular.expect │ │ │ │ ├── issue44007.dart.weak.outline.expect │ │ │ │ ├── issue44007.dart.weak.transformed.expect │ │ │ │ ├── issue44347.dart │ │ │ │ ├── issue44347.dart.strong.expect │ │ │ │ ├── issue44347.dart.strong.transformed.expect │ │ │ │ ├── issue44347.dart.textual_outline.expect │ │ │ │ ├── issue44347.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44347.dart.weak.expect │ │ │ │ ├── issue44347.dart.weak.modular.expect │ │ │ │ ├── issue44347.dart.weak.outline.expect │ │ │ │ ├── issue44347.dart.weak.transformed.expect │ │ │ │ ├── issue44476.dart │ │ │ │ ├── issue44476.dart.strong.expect │ │ │ │ ├── issue44476.dart.strong.transformed.expect │ │ │ │ ├── issue44476.dart.textual_outline.expect │ │ │ │ ├── issue44476.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44476.dart.weak.expect │ │ │ │ ├── issue44476.dart.weak.modular.expect │ │ │ │ ├── issue44476.dart.weak.outline.expect │ │ │ │ ├── issue44476.dart.weak.transformed.expect │ │ │ │ ├── issue44654.dart │ │ │ │ ├── issue44654.dart.strong.expect │ │ │ │ ├── issue44654.dart.strong.transformed.expect │ │ │ │ ├── issue44654.dart.textual_outline.expect │ │ │ │ ├── issue44654.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44654.dart.weak.expect │ │ │ │ ├── issue44654.dart.weak.modular.expect │ │ │ │ ├── issue44654.dart.weak.outline.expect │ │ │ │ ├── issue44654.dart.weak.transformed.expect │ │ │ │ ├── issue44733.dart │ │ │ │ ├── issue44733.dart.strong.expect │ │ │ │ ├── issue44733.dart.strong.transformed.expect │ │ │ │ ├── issue44733.dart.textual_outline.expect │ │ │ │ ├── issue44733.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44733.dart.weak.expect │ │ │ │ ├── issue44733.dart.weak.modular.expect │ │ │ │ ├── issue44733.dart.weak.outline.expect │ │ │ │ ├── issue44733.dart.weak.transformed.expect │ │ │ │ ├── issue44781.dart │ │ │ │ ├── issue44781.dart.strong.expect │ │ │ │ ├── issue44781.dart.strong.transformed.expect │ │ │ │ ├── issue44781.dart.textual_outline.expect │ │ │ │ ├── issue44781.dart.weak.expect │ │ │ │ ├── issue44781.dart.weak.modular.expect │ │ │ │ ├── issue44781.dart.weak.outline.expect │ │ │ │ ├── issue44781.dart.weak.transformed.expect │ │ │ │ ├── issue45003 │ │ │ │ │ ├── bar_lib.dart │ │ │ │ │ ├── foo_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.outline.expect │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ └── main.dart.weak.transformed.expect │ │ │ │ ├── issue45003_2.dart │ │ │ │ ├── issue45003_2.dart.strong.expect │ │ │ │ ├── issue45003_2.dart.strong.transformed.expect │ │ │ │ ├── issue45003_2.dart.textual_outline.expect │ │ │ │ ├── issue45003_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45003_2.dart.weak.expect │ │ │ │ ├── issue45003_2.dart.weak.modular.expect │ │ │ │ ├── issue45003_2.dart.weak.outline.expect │ │ │ │ ├── issue45003_2.dart.weak.transformed.expect │ │ │ │ ├── issue45029.dart │ │ │ │ ├── issue45029.dart.strong.expect │ │ │ │ ├── issue45029.dart.strong.transformed.expect │ │ │ │ ├── issue45029.dart.textual_outline.expect │ │ │ │ ├── issue45029.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45029.dart.weak.expect │ │ │ │ ├── issue45029.dart.weak.modular.expect │ │ │ │ ├── issue45029.dart.weak.outline.expect │ │ │ │ ├── issue45029.dart.weak.transformed.expect │ │ │ │ ├── issue45101 │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── issue45204.dart │ │ │ │ ├── issue45204.dart.strong.expect │ │ │ │ ├── issue45204.dart.strong.transformed.expect │ │ │ │ ├── issue45204.dart.textual_outline.expect │ │ │ │ ├── issue45204.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45204.dart.weak.expect │ │ │ │ ├── issue45204.dart.weak.modular.expect │ │ │ │ ├── issue45204.dart.weak.outline.expect │ │ │ │ ├── issue45204.dart.weak.transformed.expect │ │ │ │ ├── issue45330.dart │ │ │ │ ├── issue45330.dart.strong.expect │ │ │ │ ├── issue45330.dart.strong.transformed.expect │ │ │ │ ├── issue45330.dart.textual_outline.expect │ │ │ │ ├── issue45330.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45330.dart.weak.expect │ │ │ │ ├── issue45330.dart.weak.modular.expect │ │ │ │ ├── issue45330.dart.weak.outline.expect │ │ │ │ ├── issue45330.dart.weak.transformed.expect │ │ │ │ ├── issue45330_lib.dart │ │ │ │ ├── issue45490.dart │ │ │ │ ├── issue45490.dart.strong.expect │ │ │ │ ├── issue45490.dart.strong.transformed.expect │ │ │ │ ├── issue45490.dart.textual_outline.expect │ │ │ │ ├── issue45490.dart.weak.expect │ │ │ │ ├── issue45490.dart.weak.modular.expect │ │ │ │ ├── issue45490.dart.weak.outline.expect │ │ │ │ ├── issue45490.dart.weak.transformed.expect │ │ │ │ ├── issue45598.dart │ │ │ │ ├── issue45598.dart.strong.expect │ │ │ │ ├── issue45598.dart.strong.transformed.expect │ │ │ │ ├── issue45598.dart.textual_outline.expect │ │ │ │ ├── issue45598.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45598.dart.weak.expect │ │ │ │ ├── issue45598.dart.weak.modular.expect │ │ │ │ ├── issue45598.dart.weak.outline.expect │ │ │ │ ├── issue45598.dart.weak.transformed.expect │ │ │ │ ├── issue45598_2.dart │ │ │ │ ├── issue45598_2.dart.strong.expect │ │ │ │ ├── issue45598_2.dart.strong.transformed.expect │ │ │ │ ├── issue45598_2.dart.textual_outline.expect │ │ │ │ ├── issue45598_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45598_2.dart.weak.expect │ │ │ │ ├── issue45598_2.dart.weak.modular.expect │ │ │ │ ├── issue45598_2.dart.weak.outline.expect │ │ │ │ ├── issue45598_2.dart.weak.transformed.expect │ │ │ │ ├── issue45660.dart │ │ │ │ ├── issue45660.dart.strong.expect │ │ │ │ ├── issue45660.dart.strong.transformed.expect │ │ │ │ ├── issue45660.dart.textual_outline.expect │ │ │ │ ├── issue45660.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45660.dart.weak.expect │ │ │ │ ├── issue45660.dart.weak.modular.expect │ │ │ │ ├── issue45660.dart.weak.outline.expect │ │ │ │ ├── issue45660.dart.weak.transformed.expect │ │ │ │ ├── issue45660_2.dart │ │ │ │ ├── issue45660_2.dart.strong.expect │ │ │ │ ├── issue45660_2.dart.strong.transformed.expect │ │ │ │ ├── issue45660_2.dart.textual_outline.expect │ │ │ │ ├── issue45660_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45660_2.dart.weak.expect │ │ │ │ ├── issue45660_2.dart.weak.modular.expect │ │ │ │ ├── issue45660_2.dart.weak.outline.expect │ │ │ │ ├── issue45660_2.dart.weak.transformed.expect │ │ │ │ ├── issue45700.crash_dart │ │ │ │ ├── issue45700.crash_dart.strong.expect │ │ │ │ ├── issue45700.crash_dart.strong.transformed.expect │ │ │ │ ├── issue45700.crash_dart.textual_outline.expect │ │ │ │ ├── issue45700.crash_dart.weak.expect │ │ │ │ ├── issue45700.crash_dart.weak.modular.expect │ │ │ │ ├── issue45700.crash_dart.weak.outline.expect │ │ │ │ ├── issue45700.crash_dart.weak.transformed.expect │ │ │ │ ├── issue45834.dart │ │ │ │ ├── issue45834.dart.strong.expect │ │ │ │ ├── issue45834.dart.strong.transformed.expect │ │ │ │ ├── issue45834.dart.textual_outline.expect │ │ │ │ ├── issue45834.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45834.dart.weak.expect │ │ │ │ ├── issue45834.dart.weak.modular.expect │ │ │ │ ├── issue45834.dart.weak.outline.expect │ │ │ │ ├── issue45834.dart.weak.transformed.expect │ │ │ │ ├── issue46334.dart │ │ │ │ ├── issue46334.dart.strong.expect │ │ │ │ ├── issue46334.dart.strong.transformed.expect │ │ │ │ ├── issue46334.dart.textual_outline.expect │ │ │ │ ├── issue46334.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46334.dart.weak.expect │ │ │ │ ├── issue46334.dart.weak.modular.expect │ │ │ │ ├── issue46334.dart.weak.outline.expect │ │ │ │ ├── issue46334.dart.weak.transformed.expect │ │ │ │ ├── issue46389.dart │ │ │ │ ├── issue46389.dart.strong.expect │ │ │ │ ├── issue46389.dart.strong.transformed.expect │ │ │ │ ├── issue46389.dart.textual_outline.expect │ │ │ │ ├── issue46389.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46389.dart.weak.expect │ │ │ │ ├── issue46389.dart.weak.modular.expect │ │ │ │ ├── issue46389.dart.weak.outline.expect │ │ │ │ ├── issue46389.dart.weak.transformed.expect │ │ │ │ ├── issue46390.dart │ │ │ │ ├── issue46390.dart.strong.expect │ │ │ │ ├── issue46390.dart.strong.transformed.expect │ │ │ │ ├── issue46390.dart.textual_outline.expect │ │ │ │ ├── issue46390.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46390.dart.weak.expect │ │ │ │ ├── issue46390.dart.weak.modular.expect │ │ │ │ ├── issue46390.dart.weak.outline.expect │ │ │ │ ├── issue46390.dart.weak.transformed.expect │ │ │ │ ├── issue46518.dart │ │ │ │ ├── issue46518.dart.strong.expect │ │ │ │ ├── issue46518.dart.strong.transformed.expect │ │ │ │ ├── issue46518.dart.textual_outline.expect │ │ │ │ ├── issue46518.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46518.dart.weak.expect │ │ │ │ ├── issue46518.dart.weak.modular.expect │ │ │ │ ├── issue46518.dart.weak.outline.expect │ │ │ │ ├── issue46518.dart.weak.transformed.expect │ │ │ │ ├── issue46518_lib.dart │ │ │ │ ├── issue46581.dart │ │ │ │ ├── issue46581.dart.strong.expect │ │ │ │ ├── issue46581.dart.strong.transformed.expect │ │ │ │ ├── issue46581.dart.textual_outline.expect │ │ │ │ ├── issue46581.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46581.dart.weak.expect │ │ │ │ ├── issue46581.dart.weak.modular.expect │ │ │ │ ├── issue46581.dart.weak.outline.expect │ │ │ │ ├── issue46581.dart.weak.transformed.expect │ │ │ │ ├── issue46581 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue46581_lib.dart │ │ │ │ ├── issue46719.dart │ │ │ │ ├── issue46719.dart.strong.expect │ │ │ │ ├── issue46719.dart.strong.transformed.expect │ │ │ │ ├── issue46719.dart.textual_outline.expect │ │ │ │ ├── issue46719.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46719.dart.weak.expect │ │ │ │ ├── issue46719.dart.weak.modular.expect │ │ │ │ ├── issue46719.dart.weak.outline.expect │ │ │ │ ├── issue46719.dart.weak.transformed.expect │ │ │ │ ├── issue46745.dart │ │ │ │ ├── issue46745.dart.strong.expect │ │ │ │ ├── issue46745.dart.strong.transformed.expect │ │ │ │ ├── issue46745.dart.textual_outline.expect │ │ │ │ ├── issue46745.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46745.dart.weak.expect │ │ │ │ ├── issue46745.dart.weak.modular.expect │ │ │ │ ├── issue46745.dart.weak.outline.expect │ │ │ │ ├── issue46745.dart.weak.transformed.expect │ │ │ │ ├── issue46863.dart │ │ │ │ ├── issue46863.dart.strong.expect │ │ │ │ ├── issue46863.dart.strong.transformed.expect │ │ │ │ ├── issue46863.dart.textual_outline.expect │ │ │ │ ├── issue46863.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46863.dart.weak.expect │ │ │ │ ├── issue46863.dart.weak.modular.expect │ │ │ │ ├── issue46863.dart.weak.outline.expect │ │ │ │ ├── issue46863.dart.weak.transformed.expect │ │ │ │ ├── issue46956.dart │ │ │ │ ├── issue46956.dart.strong.expect │ │ │ │ ├── issue46956.dart.strong.transformed.expect │ │ │ │ ├── issue46956.dart.textual_outline.expect │ │ │ │ ├── issue46956.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46956.dart.weak.expect │ │ │ │ ├── issue46956.dart.weak.modular.expect │ │ │ │ ├── issue46956.dart.weak.outline.expect │ │ │ │ ├── issue46956.dart.weak.transformed.expect │ │ │ │ ├── issue47013.dart │ │ │ │ ├── issue47013.dart.strong.expect │ │ │ │ ├── issue47013.dart.strong.transformed.expect │ │ │ │ ├── issue47013.dart.textual_outline.expect │ │ │ │ ├── issue47013.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47013.dart.weak.expect │ │ │ │ ├── issue47013.dart.weak.modular.expect │ │ │ │ ├── issue47013.dart.weak.outline.expect │ │ │ │ ├── issue47013.dart.weak.transformed.expect │ │ │ │ ├── issue47013b.dart │ │ │ │ ├── issue47013b.dart.strong.expect │ │ │ │ ├── issue47013b.dart.strong.transformed.expect │ │ │ │ ├── issue47013b.dart.textual_outline.expect │ │ │ │ ├── issue47013b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47013b.dart.weak.expect │ │ │ │ ├── issue47013b.dart.weak.modular.expect │ │ │ │ ├── issue47013b.dart.weak.outline.expect │ │ │ │ ├── issue47013b.dart.weak.transformed.expect │ │ │ │ ├── issue47013c.dart │ │ │ │ ├── issue47013c.dart.strong.expect │ │ │ │ ├── issue47013c.dart.strong.transformed.expect │ │ │ │ ├── issue47013c.dart.textual_outline.expect │ │ │ │ ├── issue47013c.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47013c.dart.weak.expect │ │ │ │ ├── issue47013c.dart.weak.modular.expect │ │ │ │ ├── issue47013c.dart.weak.outline.expect │ │ │ │ ├── issue47013c.dart.weak.transformed.expect │ │ │ │ ├── issue47013d.dart │ │ │ │ ├── issue47013d.dart.strong.expect │ │ │ │ ├── issue47013d.dart.strong.transformed.expect │ │ │ │ ├── issue47013d.dart.textual_outline.expect │ │ │ │ ├── issue47013d.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47013d.dart.weak.expect │ │ │ │ ├── issue47013d.dart.weak.modular.expect │ │ │ │ ├── issue47013d.dart.weak.outline.expect │ │ │ │ ├── issue47013d.dart.weak.transformed.expect │ │ │ │ ├── issue47036.dart │ │ │ │ ├── issue47036.dart.strong.expect │ │ │ │ ├── issue47036.dart.strong.transformed.expect │ │ │ │ ├── issue47036.dart.textual_outline.expect │ │ │ │ ├── issue47036.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47036.dart.weak.expect │ │ │ │ ├── issue47036.dart.weak.modular.expect │ │ │ │ ├── issue47036.dart.weak.outline.expect │ │ │ │ ├── issue47036.dart.weak.transformed.expect │ │ │ │ ├── issue47057.dart │ │ │ │ ├── issue47057.dart.strong.expect │ │ │ │ ├── issue47057.dart.strong.transformed.expect │ │ │ │ ├── issue47057.dart.textual_outline.expect │ │ │ │ ├── issue47057.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47057.dart.weak.expect │ │ │ │ ├── issue47057.dart.weak.modular.expect │ │ │ │ ├── issue47057.dart.weak.outline.expect │ │ │ │ ├── issue47057.dart.weak.transformed.expect │ │ │ │ ├── issue47072.dart │ │ │ │ ├── issue47072.dart.strong.expect │ │ │ │ ├── issue47072.dart.strong.transformed.expect │ │ │ │ ├── issue47072.dart.textual_outline.expect │ │ │ │ ├── issue47072.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47072.dart.weak.expect │ │ │ │ ├── issue47072.dart.weak.modular.expect │ │ │ │ ├── issue47072.dart.weak.outline.expect │ │ │ │ ├── issue47072.dart.weak.transformed.expect │ │ │ │ ├── issue47223a.dart │ │ │ │ ├── issue47223a.dart.strong.expect │ │ │ │ ├── issue47223a.dart.strong.transformed.expect │ │ │ │ ├── issue47223a.dart.textual_outline.expect │ │ │ │ ├── issue47223a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47223a.dart.weak.expect │ │ │ │ ├── issue47223a.dart.weak.modular.expect │ │ │ │ ├── issue47223a.dart.weak.outline.expect │ │ │ │ ├── issue47223a.dart.weak.transformed.expect │ │ │ │ ├── issue47223b.dart │ │ │ │ ├── issue47223b.dart.strong.expect │ │ │ │ ├── issue47223b.dart.strong.transformed.expect │ │ │ │ ├── issue47223b.dart.textual_outline.expect │ │ │ │ ├── issue47223b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47223b.dart.weak.expect │ │ │ │ ├── issue47223b.dart.weak.modular.expect │ │ │ │ ├── issue47223b.dart.weak.outline.expect │ │ │ │ ├── issue47223b.dart.weak.transformed.expect │ │ │ │ ├── issue47339.dart │ │ │ │ ├── issue47339.dart.strong.expect │ │ │ │ ├── issue47339.dart.strong.transformed.expect │ │ │ │ ├── issue47339.dart.textual_outline.expect │ │ │ │ ├── issue47339.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47339.dart.weak.expect │ │ │ │ ├── issue47339.dart.weak.modular.expect │ │ │ │ ├── issue47339.dart.weak.outline.expect │ │ │ │ ├── issue47339.dart.weak.transformed.expect │ │ │ │ ├── issue47462.dart │ │ │ │ ├── issue47462.dart.strong.expect │ │ │ │ ├── issue47462.dart.strong.transformed.expect │ │ │ │ ├── issue47462.dart.textual_outline.expect │ │ │ │ ├── issue47462.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47462.dart.weak.expect │ │ │ │ ├── issue47462.dart.weak.modular.expect │ │ │ │ ├── issue47462.dart.weak.outline.expect │ │ │ │ ├── issue47462.dart.weak.transformed.expect │ │ │ │ ├── issue47495.dart │ │ │ │ ├── issue47495.dart.strong.expect │ │ │ │ ├── issue47495.dart.strong.transformed.expect │ │ │ │ ├── issue47495.dart.textual_outline.expect │ │ │ │ ├── issue47495.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47495.dart.weak.expect │ │ │ │ ├── issue47495.dart.weak.modular.expect │ │ │ │ ├── issue47495.dart.weak.outline.expect │ │ │ │ ├── issue47495.dart.weak.transformed.expect │ │ │ │ ├── issue47728_1.dart │ │ │ │ ├── issue47728_1.dart.strong.expect │ │ │ │ ├── issue47728_1.dart.strong.transformed.expect │ │ │ │ ├── issue47728_1.dart.textual_outline.expect │ │ │ │ ├── issue47728_1.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47728_1.dart.weak.expect │ │ │ │ ├── issue47728_1.dart.weak.modular.expect │ │ │ │ ├── issue47728_1.dart.weak.outline.expect │ │ │ │ ├── issue47728_1.dart.weak.transformed.expect │ │ │ │ ├── issue47728_2.dart │ │ │ │ ├── issue47728_2.dart.strong.expect │ │ │ │ ├── issue47728_2.dart.strong.transformed.expect │ │ │ │ ├── issue47728_2.dart.textual_outline.expect │ │ │ │ ├── issue47728_2.dart.weak.expect │ │ │ │ ├── issue47728_2.dart.weak.modular.expect │ │ │ │ ├── issue47728_2.dart.weak.outline.expect │ │ │ │ ├── issue47728_2.dart.weak.transformed.expect │ │ │ │ ├── issue47728_3.dart │ │ │ │ ├── issue47728_3.dart.strong.expect │ │ │ │ ├── issue47728_3.dart.strong.transformed.expect │ │ │ │ ├── issue47728_3.dart.textual_outline.expect │ │ │ │ ├── issue47728_3.dart.weak.expect │ │ │ │ ├── issue47728_3.dart.weak.modular.expect │ │ │ │ ├── issue47728_3.dart.weak.outline.expect │ │ │ │ ├── issue47728_3.dart.weak.transformed.expect │ │ │ │ ├── issue47728_4.dart │ │ │ │ ├── issue47728_4.dart.strong.expect │ │ │ │ ├── issue47728_4.dart.strong.transformed.expect │ │ │ │ ├── issue47728_4.dart.textual_outline.expect │ │ │ │ ├── issue47728_4.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47728_4.dart.weak.expect │ │ │ │ ├── issue47728_4.dart.weak.modular.expect │ │ │ │ ├── issue47728_4.dart.weak.outline.expect │ │ │ │ ├── issue47728_4.dart.weak.transformed.expect │ │ │ │ ├── issue47922.dart │ │ │ │ ├── issue47922.dart.strong.expect │ │ │ │ ├── issue47922.dart.strong.transformed.expect │ │ │ │ ├── issue47922.dart.textual_outline.expect │ │ │ │ ├── issue47922.dart.weak.expect │ │ │ │ ├── issue47922.dart.weak.modular.expect │ │ │ │ ├── issue47922.dart.weak.outline.expect │ │ │ │ ├── issue47922.dart.weak.transformed.expect │ │ │ │ ├── issue47994a.dart │ │ │ │ ├── issue47994a.dart.strong.expect │ │ │ │ ├── issue47994a.dart.strong.transformed.expect │ │ │ │ ├── issue47994a.dart.textual_outline.expect │ │ │ │ ├── issue47994a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47994a.dart.weak.expect │ │ │ │ ├── issue47994a.dart.weak.modular.expect │ │ │ │ ├── issue47994a.dart.weak.outline.expect │ │ │ │ ├── issue47994a.dart.weak.transformed.expect │ │ │ │ ├── issue47994b.dart │ │ │ │ ├── issue47994b.dart.strong.expect │ │ │ │ ├── issue47994b.dart.strong.transformed.expect │ │ │ │ ├── issue47994b.dart.textual_outline.expect │ │ │ │ ├── issue47994b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47994b.dart.weak.expect │ │ │ │ ├── issue47994b.dart.weak.modular.expect │ │ │ │ ├── issue47994b.dart.weak.outline.expect │ │ │ │ ├── issue47994b.dart.weak.transformed.expect │ │ │ │ ├── issue48090.dart │ │ │ │ ├── issue48090.dart.strong.expect │ │ │ │ ├── issue48090.dart.strong.transformed.expect │ │ │ │ ├── issue48090.dart.textual_outline.expect │ │ │ │ ├── issue48090.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48090.dart.weak.expect │ │ │ │ ├── issue48090.dart.weak.modular.expect │ │ │ │ ├── issue48090.dart.weak.outline.expect │ │ │ │ ├── issue48090.dart.weak.transformed.expect │ │ │ │ ├── issue48131.dart │ │ │ │ ├── issue48131.dart.strong.expect │ │ │ │ ├── issue48131.dart.strong.transformed.expect │ │ │ │ ├── issue48131.dart.textual_outline.expect │ │ │ │ ├── issue48131.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48131.dart.weak.expect │ │ │ │ ├── issue48131.dart.weak.modular.expect │ │ │ │ ├── issue48131.dart.weak.outline.expect │ │ │ │ ├── issue48131.dart.weak.transformed.expect │ │ │ │ ├── issue48148.dart │ │ │ │ ├── issue48148.dart.strong.expect │ │ │ │ ├── issue48148.dart.strong.transformed.expect │ │ │ │ ├── issue48148.dart.textual_outline.expect │ │ │ │ ├── issue48148.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48148.dart.weak.expect │ │ │ │ ├── issue48148.dart.weak.modular.expect │ │ │ │ ├── issue48148.dart.weak.outline.expect │ │ │ │ ├── issue48148.dart.weak.transformed.expect │ │ │ │ ├── issue48167.dart │ │ │ │ ├── issue48167.dart.strong.expect │ │ │ │ ├── issue48167.dart.strong.transformed.expect │ │ │ │ ├── issue48167.dart.textual_outline.expect │ │ │ │ ├── issue48167.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48167.dart.weak.expect │ │ │ │ ├── issue48167.dart.weak.modular.expect │ │ │ │ ├── issue48167.dart.weak.outline.expect │ │ │ │ ├── issue48167.dart.weak.transformed.expect │ │ │ │ ├── issue48242.dart │ │ │ │ ├── issue48242.dart.strong.expect │ │ │ │ ├── issue48242.dart.strong.transformed.expect │ │ │ │ ├── issue48242.dart.textual_outline.expect │ │ │ │ ├── issue48242.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48242.dart.weak.expect │ │ │ │ ├── issue48242.dart.weak.modular.expect │ │ │ │ ├── issue48242.dart.weak.outline.expect │ │ │ │ ├── issue48242.dart.weak.transformed.expect │ │ │ │ ├── issue48323.dart │ │ │ │ ├── issue48323.dart.strong.expect │ │ │ │ ├── issue48323.dart.strong.transformed.expect │ │ │ │ ├── issue48323.dart.textual_outline.expect │ │ │ │ ├── issue48323.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48323.dart.weak.expect │ │ │ │ ├── issue48323.dart.weak.modular.expect │ │ │ │ ├── issue48323.dart.weak.outline.expect │ │ │ │ ├── issue48323.dart.weak.transformed.expect │ │ │ │ ├── issue48347.dart │ │ │ │ ├── issue48347.dart.strong.expect │ │ │ │ ├── issue48347.dart.strong.transformed.expect │ │ │ │ ├── issue48347.dart.textual_outline.expect │ │ │ │ ├── issue48347.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48347.dart.weak.expect │ │ │ │ ├── issue48347.dart.weak.modular.expect │ │ │ │ ├── issue48347.dart.weak.outline.expect │ │ │ │ ├── issue48347.dart.weak.transformed.expect │ │ │ │ ├── issue48373.dart │ │ │ │ ├── issue48373.dart.strong.expect │ │ │ │ ├── issue48373.dart.strong.transformed.expect │ │ │ │ ├── issue48373.dart.textual_outline.expect │ │ │ │ ├── issue48373.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48373.dart.weak.expect │ │ │ │ ├── issue48373.dart.weak.modular.expect │ │ │ │ ├── issue48373.dart.weak.outline.expect │ │ │ │ ├── issue48373.dart.weak.transformed.expect │ │ │ │ ├── issue48402.dart │ │ │ │ ├── issue48402.dart.strong.expect │ │ │ │ ├── issue48402.dart.strong.transformed.expect │ │ │ │ ├── issue48402.dart.textual_outline.expect │ │ │ │ ├── issue48402.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48402.dart.weak.expect │ │ │ │ ├── issue48402.dart.weak.modular.expect │ │ │ │ ├── issue48402.dart.weak.outline.expect │ │ │ │ ├── issue48402.dart.weak.transformed.expect │ │ │ │ ├── issue48444.dart │ │ │ │ ├── issue48444.dart.strong.expect │ │ │ │ ├── issue48444.dart.strong.transformed.expect │ │ │ │ ├── issue48444.dart.textual_outline.expect │ │ │ │ ├── issue48444.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48444.dart.weak.expect │ │ │ │ ├── issue48444.dart.weak.modular.expect │ │ │ │ ├── issue48444.dart.weak.outline.expect │ │ │ │ ├── issue48444.dart.weak.transformed.expect │ │ │ │ ├── issue48487.dart │ │ │ │ ├── issue48487.dart.strong.expect │ │ │ │ ├── issue48487.dart.strong.transformed.expect │ │ │ │ ├── issue48487.dart.textual_outline.expect │ │ │ │ ├── issue48487.dart.weak.expect │ │ │ │ ├── issue48487.dart.weak.modular.expect │ │ │ │ ├── issue48487.dart.weak.outline.expect │ │ │ │ ├── issue48487.dart.weak.transformed.expect │ │ │ │ ├── issue48487b.dart │ │ │ │ ├── issue48487b.dart.strong.expect │ │ │ │ ├── issue48487b.dart.strong.transformed.expect │ │ │ │ ├── issue48487b.dart.textual_outline.expect │ │ │ │ ├── issue48487b.dart.weak.expect │ │ │ │ ├── issue48487b.dart.weak.modular.expect │ │ │ │ ├── issue48487b.dart.weak.outline.expect │ │ │ │ ├── issue48487b.dart.weak.transformed.expect │ │ │ │ ├── issue48548.dart │ │ │ │ ├── issue48548.dart.strong.expect │ │ │ │ ├── issue48548.dart.strong.transformed.expect │ │ │ │ ├── issue48548.dart.textual_outline.expect │ │ │ │ ├── issue48548.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48548.dart.weak.expect │ │ │ │ ├── issue48548.dart.weak.modular.expect │ │ │ │ ├── issue48548.dart.weak.outline.expect │ │ │ │ ├── issue48548.dart.weak.transformed.expect │ │ │ │ ├── issue48765.dart │ │ │ │ ├── issue48765.dart.strong.expect │ │ │ │ ├── issue48765.dart.strong.transformed.expect │ │ │ │ ├── issue48765.dart.textual_outline.expect │ │ │ │ ├── issue48765.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48765.dart.weak.expect │ │ │ │ ├── issue48765.dart.weak.modular.expect │ │ │ │ ├── issue48765.dart.weak.outline.expect │ │ │ │ ├── issue48765.dart.weak.transformed.expect │ │ │ │ ├── issue48765_part1.dart │ │ │ │ ├── issue48765_part2.dart │ │ │ │ ├── issue48808.dart │ │ │ │ ├── issue48808.dart.strong.expect │ │ │ │ ├── issue48808.dart.strong.transformed.expect │ │ │ │ ├── issue48808.dart.textual_outline.expect │ │ │ │ ├── issue48808.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48808.dart.weak.expect │ │ │ │ ├── issue48808.dart.weak.modular.expect │ │ │ │ ├── issue48808.dart.weak.outline.expect │ │ │ │ ├── issue48808.dart.weak.transformed.expect │ │ │ │ ├── issue48834.dart │ │ │ │ ├── issue48834.dart.strong.expect │ │ │ │ ├── issue48834.dart.strong.transformed.expect │ │ │ │ ├── issue48834.dart.textual_outline.expect │ │ │ │ ├── issue48834.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48834.dart.weak.expect │ │ │ │ ├── issue48834.dart.weak.modular.expect │ │ │ │ ├── issue48834.dart.weak.outline.expect │ │ │ │ ├── issue48834.dart.weak.transformed.expect │ │ │ │ ├── issue48919.dart │ │ │ │ ├── issue48919.dart.strong.expect │ │ │ │ ├── issue48919.dart.strong.transformed.expect │ │ │ │ ├── issue48919.dart.textual_outline.expect │ │ │ │ ├── issue48919.dart.weak.expect │ │ │ │ ├── issue48919.dart.weak.modular.expect │ │ │ │ ├── issue48919.dart.weak.outline.expect │ │ │ │ ├── issue48919.dart.weak.transformed.expect │ │ │ │ ├── issue49040.dart │ │ │ │ ├── issue49040.dart.strong.expect │ │ │ │ ├── issue49040.dart.strong.transformed.expect │ │ │ │ ├── issue49040.dart.textual_outline.expect │ │ │ │ ├── issue49040.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49040.dart.weak.expect │ │ │ │ ├── issue49040.dart.weak.modular.expect │ │ │ │ ├── issue49040.dart.weak.outline.expect │ │ │ │ ├── issue49040.dart.weak.transformed.expect │ │ │ │ ├── issue49087.dart │ │ │ │ ├── issue49087.dart.strong.expect │ │ │ │ ├── issue49087.dart.strong.transformed.expect │ │ │ │ ├── issue49087.dart.textual_outline.expect │ │ │ │ ├── issue49087.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49087.dart.weak.expect │ │ │ │ ├── issue49087.dart.weak.modular.expect │ │ │ │ ├── issue49087.dart.weak.outline.expect │ │ │ │ ├── issue49087.dart.weak.transformed.expect │ │ │ │ ├── issue49122.dart │ │ │ │ ├── issue49122.dart.strong.expect │ │ │ │ ├── issue49122.dart.strong.transformed.expect │ │ │ │ ├── issue49122.dart.textual_outline.expect │ │ │ │ ├── issue49122.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49122.dart.weak.expect │ │ │ │ ├── issue49122.dart.weak.modular.expect │ │ │ │ ├── issue49122.dart.weak.outline.expect │ │ │ │ ├── issue49122.dart.weak.transformed.expect │ │ │ │ ├── issue49127.dart │ │ │ │ ├── issue49127.dart.strong.expect │ │ │ │ ├── issue49127.dart.strong.transformed.expect │ │ │ │ ├── issue49127.dart.textual_outline.expect │ │ │ │ ├── issue49127.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49127.dart.weak.expect │ │ │ │ ├── issue49127.dart.weak.modular.expect │ │ │ │ ├── issue49127.dart.weak.outline.expect │ │ │ │ ├── issue49127.dart.weak.transformed.expect │ │ │ │ ├── issue49153.dart │ │ │ │ ├── issue49153.dart.strong.expect │ │ │ │ ├── issue49153.dart.strong.transformed.expect │ │ │ │ ├── issue49153.dart.textual_outline.expect │ │ │ │ ├── issue49153.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49153.dart.weak.expect │ │ │ │ ├── issue49153.dart.weak.modular.expect │ │ │ │ ├── issue49153.dart.weak.outline.expect │ │ │ │ ├── issue49153.dart.weak.transformed.expect │ │ │ │ ├── issue49206.dart │ │ │ │ ├── issue49206.dart.strong.expect │ │ │ │ ├── issue49206.dart.strong.transformed.expect │ │ │ │ ├── issue49206.dart.textual_outline.expect │ │ │ │ ├── issue49206.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49206.dart.weak.expect │ │ │ │ ├── issue49206.dart.weak.modular.expect │ │ │ │ ├── issue49206.dart.weak.outline.expect │ │ │ │ ├── issue49206.dart.weak.transformed.expect │ │ │ │ ├── issue49208.dart │ │ │ │ ├── issue49208.dart.strong.expect │ │ │ │ ├── issue49208.dart.strong.transformed.expect │ │ │ │ ├── issue49208.dart.textual_outline.expect │ │ │ │ ├── issue49208.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49208.dart.weak.expect │ │ │ │ ├── issue49208.dart.weak.modular.expect │ │ │ │ ├── issue49208.dart.weak.outline.expect │ │ │ │ ├── issue49208.dart.weak.transformed.expect │ │ │ │ ├── issue49216.dart │ │ │ │ ├── issue49216.dart.strong.expect │ │ │ │ ├── issue49216.dart.strong.transformed.expect │ │ │ │ ├── issue49216.dart.textual_outline.expect │ │ │ │ ├── issue49216.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49216.dart.weak.expect │ │ │ │ ├── issue49216.dart.weak.modular.expect │ │ │ │ ├── issue49216.dart.weak.outline.expect │ │ │ │ ├── issue49216.dart.weak.transformed.expect │ │ │ │ ├── issue49254.dart │ │ │ │ ├── issue49254.dart.strong.expect │ │ │ │ ├── issue49254.dart.strong.transformed.expect │ │ │ │ ├── issue49254.dart.textual_outline.expect │ │ │ │ ├── issue49254.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49254.dart.weak.expect │ │ │ │ ├── issue49254.dart.weak.modular.expect │ │ │ │ ├── issue49254.dart.weak.outline.expect │ │ │ │ ├── issue49254.dart.weak.transformed.expect │ │ │ │ ├── issue49357a.dart │ │ │ │ ├── issue49357a.dart.strong.expect │ │ │ │ ├── issue49357a.dart.strong.transformed.expect │ │ │ │ ├── issue49357a.dart.weak.expect │ │ │ │ ├── issue49357a.dart.weak.modular.expect │ │ │ │ ├── issue49357a.dart.weak.outline.expect │ │ │ │ ├── issue49357a.dart.weak.transformed.expect │ │ │ │ ├── issue49357b.dart │ │ │ │ ├── issue49357b.dart.strong.expect │ │ │ │ ├── issue49357b.dart.strong.transformed.expect │ │ │ │ ├── issue49357b.dart.textual_outline.expect │ │ │ │ ├── issue49357b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49357b.dart.weak.expect │ │ │ │ ├── issue49357b.dart.weak.modular.expect │ │ │ │ ├── issue49357b.dart.weak.outline.expect │ │ │ │ ├── issue49357b.dart.weak.transformed.expect │ │ │ │ ├── issue49396.dart │ │ │ │ ├── issue49396.dart.strong.expect │ │ │ │ ├── issue49396.dart.strong.transformed.expect │ │ │ │ ├── issue49396.dart.textual_outline.expect │ │ │ │ ├── issue49396.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49396.dart.weak.expect │ │ │ │ ├── issue49396.dart.weak.modular.expect │ │ │ │ ├── issue49396.dart.weak.outline.expect │ │ │ │ ├── issue49396.dart.weak.transformed.expect │ │ │ │ ├── issue49528.dart │ │ │ │ ├── issue49528.dart.strong.expect │ │ │ │ ├── issue49528.dart.strong.transformed.expect │ │ │ │ ├── issue49528.dart.textual_outline.expect │ │ │ │ ├── issue49528.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49528.dart.weak.expect │ │ │ │ ├── issue49528.dart.weak.modular.expect │ │ │ │ ├── issue49528.dart.weak.outline.expect │ │ │ │ ├── issue49528.dart.weak.transformed.expect │ │ │ │ ├── issue49697 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue49697_2 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue49908.dart │ │ │ │ ├── issue49908.dart.strong.expect │ │ │ │ ├── issue49908.dart.strong.transformed.expect │ │ │ │ ├── issue49908.dart.textual_outline.expect │ │ │ │ ├── issue49908.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49908.dart.weak.expect │ │ │ │ ├── issue49908.dart.weak.modular.expect │ │ │ │ ├── issue49908.dart.weak.outline.expect │ │ │ │ ├── issue49908.dart.weak.transformed.expect │ │ │ │ ├── issue49985.dart │ │ │ │ ├── issue49985.dart.strong.expect │ │ │ │ ├── issue49985.dart.strong.transformed.expect │ │ │ │ ├── issue49985.dart.textual_outline.expect │ │ │ │ ├── issue49985.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49985.dart.weak.expect │ │ │ │ ├── issue49985.dart.weak.modular.expect │ │ │ │ ├── issue49985.dart.weak.outline.expect │ │ │ │ ├── issue49985.dart.weak.transformed.expect │ │ │ │ ├── issue50351.dart │ │ │ │ ├── issue50351.dart.strong.expect │ │ │ │ ├── issue50351.dart.strong.transformed.expect │ │ │ │ ├── issue50351.dart.textual_outline.expect │ │ │ │ ├── issue50351.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50351.dart.weak.expect │ │ │ │ ├── issue50351.dart.weak.modular.expect │ │ │ │ ├── issue50351.dart.weak.outline.expect │ │ │ │ ├── issue50351.dart.weak.transformed.expect │ │ │ │ ├── issue50382.dart │ │ │ │ ├── issue50382.dart.strong.expect │ │ │ │ ├── issue50382.dart.strong.transformed.expect │ │ │ │ ├── issue50382.dart.textual_outline.expect │ │ │ │ ├── issue50382.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50382.dart.weak.expect │ │ │ │ ├── issue50382.dart.weak.modular.expect │ │ │ │ ├── issue50382.dart.weak.outline.expect │ │ │ │ ├── issue50382.dart.weak.transformed.expect │ │ │ │ ├── issue51089.dart │ │ │ │ ├── issue51089.dart.strong.expect │ │ │ │ ├── issue51089.dart.strong.transformed.expect │ │ │ │ ├── issue51089.dart.textual_outline.expect │ │ │ │ ├── issue51089.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51089.dart.weak.expect │ │ │ │ ├── issue51089.dart.weak.modular.expect │ │ │ │ ├── issue51089.dart.weak.outline.expect │ │ │ │ ├── issue51089.dart.weak.transformed.expect │ │ │ │ ├── issue51815 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue_46886.dart │ │ │ │ ├── issue_46886.dart.strong.expect │ │ │ │ ├── issue_46886.dart.strong.transformed.expect │ │ │ │ ├── issue_46886.dart.textual_outline.expect │ │ │ │ ├── issue_46886.dart.weak.expect │ │ │ │ ├── issue_46886.dart.weak.modular.expect │ │ │ │ ├── issue_46886.dart.weak.outline.expect │ │ │ │ ├── issue_46886.dart.weak.transformed.expect │ │ │ │ ├── issue_47008_01.dart │ │ │ │ ├── issue_47008_01.dart.strong.expect │ │ │ │ ├── issue_47008_01.dart.strong.transformed.expect │ │ │ │ ├── issue_47008_01.dart.textual_outline.expect │ │ │ │ ├── issue_47008_01.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_47008_01.dart.weak.expect │ │ │ │ ├── issue_47008_01.dart.weak.modular.expect │ │ │ │ ├── issue_47008_01.dart.weak.outline.expect │ │ │ │ ├── issue_47008_01.dart.weak.transformed.expect │ │ │ │ ├── issue_47008_02.dart │ │ │ │ ├── issue_47008_02.dart.strong.expect │ │ │ │ ├── issue_47008_02.dart.strong.transformed.expect │ │ │ │ ├── issue_47008_02.dart.textual_outline.expect │ │ │ │ ├── issue_47008_02.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_47008_02.dart.weak.expect │ │ │ │ ├── issue_47008_02.dart.weak.modular.expect │ │ │ │ ├── issue_47008_02.dart.weak.outline.expect │ │ │ │ ├── issue_47008_02.dart.weak.transformed.expect │ │ │ │ ├── issue_47009_01.dart │ │ │ │ ├── issue_47009_01.dart.strong.expect │ │ │ │ ├── issue_47009_01.dart.strong.transformed.expect │ │ │ │ ├── issue_47009_01.dart.textual_outline.expect │ │ │ │ ├── issue_47009_01.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_47009_01.dart.weak.expect │ │ │ │ ├── issue_47009_01.dart.weak.modular.expect │ │ │ │ ├── issue_47009_01.dart.weak.outline.expect │ │ │ │ ├── issue_47009_01.dart.weak.transformed.expect │ │ │ │ ├── issue_47009_02.dart │ │ │ │ ├── issue_47009_02.dart.strong.expect │ │ │ │ ├── issue_47009_02.dart.strong.transformed.expect │ │ │ │ ├── issue_47009_02.dart.textual_outline.expect │ │ │ │ ├── issue_47009_02.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_47009_02.dart.weak.expect │ │ │ │ ├── issue_47009_02.dart.weak.modular.expect │ │ │ │ ├── issue_47009_02.dart.weak.outline.expect │ │ │ │ ├── issue_47009_02.dart.weak.transformed.expect │ │ │ │ ├── issue_47009_03.dart │ │ │ │ ├── issue_47009_03.dart.strong.expect │ │ │ │ ├── issue_47009_03.dart.strong.transformed.expect │ │ │ │ ├── issue_47009_03.dart.textual_outline.expect │ │ │ │ ├── issue_47009_03.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_47009_03.dart.weak.expect │ │ │ │ ├── issue_47009_03.dart.weak.modular.expect │ │ │ │ ├── issue_47009_03.dart.weak.outline.expect │ │ │ │ ├── issue_47009_03.dart.weak.transformed.expect │ │ │ │ ├── issue_47541.dart │ │ │ │ ├── issue_47541.dart.strong.expect │ │ │ │ ├── issue_47541.dart.strong.transformed.expect │ │ │ │ ├── issue_47541.dart.textual_outline.expect │ │ │ │ ├── issue_47541.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_47541.dart.weak.expect │ │ │ │ ├── issue_47541.dart.weak.modular.expect │ │ │ │ ├── issue_47541.dart.weak.outline.expect │ │ │ │ ├── issue_47541.dart.weak.transformed.expect │ │ │ │ ├── issue_48999.dart │ │ │ │ ├── issue_48999.dart.strong.expect │ │ │ │ ├── issue_48999.dart.strong.transformed.expect │ │ │ │ ├── issue_48999.dart.textual_outline.expect │ │ │ │ ├── issue_48999.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_48999.dart.weak.expect │ │ │ │ ├── issue_48999.dart.weak.modular.expect │ │ │ │ ├── issue_48999.dart.weak.outline.expect │ │ │ │ ├── issue_48999.dart.weak.transformed.expect │ │ │ │ ├── issue_49132.dart │ │ │ │ ├── issue_49132.dart.strong.expect │ │ │ │ ├── issue_49132.dart.strong.transformed.expect │ │ │ │ ├── issue_49132.dart.textual_outline.expect │ │ │ │ ├── issue_49132.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_49132.dart.weak.expect │ │ │ │ ├── issue_49132.dart.weak.modular.expect │ │ │ │ ├── issue_49132.dart.weak.outline.expect │ │ │ │ ├── issue_49132.dart.weak.transformed.expect │ │ │ │ ├── issue_49132_not_nullable.dart │ │ │ │ ├── issue_49132_not_nullable.dart.strong.expect │ │ │ │ ├── issue_49132_not_nullable.dart.strong.transformed.expect │ │ │ │ ├── issue_49132_not_nullable.dart.textual_outline.expect │ │ │ │ ├── issue_49132_not_nullable.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_49132_not_nullable.dart.weak.expect │ │ │ │ ├── issue_49132_not_nullable.dart.weak.modular.expect │ │ │ │ ├── issue_49132_not_nullable.dart.weak.outline.expect │ │ │ │ ├── issue_49132_not_nullable.dart.weak.transformed.expect │ │ │ │ ├── labeled_default.dart │ │ │ │ ├── labeled_default.dart.strong.expect │ │ │ │ ├── labeled_default.dart.strong.transformed.expect │ │ │ │ ├── labeled_default.dart.textual_outline.expect │ │ │ │ ├── labeled_default.dart.textual_outline_modelled.expect │ │ │ │ ├── labeled_default.dart.weak.expect │ │ │ │ ├── labeled_default.dart.weak.modular.expect │ │ │ │ ├── labeled_default.dart.weak.outline.expect │ │ │ │ ├── labeled_default.dart.weak.transformed.expect │ │ │ │ ├── literals.dart │ │ │ │ ├── literals.dart.strong.expect │ │ │ │ ├── literals.dart.strong.transformed.expect │ │ │ │ ├── literals.dart.textual_outline.expect │ │ │ │ ├── literals.dart.textual_outline_modelled.expect │ │ │ │ ├── literals.dart.weak.expect │ │ │ │ ├── literals.dart.weak.modular.expect │ │ │ │ ├── literals.dart.weak.outline.expect │ │ │ │ ├── literals.dart.weak.transformed.expect │ │ │ │ ├── local_generic_function.dart │ │ │ │ ├── local_generic_function.dart.strong.expect │ │ │ │ ├── local_generic_function.dart.strong.transformed.expect │ │ │ │ ├── local_generic_function.dart.textual_outline.expect │ │ │ │ ├── local_generic_function.dart.textual_outline_modelled.expect │ │ │ │ ├── local_generic_function.dart.weak.expect │ │ │ │ ├── local_generic_function.dart.weak.modular.expect │ │ │ │ ├── local_generic_function.dart.weak.outline.expect │ │ │ │ ├── local_generic_function.dart.weak.transformed.expect │ │ │ │ ├── long_chain_of_typedefs.dart │ │ │ │ ├── long_chain_of_typedefs.dart.strong.expect │ │ │ │ ├── long_chain_of_typedefs.dart.strong.transformed.expect │ │ │ │ ├── long_chain_of_typedefs.dart.textual_outline.expect │ │ │ │ ├── long_chain_of_typedefs.dart.textual_outline_modelled.expect │ │ │ │ ├── long_chain_of_typedefs.dart.weak.expect │ │ │ │ ├── long_chain_of_typedefs.dart.weak.modular.expect │ │ │ │ ├── long_chain_of_typedefs.dart.weak.outline.expect │ │ │ │ ├── long_chain_of_typedefs.dart.weak.transformed.expect │ │ │ │ ├── macro_class.dart │ │ │ │ ├── macro_class.dart.strong.expect │ │ │ │ ├── macro_class.dart.strong.transformed.expect │ │ │ │ ├── macro_class.dart.textual_outline.expect │ │ │ │ ├── macro_class.dart.weak.expect │ │ │ │ ├── macro_class.dart.weak.modular.expect │ │ │ │ ├── macro_class.dart.weak.outline.expect │ │ │ │ ├── macro_class.dart.weak.transformed.expect │ │ │ │ ├── magic_const.dart │ │ │ │ ├── magic_const.dart.strong.expect │ │ │ │ ├── magic_const.dart.strong.transformed.expect │ │ │ │ ├── magic_const.dart.textual_outline.expect │ │ │ │ ├── magic_const.dart.textual_outline_modelled.expect │ │ │ │ ├── magic_const.dart.weak.expect │ │ │ │ ├── magic_const.dart.weak.modular.expect │ │ │ │ ├── magic_const.dart.weak.outline.expect │ │ │ │ ├── magic_const.dart.weak.transformed.expect │ │ │ │ ├── main_declaration.dart │ │ │ │ ├── main_declaration.dart.strong.expect │ │ │ │ ├── main_declaration.dart.strong.transformed.expect │ │ │ │ ├── main_declaration.dart.textual_outline.expect │ │ │ │ ├── main_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── main_declaration.dart.weak.expect │ │ │ │ ├── main_declaration.dart.weak.modular.expect │ │ │ │ ├── main_declaration.dart.weak.outline.expect │ │ │ │ ├── main_declaration.dart.weak.transformed.expect │ │ │ │ ├── main_declaration_lib.dart │ │ │ │ ├── many_errors.dart │ │ │ │ ├── many_errors.dart.strong.expect │ │ │ │ ├── many_errors.dart.strong.transformed.expect │ │ │ │ ├── many_errors.dart.textual_outline.expect │ │ │ │ ├── many_errors.dart.weak.expect │ │ │ │ ├── many_errors.dart.weak.modular.expect │ │ │ │ ├── many_errors.dart.weak.outline.expect │ │ │ │ ├── many_errors.dart.weak.transformed.expect │ │ │ │ ├── many_errors2.dart │ │ │ │ ├── many_errors2.dart.strong.expect │ │ │ │ ├── many_errors2.dart.strong.transformed.expect │ │ │ │ ├── many_errors2.dart.textual_outline.expect │ │ │ │ ├── many_errors2.dart.weak.expect │ │ │ │ ├── many_errors2.dart.weak.modular.expect │ │ │ │ ├── many_errors2.dart.weak.outline.expect │ │ │ │ ├── many_errors2.dart.weak.transformed.expect │ │ │ │ ├── map.dart │ │ │ │ ├── map.dart.strong.expect │ │ │ │ ├── map.dart.strong.transformed.expect │ │ │ │ ├── map.dart.textual_outline.expect │ │ │ │ ├── map.dart.textual_outline_modelled.expect │ │ │ │ ├── map.dart.weak.expect │ │ │ │ ├── map.dart.weak.modular.expect │ │ │ │ ├── map.dart.weak.outline.expect │ │ │ │ ├── map.dart.weak.transformed.expect │ │ │ │ ├── metadata_enum.dart │ │ │ │ ├── metadata_enum.dart.strong.expect │ │ │ │ ├── metadata_enum.dart.strong.transformed.expect │ │ │ │ ├── metadata_enum.dart.textual_outline.expect │ │ │ │ ├── metadata_enum.dart.textual_outline_modelled.expect │ │ │ │ ├── metadata_enum.dart.weak.expect │ │ │ │ ├── metadata_enum.dart.weak.modular.expect │ │ │ │ ├── metadata_enum.dart.weak.outline.expect │ │ │ │ ├── metadata_enum.dart.weak.transformed.expect │ │ │ │ ├── metadata_named_mixin_application.dart │ │ │ │ ├── metadata_named_mixin_application.dart.strong.expect │ │ │ │ ├── metadata_named_mixin_application.dart.strong.transformed.expect │ │ │ │ ├── metadata_named_mixin_application.dart.textual_outline.expect │ │ │ │ ├── metadata_named_mixin_application.dart.textual_outline_modelled.expect │ │ │ │ ├── metadata_named_mixin_application.dart.weak.expect │ │ │ │ ├── metadata_named_mixin_application.dart.weak.modular.expect │ │ │ │ ├── metadata_named_mixin_application.dart.weak.outline.expect │ │ │ │ ├── metadata_named_mixin_application.dart.weak.transformed.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.strong.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.strong.transformed.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.textual_outline.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.textual_outline_modelled.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.weak.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.weak.modular.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.weak.outline.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check.dart.weak.transformed.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.strong.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.strong.transformed.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.textual_outline.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.weak.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.weak.modular.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.weak.outline.expect │ │ │ │ ├── method_tearoff_covariant_generic_type_check_opt_out.dart.weak.transformed.expect │ │ │ │ ├── micro.dart │ │ │ │ ├── micro.dart.strong.expect │ │ │ │ ├── micro.dart.strong.transformed.expect │ │ │ │ ├── micro.dart.textual_outline.expect │ │ │ │ ├── micro.dart.textual_outline_modelled.expect │ │ │ │ ├── micro.dart.weak.expect │ │ │ │ ├── micro.dart.weak.modular.expect │ │ │ │ ├── micro.dart.weak.outline.expect │ │ │ │ ├── micro.dart.weak.transformed.expect │ │ │ │ ├── minimum_int.dart │ │ │ │ ├── minimum_int.dart.strong.expect │ │ │ │ ├── minimum_int.dart.strong.transformed.expect │ │ │ │ ├── minimum_int.dart.textual_outline.expect │ │ │ │ ├── minimum_int.dart.textual_outline_modelled.expect │ │ │ │ ├── minimum_int.dart.weak.expect │ │ │ │ ├── minimum_int.dart.weak.modular.expect │ │ │ │ ├── minimum_int.dart.weak.outline.expect │ │ │ │ ├── minimum_int.dart.weak.transformed.expect │ │ │ │ ├── missing_constructor.dart │ │ │ │ ├── missing_constructor.dart.strong.expect │ │ │ │ ├── missing_constructor.dart.strong.transformed.expect │ │ │ │ ├── missing_constructor.dart.textual_outline.expect │ │ │ │ ├── missing_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── missing_constructor.dart.weak.expect │ │ │ │ ├── missing_constructor.dart.weak.modular.expect │ │ │ │ ├── missing_constructor.dart.weak.outline.expect │ │ │ │ ├── missing_constructor.dart.weak.transformed.expect │ │ │ │ ├── missing_prefix_name.dart │ │ │ │ ├── missing_prefix_name.dart.strong.expect │ │ │ │ ├── missing_prefix_name.dart.strong.transformed.expect │ │ │ │ ├── missing_prefix_name.dart.textual_outline.expect │ │ │ │ ├── missing_prefix_name.dart.weak.expect │ │ │ │ ├── missing_prefix_name.dart.weak.modular.expect │ │ │ │ ├── missing_prefix_name.dart.weak.outline.expect │ │ │ │ ├── missing_prefix_name.dart.weak.transformed.expect │ │ │ │ ├── missing_static_super.dart │ │ │ │ ├── missing_static_super.dart.strong.expect │ │ │ │ ├── missing_static_super.dart.strong.transformed.expect │ │ │ │ ├── missing_static_super.dart.textual_outline.expect │ │ │ │ ├── missing_static_super.dart.textual_outline_modelled.expect │ │ │ │ ├── missing_static_super.dart.weak.expect │ │ │ │ ├── missing_static_super.dart.weak.modular.expect │ │ │ │ ├── missing_static_super.dart.weak.outline.expect │ │ │ │ ├── missing_static_super.dart.weak.transformed.expect │ │ │ │ ├── missing_toplevel.dart │ │ │ │ ├── missing_toplevel.dart.strong.expect │ │ │ │ ├── missing_toplevel.dart.strong.transformed.expect │ │ │ │ ├── missing_toplevel.dart.textual_outline.expect │ │ │ │ ├── missing_toplevel.dart.textual_outline_modelled.expect │ │ │ │ ├── missing_toplevel.dart.weak.expect │ │ │ │ ├── missing_toplevel.dart.weak.modular.expect │ │ │ │ ├── missing_toplevel.dart.weak.outline.expect │ │ │ │ ├── missing_toplevel.dart.weak.transformed.expect │ │ │ │ ├── mixin.dart │ │ │ │ ├── mixin.dart.strong.expect │ │ │ │ ├── mixin.dart.strong.transformed.expect │ │ │ │ ├── mixin.dart.textual_outline.expect │ │ │ │ ├── mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin.dart.weak.expect │ │ │ │ ├── mixin.dart.weak.modular.expect │ │ │ │ ├── mixin.dart.weak.outline.expect │ │ │ │ ├── mixin.dart.weak.transformed.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.strong.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.strong.transformed.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.textual_outline.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.weak.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.weak.modular.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.weak.outline.expect │ │ │ │ ├── mixin_application_inferred_parameter_type.dart.weak.transformed.expect │ │ │ │ ├── mixin_application_lub.dart │ │ │ │ ├── mixin_application_lub.dart.strong.expect │ │ │ │ ├── mixin_application_lub.dart.strong.transformed.expect │ │ │ │ ├── mixin_application_lub.dart.textual_outline.expect │ │ │ │ ├── mixin_application_lub.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_application_lub.dart.weak.expect │ │ │ │ ├── mixin_application_lub.dart.weak.modular.expect │ │ │ │ ├── mixin_application_lub.dart.weak.outline.expect │ │ │ │ ├── mixin_application_lub.dart.weak.transformed.expect │ │ │ │ ├── mixin_application_lub_2.dart │ │ │ │ ├── mixin_application_lub_2.dart.strong.expect │ │ │ │ ├── mixin_application_lub_2.dart.strong.transformed.expect │ │ │ │ ├── mixin_application_lub_2.dart.textual_outline.expect │ │ │ │ ├── mixin_application_lub_2.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_application_lub_2.dart.weak.expect │ │ │ │ ├── mixin_application_lub_2.dart.weak.modular.expect │ │ │ │ ├── mixin_application_lub_2.dart.weak.outline.expect │ │ │ │ ├── mixin_application_lub_2.dart.weak.transformed.expect │ │ │ │ ├── mixin_application_override.dart │ │ │ │ ├── mixin_application_override.dart.strong.expect │ │ │ │ ├── mixin_application_override.dart.textual_outline.expect │ │ │ │ ├── mixin_application_override.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_application_override.dart.weak.expect │ │ │ │ ├── mixin_application_override.dart.weak.modular.expect │ │ │ │ ├── mixin_application_override.dart.weak.outline.expect │ │ │ │ ├── mixin_class_declaration.dart │ │ │ │ ├── mixin_class_declaration.dart.strong.expect │ │ │ │ ├── mixin_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── mixin_class_declaration.dart.textual_outline.expect │ │ │ │ ├── mixin_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_class_declaration.dart.weak.expect │ │ │ │ ├── mixin_class_declaration.dart.weak.modular.expect │ │ │ │ ├── mixin_class_declaration.dart.weak.outline.expect │ │ │ │ ├── mixin_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── mixin_conflicts.dart │ │ │ │ ├── mixin_conflicts.dart.strong.expect │ │ │ │ ├── mixin_conflicts.dart.strong.transformed.expect │ │ │ │ ├── mixin_conflicts.dart.textual_outline.expect │ │ │ │ ├── mixin_conflicts.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_conflicts.dart.weak.expect │ │ │ │ ├── mixin_conflicts.dart.weak.modular.expect │ │ │ │ ├── mixin_conflicts.dart.weak.outline.expect │ │ │ │ ├── mixin_conflicts.dart.weak.transformed.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart │ │ │ │ ├── mixin_constructors_with_default_values.dart.strong.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.strong.transformed.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.textual_outline.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.weak.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.weak.modular.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.weak.outline.expect │ │ │ │ ├── mixin_constructors_with_default_values.dart.weak.transformed.expect │ │ │ │ ├── mixin_covariant.dart │ │ │ │ ├── mixin_covariant.dart.strong.expect │ │ │ │ ├── mixin_covariant.dart.strong.transformed.expect │ │ │ │ ├── mixin_covariant.dart.textual_outline.expect │ │ │ │ ├── mixin_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_covariant.dart.weak.expect │ │ │ │ ├── mixin_covariant.dart.weak.modular.expect │ │ │ │ ├── mixin_covariant.dart.weak.outline.expect │ │ │ │ ├── mixin_covariant.dart.weak.transformed.expect │ │ │ │ ├── mixin_covariant2.dart │ │ │ │ ├── mixin_covariant2.dart.strong.expect │ │ │ │ ├── mixin_covariant2.dart.strong.transformed.expect │ │ │ │ ├── mixin_covariant2.dart.textual_outline.expect │ │ │ │ ├── mixin_covariant2.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_covariant2.dart.weak.expect │ │ │ │ ├── mixin_covariant2.dart.weak.modular.expect │ │ │ │ ├── mixin_covariant2.dart.weak.outline.expect │ │ │ │ ├── mixin_covariant2.dart.weak.transformed.expect │ │ │ │ ├── mixin_from_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.strong.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.strong.transformed.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.textual_outline.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.weak.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.weak.modular.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.weak.outline.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field.dart.weak.transformed.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.strong.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.strong.transformed.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.textual_outline.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.weak.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.weak.modular.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.weak.outline.expect │ │ │ │ ├── mixin_inherited_setter_for_mixed_in_field2.dart.weak.transformed.expect │ │ │ │ ├── mixin_interface_conflict.dart │ │ │ │ ├── mixin_interface_conflict.dart.strong.expect │ │ │ │ ├── mixin_interface_conflict.dart.strong.transformed.expect │ │ │ │ ├── mixin_interface_conflict.dart.textual_outline.expect │ │ │ │ ├── mixin_interface_conflict.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_interface_conflict.dart.weak.expect │ │ │ │ ├── mixin_interface_conflict.dart.weak.modular.expect │ │ │ │ ├── mixin_interface_conflict.dart.weak.outline.expect │ │ │ │ ├── mixin_interface_conflict.dart.weak.transformed.expect │ │ │ │ ├── mixin_stubs.dart │ │ │ │ ├── mixin_stubs.dart.strong.expect │ │ │ │ ├── mixin_stubs.dart.strong.transformed.expect │ │ │ │ ├── mixin_stubs.dart.textual_outline.expect │ │ │ │ ├── mixin_stubs.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_stubs.dart.weak.expect │ │ │ │ ├── mixin_stubs.dart.weak.modular.expect │ │ │ │ ├── mixin_stubs.dart.weak.outline.expect │ │ │ │ ├── mixin_stubs.dart.weak.transformed.expect │ │ │ │ ├── mixin_super │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── mixin_super_repeated.dart │ │ │ │ ├── mixin_super_repeated.dart.strong.expect │ │ │ │ ├── mixin_super_repeated.dart.strong.transformed.expect │ │ │ │ ├── mixin_super_repeated.dart.textual_outline.expect │ │ │ │ ├── mixin_super_repeated.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_super_repeated.dart.weak.expect │ │ │ │ ├── mixin_super_repeated.dart.weak.modular.expect │ │ │ │ ├── mixin_super_repeated.dart.weak.outline.expect │ │ │ │ ├── mixin_super_repeated.dart.weak.transformed.expect │ │ │ │ ├── mixin_with_static_member.dart │ │ │ │ ├── mixin_with_static_member.dart.strong.expect │ │ │ │ ├── mixin_with_static_member.dart.strong.transformed.expect │ │ │ │ ├── mixin_with_static_member.dart.textual_outline.expect │ │ │ │ ├── mixin_with_static_member.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_with_static_member.dart.weak.expect │ │ │ │ ├── mixin_with_static_member.dart.weak.modular.expect │ │ │ │ ├── mixin_with_static_member.dart.weak.outline.expect │ │ │ │ ├── mixin_with_static_member.dart.weak.transformed.expect │ │ │ │ ├── multiple_abstract.dart │ │ │ │ ├── multiple_abstract.dart.strong.expect │ │ │ │ ├── multiple_abstract.dart.strong.transformed.expect │ │ │ │ ├── multiple_abstract.dart.textual_outline.expect │ │ │ │ ├── multiple_abstract.dart.textual_outline_modelled.expect │ │ │ │ ├── multiple_abstract.dart.weak.expect │ │ │ │ ├── multiple_abstract.dart.weak.modular.expect │ │ │ │ ├── multiple_abstract.dart.weak.outline.expect │ │ │ │ ├── multiple_abstract.dart.weak.transformed.expect │ │ │ │ ├── multiple_class_patches │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ ├── patch_lib1.dart │ │ │ │ │ └── patch_lib2.dart │ │ │ │ ├── named_function_scope.dart │ │ │ │ ├── named_function_scope.dart.strong.expect │ │ │ │ ├── named_function_scope.dart.strong.transformed.expect │ │ │ │ ├── named_function_scope.dart.textual_outline.expect │ │ │ │ ├── named_function_scope.dart.textual_outline_modelled.expect │ │ │ │ ├── named_function_scope.dart.weak.expect │ │ │ │ ├── named_function_scope.dart.weak.modular.expect │ │ │ │ ├── named_function_scope.dart.weak.outline.expect │ │ │ │ ├── named_function_scope.dart.weak.transformed.expect │ │ │ │ ├── named_parameters.dart │ │ │ │ ├── named_parameters.dart.strong.expect │ │ │ │ ├── named_parameters.dart.strong.transformed.expect │ │ │ │ ├── named_parameters.dart.textual_outline.expect │ │ │ │ ├── named_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── named_parameters.dart.weak.expect │ │ │ │ ├── named_parameters.dart.weak.modular.expect │ │ │ │ ├── named_parameters.dart.weak.outline.expect │ │ │ │ ├── named_parameters.dart.weak.transformed.expect │ │ │ │ ├── named_parameters_super_and_not.dart │ │ │ │ ├── named_parameters_super_and_not.dart.strong.expect │ │ │ │ ├── named_parameters_super_and_not.dart.strong.transformed.expect │ │ │ │ ├── named_parameters_super_and_not.dart.textual_outline.expect │ │ │ │ ├── named_parameters_super_and_not.dart.textual_outline_modelled.expect │ │ │ │ ├── named_parameters_super_and_not.dart.weak.expect │ │ │ │ ├── named_parameters_super_and_not.dart.weak.modular.expect │ │ │ │ ├── named_parameters_super_and_not.dart.weak.outline.expect │ │ │ │ ├── named_parameters_super_and_not.dart.weak.transformed.expect │ │ │ │ ├── native_as_name.dart │ │ │ │ ├── native_as_name.dart.strong.expect │ │ │ │ ├── native_as_name.dart.strong.transformed.expect │ │ │ │ ├── native_as_name.dart.textual_outline.expect │ │ │ │ ├── native_as_name.dart.textual_outline_modelled.expect │ │ │ │ ├── native_as_name.dart.weak.expect │ │ │ │ ├── native_as_name.dart.weak.modular.expect │ │ │ │ ├── native_as_name.dart.weak.outline.expect │ │ │ │ ├── native_as_name.dart.weak.transformed.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart │ │ │ │ ├── nested_implicit_const_with_env_var.dart.strong.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.strong.transformed.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.textual_outline.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.weak.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.weak.modular.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.weak.outline.expect │ │ │ │ ├── nested_implicit_const_with_env_var.dart.weak.transformed.expect │ │ │ │ ├── nested_lib_spec │ │ │ │ │ ├── common_lib.dart │ │ │ │ │ ├── extra_lib.dart │ │ │ │ │ ├── extra_libraries.json │ │ │ │ │ ├── extra_patch_lib.dart │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ ├── patch_lib.dart │ │ │ │ │ ├── sub2_lib.dart │ │ │ │ │ ├── subfolder │ │ │ │ │ │ ├── sub_lib.dart │ │ │ │ │ │ ├── sub_libraries.json │ │ │ │ │ │ └── super2_lib.dart │ │ │ │ │ ├── super1_lib.dart │ │ │ │ │ ├── super1_libraries.json │ │ │ │ │ └── super2_libraries.json │ │ │ │ ├── nested_property_set.dart │ │ │ │ ├── nested_property_set.dart.strong.expect │ │ │ │ ├── nested_property_set.dart.strong.transformed.expect │ │ │ │ ├── nested_property_set.dart.textual_outline.expect │ │ │ │ ├── nested_property_set.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_property_set.dart.weak.expect │ │ │ │ ├── nested_property_set.dart.weak.modular.expect │ │ │ │ ├── nested_property_set.dart.weak.outline.expect │ │ │ │ ├── nested_property_set.dart.weak.transformed.expect │ │ │ │ ├── nested_variable_set.dart │ │ │ │ ├── nested_variable_set.dart.strong.expect │ │ │ │ ├── nested_variable_set.dart.strong.transformed.expect │ │ │ │ ├── nested_variable_set.dart.textual_outline.expect │ │ │ │ ├── nested_variable_set.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_variable_set.dart.weak.expect │ │ │ │ ├── nested_variable_set.dart.weak.modular.expect │ │ │ │ ├── nested_variable_set.dart.weak.outline.expect │ │ │ │ ├── nested_variable_set.dart.weak.transformed.expect │ │ │ │ ├── nested_variance.dart │ │ │ │ ├── nested_variance.dart.strong.expect │ │ │ │ ├── nested_variance.dart.strong.transformed.expect │ │ │ │ ├── nested_variance.dart.textual_outline.expect │ │ │ │ ├── nested_variance.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_variance.dart.weak.expect │ │ │ │ ├── nested_variance.dart.weak.modular.expect │ │ │ │ ├── nested_variance.dart.weak.outline.expect │ │ │ │ ├── nested_variance.dart.weak.transformed.expect │ │ │ │ ├── nested_variance2.dart │ │ │ │ ├── nested_variance2.dart.strong.expect │ │ │ │ ├── nested_variance2.dart.strong.transformed.expect │ │ │ │ ├── nested_variance2.dart.textual_outline.expect │ │ │ │ ├── nested_variance2.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_variance2.dart.weak.expect │ │ │ │ ├── nested_variance2.dart.weak.modular.expect │ │ │ │ ├── nested_variance2.dart.weak.outline.expect │ │ │ │ ├── nested_variance2.dart.weak.transformed.expect │ │ │ │ ├── new_as_selector.dart │ │ │ │ ├── new_as_selector.dart.strong.expect │ │ │ │ ├── new_as_selector.dart.strong.transformed.expect │ │ │ │ ├── new_as_selector.dart.textual_outline.expect │ │ │ │ ├── new_as_selector.dart.weak.expect │ │ │ │ ├── new_as_selector.dart.weak.modular.expect │ │ │ │ ├── new_as_selector.dart.weak.outline.expect │ │ │ │ ├── new_as_selector.dart.weak.transformed.expect │ │ │ │ ├── no_such_method_forwarder.dart │ │ │ │ ├── no_such_method_forwarder.dart.strong.expect │ │ │ │ ├── no_such_method_forwarder.dart.strong.transformed.expect │ │ │ │ ├── no_such_method_forwarder.dart.textual_outline.expect │ │ │ │ ├── no_such_method_forwarder.dart.textual_outline_modelled.expect │ │ │ │ ├── no_such_method_forwarder.dart.weak.expect │ │ │ │ ├── no_such_method_forwarder.dart.weak.modular.expect │ │ │ │ ├── no_such_method_forwarder.dart.weak.outline.expect │ │ │ │ ├── no_such_method_forwarder.dart.weak.transformed.expect │ │ │ │ ├── no_such_method_private_setter.dart │ │ │ │ ├── no_such_method_private_setter.dart.strong.expect │ │ │ │ ├── no_such_method_private_setter.dart.strong.transformed.expect │ │ │ │ ├── no_such_method_private_setter.dart.textual_outline.expect │ │ │ │ ├── no_such_method_private_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── no_such_method_private_setter.dart.weak.expect │ │ │ │ ├── no_such_method_private_setter.dart.weak.modular.expect │ │ │ │ ├── no_such_method_private_setter.dart.weak.outline.expect │ │ │ │ ├── no_such_method_private_setter.dart.weak.transformed.expect │ │ │ │ ├── no_such_method_private_setter_lib.dart │ │ │ │ ├── non_covariant_checks.dart │ │ │ │ ├── non_covariant_checks.dart.strong.expect │ │ │ │ ├── non_covariant_checks.dart.strong.transformed.expect │ │ │ │ ├── non_covariant_checks.dart.textual_outline.expect │ │ │ │ ├── non_covariant_checks.dart.textual_outline_modelled.expect │ │ │ │ ├── non_covariant_checks.dart.weak.expect │ │ │ │ ├── non_covariant_checks.dart.weak.modular.expect │ │ │ │ ├── non_covariant_checks.dart.weak.outline.expect │ │ │ │ ├── non_covariant_checks.dart.weak.transformed.expect │ │ │ │ ├── nsm_covariance.dart │ │ │ │ ├── nsm_covariance.dart.strong.expect │ │ │ │ ├── nsm_covariance.dart.strong.transformed.expect │ │ │ │ ├── nsm_covariance.dart.textual_outline.expect │ │ │ │ ├── nsm_covariance.dart.textual_outline_modelled.expect │ │ │ │ ├── nsm_covariance.dart.weak.expect │ │ │ │ ├── nsm_covariance.dart.weak.modular.expect │ │ │ │ ├── nsm_covariance.dart.weak.outline.expect │ │ │ │ ├── nsm_covariance.dart.weak.transformed.expect │ │ │ │ ├── nsm_covariance_lib.dart │ │ │ │ ├── null_aware.dart │ │ │ │ ├── null_aware.dart.strong.expect │ │ │ │ ├── null_aware.dart.strong.transformed.expect │ │ │ │ ├── null_aware.dart.textual_outline.expect │ │ │ │ ├── null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware.dart.weak.expect │ │ │ │ ├── null_aware.dart.weak.modular.expect │ │ │ │ ├── null_aware.dart.weak.outline.expect │ │ │ │ ├── null_aware.dart.weak.transformed.expect │ │ │ │ ├── null_aware2.dart │ │ │ │ ├── null_aware2.dart.strong.expect │ │ │ │ ├── null_aware2.dart.strong.transformed.expect │ │ │ │ ├── null_aware2.dart.textual_outline.expect │ │ │ │ ├── null_aware2.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware2.dart.weak.expect │ │ │ │ ├── null_aware2.dart.weak.modular.expect │ │ │ │ ├── null_aware2.dart.weak.outline.expect │ │ │ │ ├── null_aware2.dart.weak.transformed.expect │ │ │ │ ├── null_aware_for_in.dart │ │ │ │ ├── null_aware_for_in.dart.strong.expect │ │ │ │ ├── null_aware_for_in.dart.strong.transformed.expect │ │ │ │ ├── null_aware_for_in.dart.textual_outline.expect │ │ │ │ ├── null_aware_for_in.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_for_in.dart.weak.expect │ │ │ │ ├── null_aware_for_in.dart.weak.modular.expect │ │ │ │ ├── null_aware_for_in.dart.weak.outline.expect │ │ │ │ ├── null_aware_for_in.dart.weak.transformed.expect │ │ │ │ ├── null_aware_postfix.dart │ │ │ │ ├── null_aware_postfix.dart.strong.expect │ │ │ │ ├── null_aware_postfix.dart.strong.transformed.expect │ │ │ │ ├── null_aware_postfix.dart.textual_outline.expect │ │ │ │ ├── null_aware_postfix.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_postfix.dart.weak.expect │ │ │ │ ├── null_aware_postfix.dart.weak.modular.expect │ │ │ │ ├── null_aware_postfix.dart.weak.outline.expect │ │ │ │ ├── null_aware_postfix.dart.weak.transformed.expect │ │ │ │ ├── null_aware_postfix2.dart │ │ │ │ ├── null_aware_postfix2.dart.strong.expect │ │ │ │ ├── null_aware_postfix2.dart.strong.transformed.expect │ │ │ │ ├── null_aware_postfix2.dart.textual_outline.expect │ │ │ │ ├── null_aware_postfix2.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_postfix2.dart.weak.expect │ │ │ │ ├── null_aware_postfix2.dart.weak.modular.expect │ │ │ │ ├── null_aware_postfix2.dart.weak.outline.expect │ │ │ │ ├── null_aware_postfix2.dart.weak.transformed.expect │ │ │ │ ├── null_aware_spread.dart │ │ │ │ ├── null_aware_spread.dart.strong.expect │ │ │ │ ├── null_aware_spread.dart.strong.transformed.expect │ │ │ │ ├── null_aware_spread.dart.textual_outline.expect │ │ │ │ ├── null_aware_spread.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_spread.dart.weak.expect │ │ │ │ ├── null_aware_spread.dart.weak.modular.expect │ │ │ │ ├── null_aware_spread.dart.weak.outline.expect │ │ │ │ ├── null_aware_spread.dart.weak.transformed.expect │ │ │ │ ├── null_aware_spread2.dart │ │ │ │ ├── null_aware_spread2.dart.strong.expect │ │ │ │ ├── null_aware_spread2.dart.strong.transformed.expect │ │ │ │ ├── null_aware_spread2.dart.textual_outline.expect │ │ │ │ ├── null_aware_spread2.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_spread2.dart.weak.expect │ │ │ │ ├── null_aware_spread2.dart.weak.modular.expect │ │ │ │ ├── null_aware_spread2.dart.weak.outline.expect │ │ │ │ ├── null_aware_spread2.dart.weak.transformed.expect │ │ │ │ ├── null_aware_super.dart │ │ │ │ ├── null_aware_super.dart.strong.expect │ │ │ │ ├── null_aware_super.dart.strong.transformed.expect │ │ │ │ ├── null_aware_super.dart.textual_outline.expect │ │ │ │ ├── null_aware_super.dart.weak.expect │ │ │ │ ├── null_aware_super.dart.weak.modular.expect │ │ │ │ ├── null_aware_super.dart.weak.outline.expect │ │ │ │ ├── null_aware_super.dart.weak.transformed.expect │ │ │ │ ├── null_check_type_variable_type.dart │ │ │ │ ├── null_check_type_variable_type.dart.strong.expect │ │ │ │ ├── null_check_type_variable_type.dart.strong.transformed.expect │ │ │ │ ├── null_check_type_variable_type.dart.textual_outline.expect │ │ │ │ ├── null_check_type_variable_type.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_type_variable_type.dart.weak.expect │ │ │ │ ├── null_check_type_variable_type.dart.weak.modular.expect │ │ │ │ ├── null_check_type_variable_type.dart.weak.outline.expect │ │ │ │ ├── null_check_type_variable_type.dart.weak.transformed.expect │ │ │ │ ├── null_safety_invalid_experiment.dart │ │ │ │ ├── null_safety_invalid_experiment.dart.strong.expect │ │ │ │ ├── null_safety_invalid_experiment.dart.strong.transformed.expect │ │ │ │ ├── null_safety_invalid_experiment.dart.textual_outline.expect │ │ │ │ ├── null_safety_invalid_experiment.dart.weak.expect │ │ │ │ ├── null_safety_invalid_experiment.dart.weak.modular.expect │ │ │ │ ├── null_safety_invalid_experiment.dart.weak.outline.expect │ │ │ │ ├── null_safety_invalid_experiment.dart.weak.transformed.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.strong.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.strong.transformed.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.textual_outline.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.weak.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.weak.modular.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.weak.outline.expect │ │ │ │ ├── null_safety_invalid_experiment_and_language_version.dart.weak.transformed.expect │ │ │ │ ├── omitted_break.dart │ │ │ │ ├── omitted_break.dart.strong.expect │ │ │ │ ├── omitted_break.dart.strong.transformed.expect │ │ │ │ ├── omitted_break.dart.textual_outline.expect │ │ │ │ ├── omitted_break.dart.textual_outline_modelled.expect │ │ │ │ ├── omitted_break.dart.weak.expect │ │ │ │ ├── omitted_break.dart.weak.modular.expect │ │ │ │ ├── omitted_break.dart.weak.outline.expect │ │ │ │ ├── omitted_break.dart.weak.transformed.expect │ │ │ │ ├── operator_method_not_found.dart │ │ │ │ ├── operator_method_not_found.dart.strong.expect │ │ │ │ ├── operator_method_not_found.dart.strong.transformed.expect │ │ │ │ ├── operator_method_not_found.dart.textual_outline.expect │ │ │ │ ├── operator_method_not_found.dart.textual_outline_modelled.expect │ │ │ │ ├── operator_method_not_found.dart.weak.expect │ │ │ │ ├── operator_method_not_found.dart.weak.modular.expect │ │ │ │ ├── operator_method_not_found.dart.weak.outline.expect │ │ │ │ ├── operator_method_not_found.dart.weak.transformed.expect │ │ │ │ ├── operators.dart │ │ │ │ ├── operators.dart.strong.expect │ │ │ │ ├── operators.dart.strong.transformed.expect │ │ │ │ ├── operators.dart.textual_outline.expect │ │ │ │ ├── operators.dart.textual_outline_modelled.expect │ │ │ │ ├── operators.dart.weak.expect │ │ │ │ ├── operators.dart.weak.modular.expect │ │ │ │ ├── operators.dart.weak.outline.expect │ │ │ │ ├── operators.dart.weak.transformed.expect │ │ │ │ ├── opt_out_by_package │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ └── opt_out │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── opt_out_lib.dart │ │ │ │ ├── optional.dart │ │ │ │ ├── optional.dart.strong.expect │ │ │ │ ├── optional.dart.strong.transformed.expect │ │ │ │ ├── optional.dart.textual_outline.expect │ │ │ │ ├── optional.dart.textual_outline_modelled.expect │ │ │ │ ├── optional.dart.weak.expect │ │ │ │ ├── optional.dart.weak.modular.expect │ │ │ │ ├── optional.dart.weak.outline.expect │ │ │ │ ├── optional.dart.weak.transformed.expect │ │ │ │ ├── override.dart │ │ │ │ ├── override.dart.strong.expect │ │ │ │ ├── override.dart.strong.transformed.expect │ │ │ │ ├── override.dart.textual_outline.expect │ │ │ │ ├── override.dart.textual_outline_modelled.expect │ │ │ │ ├── override.dart.weak.expect │ │ │ │ ├── override.dart.weak.modular.expect │ │ │ │ ├── override.dart.weak.outline.expect │ │ │ │ ├── override.dart.weak.transformed.expect │ │ │ │ ├── override_check_accessor_after_inference.dart │ │ │ │ ├── override_check_accessor_after_inference.dart.strong.expect │ │ │ │ ├── override_check_accessor_after_inference.dart.textual_outline.expect │ │ │ │ ├── override_check_accessor_after_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_accessor_after_inference.dart.weak.expect │ │ │ │ ├── override_check_accessor_after_inference.dart.weak.modular.expect │ │ │ │ ├── override_check_accessor_after_inference.dart.weak.outline.expect │ │ │ │ ├── override_check_accessor_basic.dart │ │ │ │ ├── override_check_accessor_basic.dart.strong.expect │ │ │ │ ├── override_check_accessor_basic.dart.textual_outline.expect │ │ │ │ ├── override_check_accessor_basic.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_accessor_basic.dart.weak.expect │ │ │ │ ├── override_check_accessor_basic.dart.weak.modular.expect │ │ │ │ ├── override_check_accessor_basic.dart.weak.outline.expect │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart.strong.expect │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart.textual_outline.expect │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart.weak.expect │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart.weak.modular.expect │ │ │ │ ├── override_check_accessor_with_covariant_modifier.dart.weak.outline.expect │ │ │ │ ├── override_check_after_inference.dart │ │ │ │ ├── override_check_after_inference.dart.strong.expect │ │ │ │ ├── override_check_after_inference.dart.textual_outline.expect │ │ │ │ ├── override_check_after_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_after_inference.dart.weak.expect │ │ │ │ ├── override_check_after_inference.dart.weak.modular.expect │ │ │ │ ├── override_check_after_inference.dart.weak.outline.expect │ │ │ │ ├── override_check_basic.dart │ │ │ │ ├── override_check_basic.dart.strong.expect │ │ │ │ ├── override_check_basic.dart.textual_outline.expect │ │ │ │ ├── override_check_basic.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_basic.dart.weak.expect │ │ │ │ ├── override_check_basic.dart.weak.modular.expect │ │ │ │ ├── override_check_basic.dart.weak.outline.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart │ │ │ │ ├── override_check_generic_method_f_bounded.dart.strong.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.strong.transformed.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.textual_outline.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.weak.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.weak.modular.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.weak.outline.expect │ │ │ │ ├── override_check_generic_method_f_bounded.dart.weak.transformed.expect │ │ │ │ ├── override_check_two_substitutions.dart │ │ │ │ ├── override_check_two_substitutions.dart.strong.expect │ │ │ │ ├── override_check_two_substitutions.dart.strong.transformed.expect │ │ │ │ ├── override_check_two_substitutions.dart.textual_outline.expect │ │ │ │ ├── override_check_two_substitutions.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_two_substitutions.dart.weak.expect │ │ │ │ ├── override_check_two_substitutions.dart.weak.modular.expect │ │ │ │ ├── override_check_two_substitutions.dart.weak.outline.expect │ │ │ │ ├── override_check_two_substitutions.dart.weak.transformed.expect │ │ │ │ ├── override_check_with_covariant_modifier.dart │ │ │ │ ├── override_check_with_covariant_modifier.dart.strong.expect │ │ │ │ ├── override_check_with_covariant_modifier.dart.textual_outline.expect │ │ │ │ ├── override_check_with_covariant_modifier.dart.textual_outline_modelled.expect │ │ │ │ ├── override_check_with_covariant_modifier.dart.weak.expect │ │ │ │ ├── override_check_with_covariant_modifier.dart.weak.modular.expect │ │ │ │ ├── override_check_with_covariant_modifier.dart.weak.outline.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart │ │ │ │ ├── override_inference_for_getters_and_setters.dart.strong.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.strong.transformed.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.textual_outline.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.textual_outline_modelled.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.weak.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.weak.modular.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.weak.outline.expect │ │ │ │ ├── override_inference_for_getters_and_setters.dart.weak.transformed.expect │ │ │ │ ├── override_inference_for_setters.dart │ │ │ │ ├── override_inference_for_setters.dart.strong.expect │ │ │ │ ├── override_inference_for_setters.dart.strong.transformed.expect │ │ │ │ ├── override_inference_for_setters.dart.textual_outline.expect │ │ │ │ ├── override_inference_for_setters.dart.textual_outline_modelled.expect │ │ │ │ ├── override_inference_for_setters.dart.weak.expect │ │ │ │ ├── override_inference_for_setters.dart.weak.modular.expect │ │ │ │ ├── override_inference_for_setters.dart.weak.outline.expect │ │ │ │ ├── override_inference_for_setters.dart.weak.transformed.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart │ │ │ │ ├── override_inference_named_parameters_ordering.dart.strong.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.strong.transformed.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.textual_outline.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.textual_outline_modelled.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.weak.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.weak.modular.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.weak.outline.expect │ │ │ │ ├── override_inference_named_parameters_ordering.dart.weak.transformed.expect │ │ │ │ ├── override_setter_with_field.dart │ │ │ │ ├── override_setter_with_field.dart.strong.expect │ │ │ │ ├── override_setter_with_field.dart.textual_outline.expect │ │ │ │ ├── override_setter_with_field.dart.textual_outline_modelled.expect │ │ │ │ ├── override_setter_with_field.dart.weak.expect │ │ │ │ ├── override_setter_with_field.dart.weak.modular.expect │ │ │ │ ├── override_setter_with_field.dart.weak.outline.expect │ │ │ │ ├── part_as_entry_point.dart │ │ │ │ ├── part_as_entry_point.dart.strong.expect │ │ │ │ ├── part_as_entry_point.dart.strong.transformed.expect │ │ │ │ ├── part_as_entry_point.dart.textual_outline.expect │ │ │ │ ├── part_as_entry_point.dart.textual_outline_modelled.expect │ │ │ │ ├── part_as_entry_point.dart.weak.expect │ │ │ │ ├── part_as_entry_point.dart.weak.modular.expect │ │ │ │ ├── part_as_entry_point.dart.weak.outline.expect │ │ │ │ ├── part_as_entry_point.dart.weak.transformed.expect │ │ │ │ ├── part_as_entry_point_lib.dart │ │ │ │ ├── part_not_part_of.dart │ │ │ │ ├── part_not_part_of.dart.strong.expect │ │ │ │ ├── part_not_part_of.dart.strong.transformed.expect │ │ │ │ ├── part_not_part_of.dart.textual_outline.expect │ │ │ │ ├── part_not_part_of.dart.textual_outline_modelled.expect │ │ │ │ ├── part_not_part_of.dart.weak.expect │ │ │ │ ├── part_not_part_of.dart.weak.modular.expect │ │ │ │ ├── part_not_part_of.dart.weak.outline.expect │ │ │ │ ├── part_not_part_of.dart.weak.transformed.expect │ │ │ │ ├── part_not_part_of_lib1.dart │ │ │ │ ├── part_not_part_of_lib2.dart │ │ │ │ ├── part_not_part_of_same_named_library.dart │ │ │ │ ├── part_not_part_of_same_named_library.dart.strong.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.strong.transformed.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.textual_outline.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.textual_outline_modelled.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.weak.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.weak.modular.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.weak.outline.expect │ │ │ │ ├── part_not_part_of_same_named_library.dart.weak.transformed.expect │ │ │ │ ├── part_not_part_of_same_named_library_lib1.dart │ │ │ │ ├── part_not_part_of_same_named_library_lib2.dart │ │ │ │ ├── part_part_of_different_unnamed_library.dart │ │ │ │ ├── part_part_of_different_unnamed_library.dart.strong.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.strong.transformed.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.textual_outline.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.textual_outline_modelled.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.weak.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.weak.modular.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.weak.outline.expect │ │ │ │ ├── part_part_of_different_unnamed_library.dart.weak.transformed.expect │ │ │ │ ├── part_part_of_different_unnamed_library_lib1.dart │ │ │ │ ├── part_part_of_different_unnamed_library_lib2.dart │ │ │ │ ├── part_part_of_differently_named_library.dart │ │ │ │ ├── part_part_of_differently_named_library.dart.strong.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.strong.transformed.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.textual_outline.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.textual_outline_modelled.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.weak.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.weak.modular.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.weak.outline.expect │ │ │ │ ├── part_part_of_differently_named_library.dart.weak.transformed.expect │ │ │ │ ├── part_part_of_differently_named_library_lib1.dart │ │ │ │ ├── part_part_of_differently_named_library_lib2.dart │ │ │ │ ├── patch_extends_implements │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── platform.dart │ │ │ │ ├── platform.dart.strong.expect │ │ │ │ ├── platform.dart.strong.transformed.expect │ │ │ │ ├── platform.dart.textual_outline.expect │ │ │ │ ├── platform.dart.textual_outline_modelled.expect │ │ │ │ ├── platform.dart.weak.expect │ │ │ │ ├── platform.dart.weak.modular.expect │ │ │ │ ├── platform.dart.weak.outline.expect │ │ │ │ ├── platform.dart.weak.transformed.expect │ │ │ │ ├── platform_invalid_uris │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── prefer_baseclass.dart │ │ │ │ ├── prefer_baseclass.dart.strong.expect │ │ │ │ ├── prefer_baseclass.dart.strong.transformed.expect │ │ │ │ ├── prefer_baseclass.dart.textual_outline.expect │ │ │ │ ├── prefer_baseclass.dart.textual_outline_modelled.expect │ │ │ │ ├── prefer_baseclass.dart.weak.expect │ │ │ │ ├── prefer_baseclass.dart.weak.modular.expect │ │ │ │ ├── prefer_baseclass.dart.weak.outline.expect │ │ │ │ ├── prefer_baseclass.dart.weak.transformed.expect │ │ │ │ ├── private_member_access.dart │ │ │ │ ├── private_member_access.dart.strong.expect │ │ │ │ ├── private_member_access.dart.strong.transformed.expect │ │ │ │ ├── private_member_access.dart.textual_outline.expect │ │ │ │ ├── private_member_access.dart.textual_outline_modelled.expect │ │ │ │ ├── private_member_access.dart.weak.expect │ │ │ │ ├── private_member_access.dart.weak.modular.expect │ │ │ │ ├── private_member_access.dart.weak.outline.expect │ │ │ │ ├── private_member_access.dart.weak.transformed.expect │ │ │ │ ├── private_member_access_lib.dart │ │ │ │ ├── private_members.dart │ │ │ │ ├── private_members.dart.strong.expect │ │ │ │ ├── private_members.dart.strong.transformed.expect │ │ │ │ ├── private_members.dart.textual_outline.expect │ │ │ │ ├── private_members.dart.textual_outline_modelled.expect │ │ │ │ ├── private_members.dart.weak.expect │ │ │ │ ├── private_members.dart.weak.modular.expect │ │ │ │ ├── private_members.dart.weak.outline.expect │ │ │ │ ├── private_members.dart.weak.transformed.expect │ │ │ │ ├── private_members_part.dart │ │ │ │ ├── private_method_tearoff.dart │ │ │ │ ├── private_method_tearoff.dart.strong.expect │ │ │ │ ├── private_method_tearoff.dart.strong.transformed.expect │ │ │ │ ├── private_method_tearoff.dart.textual_outline.expect │ │ │ │ ├── private_method_tearoff.dart.textual_outline_modelled.expect │ │ │ │ ├── private_method_tearoff.dart.weak.expect │ │ │ │ ├── private_method_tearoff.dart.weak.modular.expect │ │ │ │ ├── private_method_tearoff.dart.weak.outline.expect │ │ │ │ ├── private_method_tearoff.dart.weak.transformed.expect │ │ │ │ ├── private_method_tearoff_lib.dart │ │ │ │ ├── promoted_access.dart │ │ │ │ ├── promoted_access.dart.strong.expect │ │ │ │ ├── promoted_access.dart.strong.transformed.expect │ │ │ │ ├── promoted_access.dart.textual_outline.expect │ │ │ │ ├── promoted_access.dart.textual_outline_modelled.expect │ │ │ │ ├── promoted_access.dart.weak.expect │ │ │ │ ├── promoted_access.dart.weak.modular.expect │ │ │ │ ├── promoted_access.dart.weak.outline.expect │ │ │ │ ├── promoted_access.dart.weak.transformed.expect │ │ │ │ ├── promoted_null_aware_access.dart │ │ │ │ ├── promoted_null_aware_access.dart.strong.expect │ │ │ │ ├── promoted_null_aware_access.dart.strong.transformed.expect │ │ │ │ ├── promoted_null_aware_access.dart.textual_outline.expect │ │ │ │ ├── promoted_null_aware_access.dart.textual_outline_modelled.expect │ │ │ │ ├── promoted_null_aware_access.dart.weak.expect │ │ │ │ ├── promoted_null_aware_access.dart.weak.modular.expect │ │ │ │ ├── promoted_null_aware_access.dart.weak.outline.expect │ │ │ │ ├── promoted_null_aware_access.dart.weak.transformed.expect │ │ │ │ ├── public_method_tearoff.dart │ │ │ │ ├── public_method_tearoff.dart.strong.expect │ │ │ │ ├── public_method_tearoff.dart.strong.transformed.expect │ │ │ │ ├── public_method_tearoff.dart.textual_outline.expect │ │ │ │ ├── public_method_tearoff.dart.textual_outline_modelled.expect │ │ │ │ ├── public_method_tearoff.dart.weak.expect │ │ │ │ ├── public_method_tearoff.dart.weak.modular.expect │ │ │ │ ├── public_method_tearoff.dart.weak.outline.expect │ │ │ │ ├── public_method_tearoff.dart.weak.transformed.expect │ │ │ │ ├── public_method_tearoff_lib.dart │ │ │ │ ├── pure_index_expressions.dart │ │ │ │ ├── pure_index_expressions.dart.strong.expect │ │ │ │ ├── pure_index_expressions.dart.strong.transformed.expect │ │ │ │ ├── pure_index_expressions.dart.textual_outline.expect │ │ │ │ ├── pure_index_expressions.dart.textual_outline_modelled.expect │ │ │ │ ├── pure_index_expressions.dart.weak.expect │ │ │ │ ├── pure_index_expressions.dart.weak.modular.expect │ │ │ │ ├── pure_index_expressions.dart.weak.outline.expect │ │ │ │ ├── pure_index_expressions.dart.weak.transformed.expect │ │ │ │ ├── qualified.dart │ │ │ │ ├── qualified.dart.strong.expect │ │ │ │ ├── qualified.dart.strong.transformed.expect │ │ │ │ ├── qualified.dart.textual_outline.expect │ │ │ │ ├── qualified.dart.textual_outline_modelled.expect │ │ │ │ ├── qualified.dart.weak.expect │ │ │ │ ├── qualified.dart.weak.modular.expect │ │ │ │ ├── qualified.dart.weak.outline.expect │ │ │ │ ├── qualified.dart.weak.transformed.expect │ │ │ │ ├── qualified_lib.dart │ │ │ │ ├── qualified_part.dart │ │ │ │ ├── records.dart │ │ │ │ ├── records.dart.strong.expect │ │ │ │ ├── records.dart.strong.transformed.expect │ │ │ │ ├── records.dart.textual_outline.expect │ │ │ │ ├── records.dart.textual_outline_modelled.expect │ │ │ │ ├── records.dart.weak.expect │ │ │ │ ├── records.dart.weak.modular.expect │ │ │ │ ├── records.dart.weak.outline.expect │ │ │ │ ├── records.dart.weak.transformed.expect │ │ │ │ ├── records_opt_out.dart │ │ │ │ ├── records_opt_out.dart.strong.expect │ │ │ │ ├── records_opt_out.dart.strong.transformed.expect │ │ │ │ ├── records_opt_out.dart.textual_outline.expect │ │ │ │ ├── records_opt_out.dart.weak.expect │ │ │ │ ├── records_opt_out.dart.weak.modular.expect │ │ │ │ ├── records_opt_out.dart.weak.outline.expect │ │ │ │ ├── records_opt_out.dart.weak.transformed.expect │ │ │ │ ├── redirect_generic.dart │ │ │ │ ├── redirect_generic.dart.strong.expect │ │ │ │ ├── redirect_generic.dart.strong.transformed.expect │ │ │ │ ├── redirect_generic.dart.textual_outline.expect │ │ │ │ ├── redirect_generic.dart.textual_outline_modelled.expect │ │ │ │ ├── redirect_generic.dart.weak.expect │ │ │ │ ├── redirect_generic.dart.weak.modular.expect │ │ │ │ ├── redirect_generic.dart.weak.outline.expect │ │ │ │ ├── redirect_generic.dart.weak.transformed.expect │ │ │ │ ├── redirecting_constructor.dart │ │ │ │ ├── redirecting_constructor.dart.strong.expect │ │ │ │ ├── redirecting_constructor.dart.strong.transformed.expect │ │ │ │ ├── redirecting_constructor.dart.textual_outline.expect │ │ │ │ ├── redirecting_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_constructor.dart.weak.expect │ │ │ │ ├── redirecting_constructor.dart.weak.modular.expect │ │ │ │ ├── redirecting_constructor.dart.weak.outline.expect │ │ │ │ ├── redirecting_constructor.dart.weak.transformed.expect │ │ │ │ ├── redirecting_default_values.dart │ │ │ │ ├── redirecting_default_values.dart.strong.expect │ │ │ │ ├── redirecting_default_values.dart.strong.transformed.expect │ │ │ │ ├── redirecting_default_values.dart.textual_outline.expect │ │ │ │ ├── redirecting_default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_default_values.dart.weak.expect │ │ │ │ ├── redirecting_default_values.dart.weak.modular.expect │ │ │ │ ├── redirecting_default_values.dart.weak.outline.expect │ │ │ │ ├── redirecting_default_values.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory.dart │ │ │ │ ├── redirecting_factory.dart.strong.expect │ │ │ │ ├── redirecting_factory.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory.dart.weak.expect │ │ │ │ ├── redirecting_factory.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_chain_test.dart │ │ │ │ ├── redirecting_factory_chain_test.dart.strong.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.weak.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_chain_test.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_const_inference.dart │ │ │ │ ├── redirecting_factory_const_inference.dart.strong.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.weak.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_const_inference.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_default_value.dart │ │ │ │ ├── redirecting_factory_default_value.dart.strong.expect │ │ │ │ ├── redirecting_factory_default_value.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_default_value.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_default_value.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_default_value.dart.weak.expect │ │ │ │ ├── redirecting_factory_default_value.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_default_value.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_default_value.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.strong.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.weak.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_invocation_in_invalid.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.strong.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.weak.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_invocation_metadata.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_invocation_metadata_lib.dart │ │ │ │ ├── redirecting_factory_metadata.dart │ │ │ │ ├── redirecting_factory_metadata.dart.strong.expect │ │ │ │ ├── redirecting_factory_metadata.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_metadata.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_metadata.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_metadata.dart.weak.expect │ │ │ │ ├── redirecting_factory_metadata.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_metadata.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_metadata.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_simple_test.dart │ │ │ │ ├── redirecting_factory_simple_test.dart.strong.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.weak.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_simple_test.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart │ │ │ │ ├── redirecting_factory_typeargs_test.dart.strong.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.weak.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_typeargs_test.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart │ │ │ │ ├── redirecting_factory_typeparam_test.dart.strong.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.weak.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_typeparam_test.dart.weak.transformed.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.strong.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.weak.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_factory_typeparambounds_test.dart.weak.transformed.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.strong.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.strong.transformed.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.textual_outline.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.weak.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.weak.modular.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.weak.outline.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable2.dart.weak.transformed.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.strong.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.weak.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_initializer_arguments_assignable_test.dart.weak.transformed.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart │ │ │ │ ├── redirecting_initializer_arguments_test.dart.strong.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.strong.transformed.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.textual_outline.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.weak.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.weak.modular.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.weak.outline.expect │ │ │ │ ├── redirecting_initializer_arguments_test.dart.weak.transformed.expect │ │ │ │ ├── redirection_chain_type_arguments.dart │ │ │ │ ├── redirection_chain_type_arguments.dart.strong.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.textual_outline.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.weak.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.weak.modular.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.weak.outline.expect │ │ │ │ ├── redirection_chain_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.strong.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.strong.transformed.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.textual_outline.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.textual_outline_modelled.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.weak.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.weak.modular.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.weak.outline.expect │ │ │ │ ├── redirection_chain_type_arguments_subst.dart.weak.transformed.expect │ │ │ │ ├── redirection_type_arguments.dart │ │ │ │ ├── redirection_type_arguments.dart.strong.expect │ │ │ │ ├── redirection_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── redirection_type_arguments.dart.textual_outline.expect │ │ │ │ ├── redirection_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── redirection_type_arguments.dart.weak.expect │ │ │ │ ├── redirection_type_arguments.dart.weak.modular.expect │ │ │ │ ├── redirection_type_arguments.dart.weak.outline.expect │ │ │ │ ├── redirection_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── regression_flutter51828.dart │ │ │ │ ├── regression_flutter51828.dart.strong.expect │ │ │ │ ├── regression_flutter51828.dart.strong.transformed.expect │ │ │ │ ├── regression_flutter51828.dart.textual_outline.expect │ │ │ │ ├── regression_flutter51828.dart.textual_outline_modelled.expect │ │ │ │ ├── regression_flutter51828.dart.weak.expect │ │ │ │ ├── regression_flutter51828.dart.weak.modular.expect │ │ │ │ ├── regression_flutter51828.dart.weak.outline.expect │ │ │ │ ├── regression_flutter51828.dart.weak.transformed.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.strong.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.strong.transformed.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.textual_outline.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.weak.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.weak.modular.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.weak.outline.expect │ │ │ │ ├── reject_generic_function_types_in_bounds.dart.weak.transformed.expect │ │ │ │ ├── return_async_promoted.dart │ │ │ │ ├── return_async_promoted.dart.strong.expect │ │ │ │ ├── return_async_promoted.dart.strong.transformed.expect │ │ │ │ ├── return_async_promoted.dart.textual_outline.expect │ │ │ │ ├── return_async_promoted.dart.textual_outline_modelled.expect │ │ │ │ ├── return_async_promoted.dart.weak.expect │ │ │ │ ├── return_async_promoted.dart.weak.modular.expect │ │ │ │ ├── return_async_promoted.dart.weak.outline.expect │ │ │ │ ├── return_async_promoted.dart.weak.transformed.expect │ │ │ │ ├── return_async_promoted_lib.dart │ │ │ │ ├── return_with_unknown_type_in_context.dart │ │ │ │ ├── return_with_unknown_type_in_context.dart.strong.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.strong.transformed.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.textual_outline.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.textual_outline_modelled.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.weak.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.weak.modular.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.weak.outline.expect │ │ │ │ ├── return_with_unknown_type_in_context.dart.weak.transformed.expect │ │ │ │ ├── sdk_diagnostic.dart │ │ │ │ ├── sdk_diagnostic.dart.strong.expect │ │ │ │ ├── sdk_diagnostic.dart.strong.transformed.expect │ │ │ │ ├── sdk_diagnostic.dart.textual_outline.expect │ │ │ │ ├── sdk_diagnostic.dart.textual_outline_modelled.expect │ │ │ │ ├── sdk_diagnostic.dart.weak.expect │ │ │ │ ├── sdk_diagnostic.dart.weak.modular.expect │ │ │ │ ├── sdk_diagnostic.dart.weak.outline.expect │ │ │ │ ├── sdk_diagnostic.dart.weak.transformed.expect │ │ │ │ ├── sealed_class_declaration.dart │ │ │ │ ├── sealed_class_declaration.dart.strong.expect │ │ │ │ ├── sealed_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── sealed_class_declaration.dart.textual_outline.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.modular.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.outline.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── setter_access.dart │ │ │ │ ├── setter_access.dart.strong.expect │ │ │ │ ├── setter_access.dart.strong.transformed.expect │ │ │ │ ├── setter_access.dart.textual_outline.expect │ │ │ │ ├── setter_access.dart.textual_outline_modelled.expect │ │ │ │ ├── setter_access.dart.weak.expect │ │ │ │ ├── setter_access.dart.weak.modular.expect │ │ │ │ ├── setter_access.dart.weak.outline.expect │ │ │ │ ├── setter_access.dart.weak.transformed.expect │ │ │ │ ├── spread_collection.dart │ │ │ │ ├── spread_collection.dart.strong.expect │ │ │ │ ├── spread_collection.dart.strong.transformed.expect │ │ │ │ ├── spread_collection.dart.textual_outline.expect │ │ │ │ ├── spread_collection.dart.textual_outline_modelled.expect │ │ │ │ ├── spread_collection.dart.weak.expect │ │ │ │ ├── spread_collection.dart.weak.modular.expect │ │ │ │ ├── spread_collection.dart.weak.outline.expect │ │ │ │ ├── spread_collection.dart.weak.transformed.expect │ │ │ │ ├── spread_collection_inference.dart │ │ │ │ ├── spread_collection_inference.dart.strong.expect │ │ │ │ ├── spread_collection_inference.dart.strong.transformed.expect │ │ │ │ ├── spread_collection_inference.dart.textual_outline.expect │ │ │ │ ├── spread_collection_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── spread_collection_inference.dart.weak.expect │ │ │ │ ├── spread_collection_inference.dart.weak.modular.expect │ │ │ │ ├── spread_collection_inference.dart.weak.outline.expect │ │ │ │ ├── spread_collection_inference.dart.weak.transformed.expect │ │ │ │ ├── spread_collection_inference2.dart │ │ │ │ ├── spread_collection_inference2.dart.strong.expect │ │ │ │ ├── spread_collection_inference2.dart.strong.transformed.expect │ │ │ │ ├── spread_collection_inference2.dart.textual_outline.expect │ │ │ │ ├── spread_collection_inference2.dart.textual_outline_modelled.expect │ │ │ │ ├── spread_collection_inference2.dart.weak.expect │ │ │ │ ├── spread_collection_inference2.dart.weak.modular.expect │ │ │ │ ├── spread_collection_inference2.dart.weak.outline.expect │ │ │ │ ├── spread_collection_inference2.dart.weak.transformed.expect │ │ │ │ ├── statements.dart │ │ │ │ ├── statements.dart.strong.expect │ │ │ │ ├── statements.dart.strong.transformed.expect │ │ │ │ ├── statements.dart.textual_outline.expect │ │ │ │ ├── statements.dart.textual_outline_modelled.expect │ │ │ │ ├── statements.dart.weak.expect │ │ │ │ ├── statements.dart.weak.modular.expect │ │ │ │ ├── statements.dart.weak.outline.expect │ │ │ │ ├── statements.dart.weak.transformed.expect │ │ │ │ ├── static_setter.dart │ │ │ │ ├── static_setter.dart.strong.expect │ │ │ │ ├── static_setter.dart.strong.transformed.expect │ │ │ │ ├── static_setter.dart.textual_outline.expect │ │ │ │ ├── static_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── static_setter.dart.weak.expect │ │ │ │ ├── static_setter.dart.weak.modular.expect │ │ │ │ ├── static_setter.dart.weak.outline.expect │ │ │ │ ├── static_setter.dart.weak.transformed.expect │ │ │ │ ├── store_load.dart │ │ │ │ ├── store_load.dart.strong.expect │ │ │ │ ├── store_load.dart.strong.transformed.expect │ │ │ │ ├── store_load.dart.textual_outline.expect │ │ │ │ ├── store_load.dart.textual_outline_modelled.expect │ │ │ │ ├── store_load.dart.weak.expect │ │ │ │ ├── store_load.dart.weak.modular.expect │ │ │ │ ├── store_load.dart.weak.outline.expect │ │ │ │ ├── store_load.dart.weak.transformed.expect │ │ │ │ ├── stream_future.dart │ │ │ │ ├── stream_future.dart.strong.expect │ │ │ │ ├── stream_future.dart.strong.transformed.expect │ │ │ │ ├── stream_future.dart.textual_outline.expect │ │ │ │ ├── stream_future.dart.textual_outline_modelled.expect │ │ │ │ ├── stream_future.dart.weak.expect │ │ │ │ ├── stream_future.dart.weak.modular.expect │ │ │ │ ├── stream_future.dart.weak.outline.expect │ │ │ │ ├── stream_future.dart.weak.transformed.expect │ │ │ │ ├── stringliteral.dart │ │ │ │ ├── stringliteral.dart.strong.expect │ │ │ │ ├── stringliteral.dart.strong.transformed.expect │ │ │ │ ├── stringliteral.dart.textual_outline.expect │ │ │ │ ├── stringliteral.dart.textual_outline_modelled.expect │ │ │ │ ├── stringliteral.dart.weak.expect │ │ │ │ ├── stringliteral.dart.weak.modular.expect │ │ │ │ ├── stringliteral.dart.weak.outline.expect │ │ │ │ ├── stringliteral.dart.weak.transformed.expect │ │ │ │ ├── subtype_function.dart │ │ │ │ ├── subtype_function.dart.strong.expect │ │ │ │ ├── subtype_function.dart.strong.transformed.expect │ │ │ │ ├── subtype_function.dart.textual_outline.expect │ │ │ │ ├── subtype_function.dart.textual_outline_modelled.expect │ │ │ │ ├── subtype_function.dart.weak.expect │ │ │ │ ├── subtype_function.dart.weak.modular.expect │ │ │ │ ├── subtype_function.dart.weak.outline.expect │ │ │ │ ├── subtype_function.dart.weak.transformed.expect │ │ │ │ ├── super_access_in_initializer.dart │ │ │ │ ├── super_access_in_initializer.dart.strong.expect │ │ │ │ ├── super_access_in_initializer.dart.strong.transformed.expect │ │ │ │ ├── super_access_in_initializer.dart.textual_outline.expect │ │ │ │ ├── super_access_in_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── super_access_in_initializer.dart.weak.expect │ │ │ │ ├── super_access_in_initializer.dart.weak.modular.expect │ │ │ │ ├── super_access_in_initializer.dart.weak.outline.expect │ │ │ │ ├── super_access_in_initializer.dart.weak.transformed.expect │ │ │ │ ├── super_bounded.dart │ │ │ │ ├── super_bounded.dart.strong.expect │ │ │ │ ├── super_bounded.dart.strong.transformed.expect │ │ │ │ ├── super_bounded.dart.textual_outline.expect │ │ │ │ ├── super_bounded.dart.textual_outline_modelled.expect │ │ │ │ ├── super_bounded.dart.weak.expect │ │ │ │ ├── super_bounded.dart.weak.modular.expect │ │ │ │ ├── super_bounded.dart.weak.outline.expect │ │ │ │ ├── super_bounded.dart.weak.transformed.expect │ │ │ │ ├── super_call.dart │ │ │ │ ├── super_call.dart.strong.expect │ │ │ │ ├── super_call.dart.strong.transformed.expect │ │ │ │ ├── super_call.dart.textual_outline.expect │ │ │ │ ├── super_call.dart.textual_outline_modelled.expect │ │ │ │ ├── super_call.dart.weak.expect │ │ │ │ ├── super_call.dart.weak.modular.expect │ │ │ │ ├── super_call.dart.weak.outline.expect │ │ │ │ ├── super_call.dart.weak.transformed.expect │ │ │ │ ├── super_nsm.dart │ │ │ │ ├── super_nsm.dart.strong.expect │ │ │ │ ├── super_nsm.dart.strong.transformed.expect │ │ │ │ ├── super_nsm.dart.textual_outline.expect │ │ │ │ ├── super_nsm.dart.textual_outline_modelled.expect │ │ │ │ ├── super_nsm.dart.weak.expect │ │ │ │ ├── super_nsm.dart.weak.modular.expect │ │ │ │ ├── super_nsm.dart.weak.outline.expect │ │ │ │ ├── super_nsm.dart.weak.transformed.expect │ │ │ │ ├── super_semi_stub.dart │ │ │ │ ├── super_semi_stub.dart.strong.expect │ │ │ │ ├── super_semi_stub.dart.strong.transformed.expect │ │ │ │ ├── super_semi_stub.dart.textual_outline.expect │ │ │ │ ├── super_semi_stub.dart.textual_outline_modelled.expect │ │ │ │ ├── super_semi_stub.dart.weak.expect │ │ │ │ ├── super_semi_stub.dart.weak.modular.expect │ │ │ │ ├── super_semi_stub.dart.weak.outline.expect │ │ │ │ ├── super_semi_stub.dart.weak.transformed.expect │ │ │ │ ├── super_set_abstract.dart │ │ │ │ ├── super_set_abstract.dart.strong.expect │ │ │ │ ├── super_set_abstract.dart.strong.transformed.expect │ │ │ │ ├── super_set_abstract.dart.textual_outline.expect │ │ │ │ ├── super_set_abstract.dart.textual_outline_modelled.expect │ │ │ │ ├── super_set_abstract.dart.weak.expect │ │ │ │ ├── super_set_abstract.dart.weak.modular.expect │ │ │ │ ├── super_set_abstract.dart.weak.outline.expect │ │ │ │ ├── super_set_abstract.dart.weak.transformed.expect │ │ │ │ ├── super_set_covariant.dart │ │ │ │ ├── super_set_covariant.dart.strong.expect │ │ │ │ ├── super_set_covariant.dart.strong.transformed.expect │ │ │ │ ├── super_set_covariant.dart.textual_outline.expect │ │ │ │ ├── super_set_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── super_set_covariant.dart.weak.expect │ │ │ │ ├── super_set_covariant.dart.weak.modular.expect │ │ │ │ ├── super_set_covariant.dart.weak.outline.expect │ │ │ │ ├── super_set_covariant.dart.weak.transformed.expect │ │ │ │ ├── super_signature_access.dart │ │ │ │ ├── super_signature_access.dart.strong.expect │ │ │ │ ├── super_signature_access.dart.strong.transformed.expect │ │ │ │ ├── super_signature_access.dart.textual_outline.expect │ │ │ │ ├── super_signature_access.dart.textual_outline_modelled.expect │ │ │ │ ├── super_signature_access.dart.weak.expect │ │ │ │ ├── super_signature_access.dart.weak.modular.expect │ │ │ │ ├── super_signature_access.dart.weak.outline.expect │ │ │ │ ├── super_signature_access.dart.weak.transformed.expect │ │ │ │ ├── supported_libraries │ │ │ │ │ ├── import_default_lib.dart │ │ │ │ │ ├── import_supported.by.spec_lib.dart │ │ │ │ │ ├── import_supported.by.target_lib.dart │ │ │ │ │ ├── import_unsupported.by.spec_internal_lib.dart │ │ │ │ │ ├── import_unsupported.by.spec_lib.dart │ │ │ │ │ ├── import_unsupported.by.target_lib.dart │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── supported.by.spec_lib.dart │ │ │ │ │ ├── supported.by.target_lib.dart │ │ │ │ │ ├── unsupported.by.spec_internal_lib.dart │ │ │ │ │ ├── unsupported.by.spec_lib.dart │ │ │ │ │ └── unsupported.by.target_lib.dart │ │ │ │ ├── switch_error_recovery.dart │ │ │ │ ├── switch_error_recovery.dart.strong.expect │ │ │ │ ├── switch_error_recovery.dart.strong.transformed.expect │ │ │ │ ├── switch_error_recovery.dart.textual_outline.expect │ │ │ │ ├── switch_error_recovery.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_error_recovery.dart.weak.expect │ │ │ │ ├── switch_error_recovery.dart.weak.modular.expect │ │ │ │ ├── switch_error_recovery.dart.weak.outline.expect │ │ │ │ ├── switch_error_recovery.dart.weak.transformed.expect │ │ │ │ ├── tabs.dart │ │ │ │ ├── tabs.dart.strong.expect │ │ │ │ ├── tabs.dart.strong.transformed.expect │ │ │ │ ├── tabs.dart.textual_outline.expect │ │ │ │ ├── tabs.dart.textual_outline_modelled.expect │ │ │ │ ├── tabs.dart.weak.expect │ │ │ │ ├── tabs.dart.weak.modular.expect │ │ │ │ ├── tabs.dart.weak.outline.expect │ │ │ │ ├── tabs.dart.weak.transformed.expect │ │ │ │ ├── tear_off_patch │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── this_field_call.dart │ │ │ │ ├── this_field_call.dart.strong.expect │ │ │ │ ├── this_field_call.dart.strong.transformed.expect │ │ │ │ ├── this_field_call.dart.textual_outline.expect │ │ │ │ ├── this_field_call.dart.textual_outline_modelled.expect │ │ │ │ ├── this_field_call.dart.weak.expect │ │ │ │ ├── this_field_call.dart.weak.modular.expect │ │ │ │ ├── this_field_call.dart.weak.outline.expect │ │ │ │ ├── this_field_call.dart.weak.transformed.expect │ │ │ │ ├── three_typedefs_loop.dart │ │ │ │ ├── three_typedefs_loop.dart.strong.expect │ │ │ │ ├── three_typedefs_loop.dart.strong.transformed.expect │ │ │ │ ├── three_typedefs_loop.dart.textual_outline.expect │ │ │ │ ├── three_typedefs_loop.dart.textual_outline_modelled.expect │ │ │ │ ├── three_typedefs_loop.dart.weak.expect │ │ │ │ ├── three_typedefs_loop.dart.weak.modular.expect │ │ │ │ ├── three_typedefs_loop.dart.weak.outline.expect │ │ │ │ ├── three_typedefs_loop.dart.weak.transformed.expect │ │ │ │ ├── top_level_accessors.dart │ │ │ │ ├── top_level_accessors.dart.strong.expect │ │ │ │ ├── top_level_accessors.dart.strong.transformed.expect │ │ │ │ ├── top_level_accessors.dart.textual_outline.expect │ │ │ │ ├── top_level_accessors.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_accessors.dart.weak.expect │ │ │ │ ├── top_level_accessors.dart.weak.modular.expect │ │ │ │ ├── top_level_accessors.dart.weak.outline.expect │ │ │ │ ├── top_level_accessors.dart.weak.transformed.expect │ │ │ │ ├── top_level_accessors_part.dart │ │ │ │ ├── top_level_binary.dart │ │ │ │ ├── top_level_binary.dart.strong.expect │ │ │ │ ├── top_level_binary.dart.strong.transformed.expect │ │ │ │ ├── top_level_binary.dart.textual_outline.expect │ │ │ │ ├── top_level_binary.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_binary.dart.weak.expect │ │ │ │ ├── top_level_binary.dart.weak.modular.expect │ │ │ │ ├── top_level_binary.dart.weak.outline.expect │ │ │ │ ├── top_level_binary.dart.weak.transformed.expect │ │ │ │ ├── top_level_library_method.dart │ │ │ │ ├── top_level_library_method.dart.strong.expect │ │ │ │ ├── top_level_library_method.dart.strong.transformed.expect │ │ │ │ ├── top_level_library_method.dart.textual_outline.expect │ │ │ │ ├── top_level_library_method.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_library_method.dart.weak.expect │ │ │ │ ├── top_level_library_method.dart.weak.modular.expect │ │ │ │ ├── top_level_library_method.dart.weak.outline.expect │ │ │ │ ├── top_level_library_method.dart.weak.transformed.expect │ │ │ │ ├── top_level_map_literal_error.dart │ │ │ │ ├── top_level_map_literal_error.dart.strong.expect │ │ │ │ ├── top_level_map_literal_error.dart.strong.transformed.expect │ │ │ │ ├── top_level_map_literal_error.dart.textual_outline.expect │ │ │ │ ├── top_level_map_literal_error.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_map_literal_error.dart.weak.expect │ │ │ │ ├── top_level_map_literal_error.dart.weak.modular.expect │ │ │ │ ├── top_level_map_literal_error.dart.weak.outline.expect │ │ │ │ ├── top_level_map_literal_error.dart.weak.transformed.expect │ │ │ │ ├── top_level_promotion.dart │ │ │ │ ├── top_level_promotion.dart.strong.expect │ │ │ │ ├── top_level_promotion.dart.strong.transformed.expect │ │ │ │ ├── top_level_promotion.dart.textual_outline.expect │ │ │ │ ├── top_level_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_promotion.dart.weak.expect │ │ │ │ ├── top_level_promotion.dart.weak.modular.expect │ │ │ │ ├── top_level_promotion.dart.weak.outline.expect │ │ │ │ ├── top_level_promotion.dart.weak.transformed.expect │ │ │ │ ├── top_level_variance2.dart │ │ │ │ ├── top_level_variance2.dart.strong.expect │ │ │ │ ├── top_level_variance2.dart.strong.transformed.expect │ │ │ │ ├── top_level_variance2.dart.textual_outline.expect │ │ │ │ ├── top_level_variance2.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_variance2.dart.weak.expect │ │ │ │ ├── top_level_variance2.dart.weak.modular.expect │ │ │ │ ├── top_level_variance2.dart.weak.outline.expect │ │ │ │ ├── top_level_variance2.dart.weak.transformed.expect │ │ │ │ ├── top_level_variance_test.dart │ │ │ │ ├── top_level_variance_test.dart.strong.expect │ │ │ │ ├── top_level_variance_test.dart.strong.transformed.expect │ │ │ │ ├── top_level_variance_test.dart.textual_outline.expect │ │ │ │ ├── top_level_variance_test.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_variance_test.dart.weak.expect │ │ │ │ ├── top_level_variance_test.dart.weak.modular.expect │ │ │ │ ├── top_level_variance_test.dart.weak.outline.expect │ │ │ │ ├── top_level_variance_test.dart.weak.transformed.expect │ │ │ │ ├── top_level_vs_local_inference.dart │ │ │ │ ├── top_level_vs_local_inference.dart.strong.expect │ │ │ │ ├── top_level_vs_local_inference.dart.strong.transformed.expect │ │ │ │ ├── top_level_vs_local_inference.dart.textual_outline.expect │ │ │ │ ├── top_level_vs_local_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_vs_local_inference.dart.weak.expect │ │ │ │ ├── top_level_vs_local_inference.dart.weak.modular.expect │ │ │ │ ├── top_level_vs_local_inference.dart.weak.outline.expect │ │ │ │ ├── top_level_vs_local_inference.dart.weak.transformed.expect │ │ │ │ ├── trailing_comma1.dart │ │ │ │ ├── trailing_comma1.dart.strong.expect │ │ │ │ ├── trailing_comma1.dart.strong.transformed.expect │ │ │ │ ├── trailing_comma1.dart.textual_outline.expect │ │ │ │ ├── trailing_comma1.dart.textual_outline_modelled.expect │ │ │ │ ├── trailing_comma1.dart.weak.expect │ │ │ │ ├── trailing_comma1.dart.weak.modular.expect │ │ │ │ ├── trailing_comma1.dart.weak.outline.expect │ │ │ │ ├── trailing_comma1.dart.weak.transformed.expect │ │ │ │ ├── trailing_comma2.dart │ │ │ │ ├── trailing_comma2.dart.strong.expect │ │ │ │ ├── trailing_comma2.dart.strong.transformed.expect │ │ │ │ ├── trailing_comma2.dart.textual_outline.expect │ │ │ │ ├── trailing_comma2.dart.textual_outline_modelled.expect │ │ │ │ ├── trailing_comma2.dart.weak.expect │ │ │ │ ├── trailing_comma2.dart.weak.modular.expect │ │ │ │ ├── trailing_comma2.dart.weak.outline.expect │ │ │ │ ├── trailing_comma2.dart.weak.transformed.expect │ │ │ │ ├── type_literal_as_metadata.dart │ │ │ │ ├── type_literal_as_metadata.dart.strong.expect │ │ │ │ ├── type_literal_as_metadata.dart.strong.transformed.expect │ │ │ │ ├── type_literal_as_metadata.dart.textual_outline.expect │ │ │ │ ├── type_literal_as_metadata.dart.textual_outline_modelled.expect │ │ │ │ ├── type_literal_as_metadata.dart.weak.expect │ │ │ │ ├── type_literal_as_metadata.dart.weak.modular.expect │ │ │ │ ├── type_literal_as_metadata.dart.weak.outline.expect │ │ │ │ ├── type_literal_as_metadata.dart.weak.transformed.expect │ │ │ │ ├── type_of_null.dart │ │ │ │ ├── type_of_null.dart.strong.expect │ │ │ │ ├── type_of_null.dart.strong.transformed.expect │ │ │ │ ├── type_of_null.dart.textual_outline.expect │ │ │ │ ├── type_of_null.dart.textual_outline_modelled.expect │ │ │ │ ├── type_of_null.dart.weak.expect │ │ │ │ ├── type_of_null.dart.weak.modular.expect │ │ │ │ ├── type_of_null.dart.weak.outline.expect │ │ │ │ ├── type_of_null.dart.weak.transformed.expect │ │ │ │ ├── type_parameter_type_named_int.dart │ │ │ │ ├── type_parameter_type_named_int.dart.strong.expect │ │ │ │ ├── type_parameter_type_named_int.dart.strong.transformed.expect │ │ │ │ ├── type_parameter_type_named_int.dart.textual_outline.expect │ │ │ │ ├── type_parameter_type_named_int.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameter_type_named_int.dart.weak.expect │ │ │ │ ├── type_parameter_type_named_int.dart.weak.modular.expect │ │ │ │ ├── type_parameter_type_named_int.dart.weak.outline.expect │ │ │ │ ├── type_parameter_type_named_int.dart.weak.transformed.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.strong.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.strong.transformed.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.textual_outline.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.weak.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.weak.modular.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.weak.outline.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_class.dart.weak.transformed.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.strong.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.strong.transformed.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.textual_outline.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.weak.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.weak.modular.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.weak.outline.expect │ │ │ │ ├── type_parameter_usage_in_static_method_in_extension.dart.weak.transformed.expect │ │ │ │ ├── type_parameters_on_dynamic.dart │ │ │ │ ├── type_parameters_on_dynamic.dart.strong.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.strong.transformed.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.textual_outline.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.weak.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.weak.modular.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.weak.outline.expect │ │ │ │ ├── type_parameters_on_dynamic.dart.weak.transformed.expect │ │ │ │ ├── type_parameters_on_void.dart │ │ │ │ ├── type_parameters_on_void.dart.strong.expect │ │ │ │ ├── type_parameters_on_void.dart.strong.transformed.expect │ │ │ │ ├── type_parameters_on_void.dart.textual_outline.expect │ │ │ │ ├── type_parameters_on_void.dart.weak.expect │ │ │ │ ├── type_parameters_on_void.dart.weak.modular.expect │ │ │ │ ├── type_parameters_on_void.dart.weak.outline.expect │ │ │ │ ├── type_parameters_on_void.dart.weak.transformed.expect │ │ │ │ ├── type_variable_annotations.dart │ │ │ │ ├── type_variable_annotations.dart.strong.expect │ │ │ │ ├── type_variable_annotations.dart.strong.transformed.expect │ │ │ │ ├── type_variable_annotations.dart.textual_outline.expect │ │ │ │ ├── type_variable_annotations.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_annotations.dart.weak.expect │ │ │ │ ├── type_variable_annotations.dart.weak.modular.expect │ │ │ │ ├── type_variable_annotations.dart.weak.outline.expect │ │ │ │ ├── type_variable_annotations.dart.weak.transformed.expect │ │ │ │ ├── type_variable_as_super.dart │ │ │ │ ├── type_variable_as_super.dart.strong.expect │ │ │ │ ├── type_variable_as_super.dart.strong.transformed.expect │ │ │ │ ├── type_variable_as_super.dart.textual_outline.expect │ │ │ │ ├── type_variable_as_super.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_as_super.dart.weak.expect │ │ │ │ ├── type_variable_as_super.dart.weak.modular.expect │ │ │ │ ├── type_variable_as_super.dart.weak.outline.expect │ │ │ │ ├── type_variable_as_super.dart.weak.transformed.expect │ │ │ │ ├── type_variable_bound_access.dart │ │ │ │ ├── type_variable_bound_access.dart.strong.expect │ │ │ │ ├── type_variable_bound_access.dart.strong.transformed.expect │ │ │ │ ├── type_variable_bound_access.dart.textual_outline.expect │ │ │ │ ├── type_variable_bound_access.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_bound_access.dart.weak.expect │ │ │ │ ├── type_variable_bound_access.dart.weak.modular.expect │ │ │ │ ├── type_variable_bound_access.dart.weak.outline.expect │ │ │ │ ├── type_variable_bound_access.dart.weak.transformed.expect │ │ │ │ ├── type_variable_in_static_context.dart │ │ │ │ ├── type_variable_in_static_context.dart.strong.expect │ │ │ │ ├── type_variable_in_static_context.dart.strong.transformed.expect │ │ │ │ ├── type_variable_in_static_context.dart.textual_outline.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.modular.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.outline.expect │ │ │ │ ├── type_variable_in_static_context.dart.weak.transformed.expect │ │ │ │ ├── type_variable_prefix.dart │ │ │ │ ├── type_variable_prefix.dart.strong.expect │ │ │ │ ├── type_variable_prefix.dart.strong.transformed.expect │ │ │ │ ├── type_variable_prefix.dart.textual_outline.expect │ │ │ │ ├── type_variable_prefix.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_prefix.dart.weak.expect │ │ │ │ ├── type_variable_prefix.dart.weak.modular.expect │ │ │ │ ├── type_variable_prefix.dart.weak.outline.expect │ │ │ │ ├── type_variable_prefix.dart.weak.transformed.expect │ │ │ │ ├── type_variable_type_arguments.dart │ │ │ │ ├── type_variable_type_arguments.dart.strong.expect │ │ │ │ ├── type_variable_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── type_variable_type_arguments.dart.textual_outline.expect │ │ │ │ ├── type_variable_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_type_arguments.dart.weak.expect │ │ │ │ ├── type_variable_type_arguments.dart.weak.modular.expect │ │ │ │ ├── type_variable_type_arguments.dart.weak.outline.expect │ │ │ │ ├── type_variable_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── type_variable_uses.dart │ │ │ │ ├── type_variable_uses.dart.strong.expect │ │ │ │ ├── type_variable_uses.dart.strong.transformed.expect │ │ │ │ ├── type_variable_uses.dart.textual_outline.expect │ │ │ │ ├── type_variable_uses.dart.textual_outline_modelled.expect │ │ │ │ ├── type_variable_uses.dart.weak.expect │ │ │ │ ├── type_variable_uses.dart.weak.modular.expect │ │ │ │ ├── type_variable_uses.dart.weak.outline.expect │ │ │ │ ├── type_variable_uses.dart.weak.transformed.expect │ │ │ │ ├── typedef.dart │ │ │ │ ├── typedef.dart.strong.expect │ │ │ │ ├── typedef.dart.strong.transformed.expect │ │ │ │ ├── typedef.dart.textual_outline.expect │ │ │ │ ├── typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef.dart.weak.expect │ │ │ │ ├── typedef.dart.weak.modular.expect │ │ │ │ ├── typedef.dart.weak.outline.expect │ │ │ │ ├── typedef.dart.weak.transformed.expect │ │ │ │ ├── typedef_annotation.dart │ │ │ │ ├── typedef_annotation.dart.strong.expect │ │ │ │ ├── typedef_annotation.dart.strong.transformed.expect │ │ │ │ ├── typedef_annotation.dart.textual_outline.expect │ │ │ │ ├── typedef_annotation.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_annotation.dart.weak.expect │ │ │ │ ├── typedef_annotation.dart.weak.modular.expect │ │ │ │ ├── typedef_annotation.dart.weak.outline.expect │ │ │ │ ├── typedef_annotation.dart.weak.transformed.expect │ │ │ │ ├── undefined.dart │ │ │ │ ├── undefined.dart.strong.expect │ │ │ │ ├── undefined.dart.strong.transformed.expect │ │ │ │ ├── undefined.dart.textual_outline.expect │ │ │ │ ├── undefined.dart.textual_outline_modelled.expect │ │ │ │ ├── undefined.dart.weak.expect │ │ │ │ ├── undefined.dart.weak.modular.expect │ │ │ │ ├── undefined.dart.weak.outline.expect │ │ │ │ ├── undefined.dart.weak.transformed.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.strong.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.strong.transformed.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.textual_outline.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.textual_outline_modelled.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.weak.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.weak.modular.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.weak.outline.expect │ │ │ │ ├── undefined_getter_in_compound_assignment.dart.weak.transformed.expect │ │ │ │ ├── uninitialized_fields.dart │ │ │ │ ├── uninitialized_fields.dart.strong.expect │ │ │ │ ├── uninitialized_fields.dart.strong.transformed.expect │ │ │ │ ├── uninitialized_fields.dart.textual_outline.expect │ │ │ │ ├── uninitialized_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── uninitialized_fields.dart.weak.expect │ │ │ │ ├── uninitialized_fields.dart.weak.modular.expect │ │ │ │ ├── uninitialized_fields.dart.weak.outline.expect │ │ │ │ ├── uninitialized_fields.dart.weak.transformed.expect │ │ │ │ ├── uninitialized_static_field.dart │ │ │ │ ├── uninitialized_static_field.dart.strong.expect │ │ │ │ ├── uninitialized_static_field.dart.strong.transformed.expect │ │ │ │ ├── uninitialized_static_field.dart.textual_outline.expect │ │ │ │ ├── uninitialized_static_field.dart.textual_outline_modelled.expect │ │ │ │ ├── uninitialized_static_field.dart.weak.expect │ │ │ │ ├── uninitialized_static_field.dart.weak.modular.expect │ │ │ │ ├── uninitialized_static_field.dart.weak.outline.expect │ │ │ │ ├── uninitialized_static_field.dart.weak.transformed.expect │ │ │ │ ├── unresolved_constructor_invocation.dart │ │ │ │ ├── unresolved_constructor_invocation.dart.strong.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.strong.transformed.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.textual_outline.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.modular.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.outline.expect │ │ │ │ ├── unresolved_constructor_invocation.dart.weak.transformed.expect │ │ │ │ ├── unresolved_dart_library │ │ │ │ │ ├── flutter_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_flutter_lib.dart │ │ │ │ │ │ │ └── import_flutter_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.strong.expect │ │ │ │ │ ├── main.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ ├── main_lib3.dart │ │ │ │ │ ├── test.options │ │ │ │ │ ├── user_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_flutter_lib1.dart │ │ │ │ │ │ │ ├── export_flutter_lib2.dart │ │ │ │ │ │ │ ├── export_vm_lib1.dart │ │ │ │ │ │ │ ├── export_vm_lib2.dart │ │ │ │ │ │ │ ├── export_web_lib1.dart │ │ │ │ │ │ │ ├── export_web_lib2.dart │ │ │ │ │ │ │ ├── import_flutter_lib1.dart │ │ │ │ │ │ │ ├── import_flutter_lib2.dart │ │ │ │ │ │ │ ├── import_flutter_lib3.dart │ │ │ │ │ │ │ ├── import_vm_lib1.dart │ │ │ │ │ │ │ ├── import_vm_lib2.dart │ │ │ │ │ │ │ ├── import_vm_lib3.dart │ │ │ │ │ │ │ ├── import_web_lib1.dart │ │ │ │ │ │ │ ├── import_web_lib2.dart │ │ │ │ │ │ │ └── import_web_lib3.dart │ │ │ │ │ ├── vm_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── export_vm_lib.dart │ │ │ │ │ │ │ └── import_vm_lib.dart │ │ │ │ │ └── web_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── export_web_lib.dart │ │ │ │ │ │ └── import_web_lib.dart │ │ │ │ ├── unresolved_imports │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ └── main.dart.weak.transformed.expect │ │ │ │ ├── unresolved_prefix_access.dart │ │ │ │ ├── unresolved_prefix_access.dart.strong.expect │ │ │ │ ├── unresolved_prefix_access.dart.strong.transformed.expect │ │ │ │ ├── unresolved_prefix_access.dart.textual_outline.expect │ │ │ │ ├── unresolved_prefix_access.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_prefix_access.dart.weak.expect │ │ │ │ ├── unresolved_prefix_access.dart.weak.modular.expect │ │ │ │ ├── unresolved_prefix_access.dart.weak.outline.expect │ │ │ │ ├── unresolved_prefix_access.dart.weak.transformed.expect │ │ │ │ ├── unsound_promotion.dart │ │ │ │ ├── unsound_promotion.dart.strong.expect │ │ │ │ ├── unsound_promotion.dart.textual_outline.expect │ │ │ │ ├── unsound_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── unsound_promotion.dart.weak.expect │ │ │ │ ├── unsound_promotion.dart.weak.modular.expect │ │ │ │ ├── unsound_promotion.dart.weak.outline.expect │ │ │ │ ├── unused_methods.dart │ │ │ │ ├── unused_methods.dart.strong.expect │ │ │ │ ├── unused_methods.dart.strong.transformed.expect │ │ │ │ ├── unused_methods.dart.textual_outline.expect │ │ │ │ ├── unused_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── unused_methods.dart.weak.expect │ │ │ │ ├── unused_methods.dart.weak.modular.expect │ │ │ │ ├── unused_methods.dart.weak.outline.expect │ │ │ │ ├── unused_methods.dart.weak.transformed.expect │ │ │ │ ├── var_as_type_name.dart │ │ │ │ ├── var_as_type_name.dart.strong.expect │ │ │ │ ├── var_as_type_name.dart.strong.transformed.expect │ │ │ │ ├── var_as_type_name.dart.textual_outline.expect │ │ │ │ ├── var_as_type_name.dart.weak.expect │ │ │ │ ├── var_as_type_name.dart.weak.modular.expect │ │ │ │ ├── var_as_type_name.dart.weak.outline.expect │ │ │ │ ├── var_as_type_name.dart.weak.transformed.expect │ │ │ │ ├── vm_type_ops.dart │ │ │ │ ├── vm_type_ops.dart.strong.expect │ │ │ │ ├── vm_type_ops.dart.strong.transformed.expect │ │ │ │ ├── vm_type_ops.dart.textual_outline.expect │ │ │ │ ├── vm_type_ops.dart.textual_outline_modelled.expect │ │ │ │ ├── vm_type_ops.dart.weak.expect │ │ │ │ ├── vm_type_ops.dart.weak.modular.expect │ │ │ │ ├── vm_type_ops.dart.weak.outline.expect │ │ │ │ ├── vm_type_ops.dart.weak.transformed.expect │ │ │ │ ├── void_methods.dart │ │ │ │ ├── void_methods.dart.strong.expect │ │ │ │ ├── void_methods.dart.strong.transformed.expect │ │ │ │ ├── void_methods.dart.textual_outline.expect │ │ │ │ ├── void_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── void_methods.dart.weak.expect │ │ │ │ ├── void_methods.dart.weak.modular.expect │ │ │ │ ├── void_methods.dart.weak.outline.expect │ │ │ │ ├── void_methods.dart.weak.transformed.expect │ │ │ │ ├── warn_unresolved_sends.dart │ │ │ │ ├── warn_unresolved_sends.dart.strong.expect │ │ │ │ ├── warn_unresolved_sends.dart.strong.transformed.expect │ │ │ │ ├── warn_unresolved_sends.dart.textual_outline.expect │ │ │ │ ├── warn_unresolved_sends.dart.textual_outline_modelled.expect │ │ │ │ ├── warn_unresolved_sends.dart.weak.expect │ │ │ │ ├── warn_unresolved_sends.dart.weak.modular.expect │ │ │ │ ├── warn_unresolved_sends.dart.weak.outline.expect │ │ │ │ ├── warn_unresolved_sends.dart.weak.transformed.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart │ │ │ │ ├── well_boundness_checks_in_outline.dart.strong.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.strong.transformed.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.textual_outline.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.textual_outline_modelled.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.weak.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.weak.modular.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.weak.outline.expect │ │ │ │ ├── well_boundness_checks_in_outline.dart.weak.transformed.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart │ │ │ │ ├── well_boundness_checks_in_outline2.dart.strong.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.strong.transformed.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.textual_outline.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.textual_outline_modelled.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.weak.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.weak.modular.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.weak.outline.expect │ │ │ │ ├── well_boundness_checks_in_outline2.dart.weak.transformed.expect │ │ │ │ └── with_dependencies │ │ │ │ │ ├── abstract_members_from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ │ ├── extension_from_dill │ │ │ │ │ ├── extension_from_dill.dart │ │ │ │ │ ├── extension_from_dill.dart.strong.expect │ │ │ │ │ ├── extension_from_dill.dart.strong.transformed.expect │ │ │ │ │ ├── extension_from_dill.dart.textual_outline.expect │ │ │ │ │ ├── extension_from_dill.dart.textual_outline_modelled.expect │ │ │ │ │ ├── extension_from_dill.dart.weak.expect │ │ │ │ │ ├── extension_from_dill.dart.weak.modular.expect │ │ │ │ │ ├── extension_from_dill.dart.weak.outline.expect │ │ │ │ │ ├── extension_from_dill.dart.weak.transformed.expect │ │ │ │ │ ├── extension_from_dill_lib.dart │ │ │ │ │ ├── extension_from_dill_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ │ ├── issue43538 │ │ │ │ │ ├── const_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ └── test.options │ │ │ │ │ ├── issue_43084 │ │ │ │ │ ├── issue_43084.dart │ │ │ │ │ ├── issue_43084.dart.strong.expect │ │ │ │ │ ├── issue_43084.dart.strong.transformed.expect │ │ │ │ │ ├── issue_43084.dart.textual_outline.expect │ │ │ │ │ ├── issue_43084.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_43084.dart.weak.expect │ │ │ │ │ ├── issue_43084.dart.weak.modular.expect │ │ │ │ │ ├── issue_43084.dart.weak.outline.expect │ │ │ │ │ ├── issue_43084.dart.weak.transformed.expect │ │ │ │ │ ├── issue_43084_lib.dart │ │ │ │ │ └── test.options │ │ │ │ │ ├── issue_43084_2 │ │ │ │ │ ├── issue_43084.dart │ │ │ │ │ ├── issue_43084.dart.strong.expect │ │ │ │ │ ├── issue_43084.dart.strong.transformed.expect │ │ │ │ │ ├── issue_43084.dart.textual_outline.expect │ │ │ │ │ ├── issue_43084.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_43084.dart.weak.expect │ │ │ │ │ ├── issue_43084.dart.weak.modular.expect │ │ │ │ │ ├── issue_43084.dart.weak.outline.expect │ │ │ │ │ ├── issue_43084.dart.weak.transformed.expect │ │ │ │ │ ├── issue_43084_lib.dart │ │ │ │ │ └── test.options │ │ │ │ │ ├── mixin_from_dill │ │ │ │ │ ├── mixin_from_dill.dart │ │ │ │ │ ├── mixin_from_dill.dart.strong.expect │ │ │ │ │ ├── mixin_from_dill.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_from_dill.dart.textual_outline.expect │ │ │ │ │ ├── mixin_from_dill.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_from_dill.dart.weak.expect │ │ │ │ │ ├── mixin_from_dill.dart.weak.modular.expect │ │ │ │ │ ├── mixin_from_dill.dart.weak.outline.expect │ │ │ │ │ ├── mixin_from_dill.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart │ │ │ │ │ ├── mixin_from_dill.no_link.dart.strong.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.textual_outline.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.weak.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.weak.modular.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.weak.outline.expect │ │ │ │ │ ├── mixin_from_dill.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_from_dill_lib1.dart │ │ │ │ │ ├── mixin_from_dill_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ │ ├── stub_or_not │ │ │ │ │ ├── stub_or_not.dart │ │ │ │ │ ├── stub_or_not.dart.strong.expect │ │ │ │ │ ├── stub_or_not.dart.strong.transformed.expect │ │ │ │ │ ├── stub_or_not.dart.textual_outline.expect │ │ │ │ │ ├── stub_or_not.dart.textual_outline_modelled.expect │ │ │ │ │ ├── stub_or_not.dart.weak.expect │ │ │ │ │ ├── stub_or_not.dart.weak.modular.expect │ │ │ │ │ ├── stub_or_not.dart.weak.outline.expect │ │ │ │ │ ├── stub_or_not.dart.weak.transformed.expect │ │ │ │ │ ├── stub_or_not.no_link.dart │ │ │ │ │ ├── stub_or_not.no_link.dart.strong.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.strong.transformed.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.textual_outline.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.weak.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.weak.modular.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.weak.outline.expect │ │ │ │ │ ├── stub_or_not.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── stub_or_not_lib1.dart │ │ │ │ │ ├── stub_or_not_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ │ └── variance_from_dill │ │ │ │ │ ├── test.options │ │ │ │ │ ├── variance_from_dill.dart │ │ │ │ │ ├── variance_from_dill.dart.strong.expect │ │ │ │ │ ├── variance_from_dill.dart.strong.transformed.expect │ │ │ │ │ ├── variance_from_dill.dart.textual_outline.expect │ │ │ │ │ ├── variance_from_dill.dart.textual_outline_modelled.expect │ │ │ │ │ ├── variance_from_dill.dart.weak.expect │ │ │ │ │ ├── variance_from_dill.dart.weak.modular.expect │ │ │ │ │ ├── variance_from_dill.dart.weak.outline.expect │ │ │ │ │ ├── variance_from_dill.dart.weak.transformed.expect │ │ │ │ │ └── variance_from_dill_lib.dart │ │ │ ├── generic_metadata │ │ │ │ ├── alias_from_opt_in.dart │ │ │ │ ├── alias_from_opt_in.dart.strong.expect │ │ │ │ ├── alias_from_opt_in.dart.strong.transformed.expect │ │ │ │ ├── alias_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── alias_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── alias_from_opt_in.dart.weak.expect │ │ │ │ ├── alias_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── alias_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── alias_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── alias_from_opt_in_lib.dart │ │ │ │ ├── erroneous_function_type_parameter.dart │ │ │ │ ├── erroneous_function_type_parameter.dart.strong.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.strong.transformed.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.textual_outline.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.weak.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.weak.modular.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.weak.outline.expect │ │ │ │ ├── erroneous_function_type_parameter.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── from_dill │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── function_type_parameter.dart │ │ │ │ ├── function_type_parameter.dart.strong.expect │ │ │ │ ├── function_type_parameter.dart.strong.transformed.expect │ │ │ │ ├── function_type_parameter.dart.textual_outline.expect │ │ │ │ ├── function_type_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── function_type_parameter.dart.weak.expect │ │ │ │ ├── function_type_parameter.dart.weak.modular.expect │ │ │ │ ├── function_type_parameter.dart.weak.outline.expect │ │ │ │ ├── function_type_parameter.dart.weak.transformed.expect │ │ │ │ ├── generic_metadata.dart │ │ │ │ ├── generic_metadata.dart.strong.expect │ │ │ │ ├── generic_metadata.dart.strong.transformed.expect │ │ │ │ ├── generic_metadata.dart.textual_outline.expect │ │ │ │ ├── generic_metadata.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_metadata.dart.weak.expect │ │ │ │ ├── generic_metadata.dart.weak.modular.expect │ │ │ │ ├── generic_metadata.dart.weak.outline.expect │ │ │ │ ├── generic_metadata.dart.weak.transformed.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.strong.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.strong.transformed.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.textual_outline.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.weak.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.weak.modular.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.weak.outline.expect │ │ │ │ ├── inferred_generic_types_in_arguments_and_bounds.dart.weak.transformed.expect │ │ │ │ ├── issue45329.dart │ │ │ │ ├── issue45329.dart.strong.expect │ │ │ │ ├── issue45329.dart.strong.transformed.expect │ │ │ │ ├── issue45329.dart.textual_outline.expect │ │ │ │ ├── issue45329.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45329.dart.weak.expect │ │ │ │ ├── issue45329.dart.weak.modular.expect │ │ │ │ ├── issue45329.dart.weak.outline.expect │ │ │ │ ├── issue45329.dart.weak.transformed.expect │ │ │ │ ├── issue45330.dart │ │ │ │ ├── issue45330.dart.strong.expect │ │ │ │ ├── issue45330.dart.strong.transformed.expect │ │ │ │ ├── issue45330.dart.textual_outline.expect │ │ │ │ ├── issue45330.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45330.dart.weak.expect │ │ │ │ ├── issue45330.dart.weak.modular.expect │ │ │ │ ├── issue45330.dart.weak.outline.expect │ │ │ │ ├── issue45330.dart.weak.transformed.expect │ │ │ │ ├── issue45330_lib.dart │ │ │ │ ├── nested_generic_arguments_and_bounds.dart │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.strong.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.strong.transformed.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.textual_outline.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.weak.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.weak.modular.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.weak.outline.expect │ │ │ │ ├── nested_generic_arguments_and_bounds.dart.weak.transformed.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.strong.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.strong.transformed.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.textual_outline.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.weak.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.weak.modular.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.weak.outline.expect │ │ │ │ ├── simple_generic_types_in_arguments_and_bounds.dart.weak.transformed.expect │ │ │ │ ├── type_parameters_in_default_types.dart │ │ │ │ ├── type_parameters_in_default_types.dart.strong.expect │ │ │ │ ├── type_parameters_in_default_types.dart.strong.transformed.expect │ │ │ │ ├── type_parameters_in_default_types.dart.textual_outline.expect │ │ │ │ ├── type_parameters_in_default_types.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameters_in_default_types.dart.weak.expect │ │ │ │ ├── type_parameters_in_default_types.dart.weak.modular.expect │ │ │ │ ├── type_parameters_in_default_types.dart.weak.outline.expect │ │ │ │ ├── type_parameters_in_default_types.dart.weak.transformed.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.strong.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.strong.transformed.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.textual_outline.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.weak.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.weak.modular.expect │ │ │ │ ├── typedef_generic_types_in_arguments_and_bounds.dart.weak.outline.expect │ │ │ │ └── typedef_generic_types_in_arguments_and_bounds.dart.weak.transformed.expect │ │ │ ├── implicit_getter_calls │ │ │ │ ├── folder.options │ │ │ │ ├── getter_call.dart │ │ │ │ ├── getter_call.dart.strong.expect │ │ │ │ ├── getter_call.dart.strong.transformed.expect │ │ │ │ ├── getter_call.dart.textual_outline.expect │ │ │ │ ├── getter_call.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_call.dart.weak.expect │ │ │ │ ├── getter_call.dart.weak.modular.expect │ │ │ │ ├── getter_call.dart.weak.outline.expect │ │ │ │ ├── getter_call.dart.weak.transformed.expect │ │ │ │ ├── this_field_call.dart │ │ │ │ ├── this_field_call.dart.strong.expect │ │ │ │ ├── this_field_call.dart.strong.transformed.expect │ │ │ │ ├── this_field_call.dart.textual_outline.expect │ │ │ │ ├── this_field_call.dart.textual_outline_modelled.expect │ │ │ │ ├── this_field_call.dart.weak.expect │ │ │ │ ├── this_field_call.dart.weak.modular.expect │ │ │ │ ├── this_field_call.dart.weak.outline.expect │ │ │ │ └── this_field_call.dart.weak.transformed.expect │ │ │ ├── incremental.status │ │ │ ├── incremental │ │ │ │ ├── await_in_non_async.yaml │ │ │ │ ├── await_in_non_async.yaml.world.1.expect │ │ │ │ ├── await_in_non_async.yaml.world.2.expect │ │ │ │ ├── bad_sdk_uri.yaml │ │ │ │ ├── bad_sdk_uri.yaml.world.1.expect │ │ │ │ ├── bad_sdk_uri.yaml.world.2.expect │ │ │ │ ├── bad_sdk_uri.yaml.world.3.expect │ │ │ │ ├── calculated_bounds_no_strongmode.yaml │ │ │ │ ├── can_get_rid_of_nnbd_issue_error.yaml │ │ │ │ ├── can_get_rid_of_nnbd_issue_error.yaml.world.1.expect │ │ │ │ ├── can_get_rid_of_nnbd_issue_error.yaml.world.2.expect │ │ │ │ ├── can_get_rid_of_nnbd_issue_error.yaml.world.3.expect │ │ │ │ ├── can_get_rid_of_nnbd_issue_error.yaml.world.4.expect │ │ │ │ ├── change_between_no_nnbd_and_nnbd.yaml │ │ │ │ ├── change_between_no_nnbd_and_nnbd.yaml.world.1.expect │ │ │ │ ├── change_between_no_nnbd_and_nnbd.yaml.world.2.expect │ │ │ │ ├── change_main.yaml │ │ │ │ ├── change_main.yaml.world.1.expect │ │ │ │ ├── change_main.yaml.world.2.expect │ │ │ │ ├── change_main2.yaml │ │ │ │ ├── change_main2.yaml.world.1.expect │ │ │ │ ├── change_main2.yaml.world.2.expect │ │ │ │ ├── changed_error.yaml │ │ │ │ ├── changed_error.yaml.world.1.expect │ │ │ │ ├── changed_error.yaml.world.2.expect │ │ │ │ ├── changed_serialization_2.yaml │ │ │ │ ├── changed_serialization_2.yaml.world.1.expect │ │ │ │ ├── changed_serialization_2.yaml.world.2.expect │ │ │ │ ├── changing_modules.yaml │ │ │ │ ├── changing_modules.yaml.world.1.expect │ │ │ │ ├── changing_modules.yaml.world.2.expect │ │ │ │ ├── changing_modules.yaml.world.3.expect │ │ │ │ ├── changing_modules_10.yaml │ │ │ │ ├── changing_modules_10.yaml.world.1.expect │ │ │ │ ├── changing_modules_10.yaml.world.2.expect │ │ │ │ ├── changing_modules_11.yaml │ │ │ │ ├── changing_modules_11.yaml.world.1.expect │ │ │ │ ├── changing_modules_11.yaml.world.2.expect │ │ │ │ ├── changing_modules_12.yaml │ │ │ │ ├── changing_modules_12.yaml.world.1.expect │ │ │ │ ├── changing_modules_13.yaml │ │ │ │ ├── changing_modules_13.yaml.world.1.expect │ │ │ │ ├── changing_modules_14.yaml │ │ │ │ ├── changing_modules_14.yaml.world.1.expect │ │ │ │ ├── changing_modules_15.yaml │ │ │ │ ├── changing_modules_15.yaml.world.1.expect │ │ │ │ ├── changing_modules_16.yaml │ │ │ │ ├── changing_modules_2.yaml │ │ │ │ ├── changing_modules_2.yaml.world.1.expect │ │ │ │ ├── changing_modules_2.yaml.world.2.expect │ │ │ │ ├── changing_modules_3.yaml │ │ │ │ ├── changing_modules_3.yaml.world.1.expect │ │ │ │ ├── changing_modules_3.yaml.world.2.expect │ │ │ │ ├── changing_modules_4.yaml │ │ │ │ ├── changing_modules_4.yaml.world.1.expect │ │ │ │ ├── changing_modules_5.yaml │ │ │ │ ├── changing_modules_5.yaml.world.1.expect │ │ │ │ ├── changing_modules_6.yaml │ │ │ │ ├── changing_modules_6.yaml.world.1.expect │ │ │ │ ├── changing_modules_7.yaml │ │ │ │ ├── changing_modules_7.yaml.world.1.expect │ │ │ │ ├── changing_modules_7.yaml.world.2.expect │ │ │ │ ├── changing_modules_8.yaml │ │ │ │ ├── changing_modules_8.yaml.world.1.expect │ │ │ │ ├── changing_modules_9.yaml │ │ │ │ ├── changing_modules_9.yaml.world.1.expect │ │ │ │ ├── changing_modules_9.yaml.world.2.expect │ │ │ │ ├── changing_nullability_on_recompile.yaml │ │ │ │ ├── changing_nullability_on_recompile.yaml.world.1.expect │ │ │ │ ├── changing_nullability_on_recompile.yaml.world.2.expect │ │ │ │ ├── cleans_up_uritosource_non_package_part.yaml │ │ │ │ ├── cleans_up_uritosource_non_package_part.yaml.world.1.expect │ │ │ │ ├── cleans_up_uritosource_non_package_part.yaml.world.2.expect │ │ │ │ ├── cleans_up_uritosource_non_package_part_if_unused.yaml │ │ │ │ ├── cleans_up_uritosource_non_package_part_if_unused.yaml.world.1.expect │ │ │ │ ├── cleans_up_uritosource_non_package_part_if_unused.yaml.world.2.expect │ │ │ │ ├── cleans_up_uritosource_non_package_unreferenced_libraries.yaml │ │ │ │ ├── cleans_up_uritosource_non_package_unreferenced_libraries.yaml.world.1.expect │ │ │ │ ├── cleans_up_uritosource_non_package_unreferenced_libraries.yaml.world.2.expect │ │ │ │ ├── cleans_up_uritosource_non_package_unreferenced_libraries.yaml.world.3.expect │ │ │ │ ├── cleans_up_uritosource_unreferenced_package_library.yaml │ │ │ │ ├── cleans_up_uritosource_unreferenced_package_library.yaml.world.1.expect │ │ │ │ ├── cleans_up_uritosource_unreferenced_package_library.yaml.world.2.expect │ │ │ │ ├── const_to_string.yaml │ │ │ │ ├── const_to_string.yaml.world.1.expect │ │ │ │ ├── const_to_string.yaml.world.2.expect │ │ │ │ ├── constant_exports_hash.yaml │ │ │ │ ├── constant_exports_hash.yaml.world.1.expect │ │ │ │ ├── constant_exports_hash.yaml.world.2.expect │ │ │ │ ├── constant_fileoffset_and_typedef.yaml │ │ │ │ ├── constant_fileoffset_and_typedef.yaml.world.1.expect │ │ │ │ ├── constant_fileoffset_and_typedef.yaml.world.2.expect │ │ │ │ ├── constant_set_literal.yaml │ │ │ │ ├── constant_set_literal.yaml.world.1.expect │ │ │ │ ├── constant_set_literal.yaml.world.2.expect │ │ │ │ ├── constructor_change.yaml │ │ │ │ ├── constructor_change.yaml.world.1.expect │ │ │ │ ├── constructor_change.yaml.world.2.expect │ │ │ │ ├── constructor_change.yaml.world.3.expect │ │ │ │ ├── crash_01.yaml │ │ │ │ ├── crash_01.yaml.world.1.expect │ │ │ │ ├── crash_02.yaml │ │ │ │ ├── crash_02.yaml.world.1.expect │ │ │ │ ├── crash_03.yaml │ │ │ │ ├── crash_03.yaml.world.1.expect │ │ │ │ ├── crash_04.yaml │ │ │ │ ├── crash_04.yaml.world.1.expect │ │ │ │ ├── crash_05.yaml │ │ │ │ ├── crash_05.yaml.world.1.expect │ │ │ │ ├── crash_05.yaml.world.2.expect │ │ │ │ ├── crash_06.yaml │ │ │ │ ├── crash_06.yaml.world.1.expect │ │ │ │ ├── crash_06.yaml.world.2.expect │ │ │ │ ├── crash_07.yaml │ │ │ │ ├── crash_07.yaml.world.1.expect │ │ │ │ ├── crash_test_1.yaml │ │ │ │ ├── crash_test_1.yaml.world.1.expect │ │ │ │ ├── crash_test_1.yaml.world.2.expect │ │ │ │ ├── dart2js_late.yaml │ │ │ │ ├── dart2js_late.yaml.world.1.expect │ │ │ │ ├── dart2js_late.yaml.world.2.expect │ │ │ │ ├── deferred_library.yaml │ │ │ │ ├── deleting_file.yaml │ │ │ │ ├── deleting_file.yaml.world.1.expect │ │ │ │ ├── deleting_file.yaml.world.2.expect │ │ │ │ ├── deleting_file.yaml.world.3.expect │ │ │ │ ├── deleting_file.yaml.world.4.expect │ │ │ │ ├── disappearing_library.yaml │ │ │ │ ├── disappearing_library.yaml.world.1.expect │ │ │ │ ├── disappearing_library.yaml.world.2.expect │ │ │ │ ├── disappearing_package.yaml │ │ │ │ ├── disappearing_package.yaml.world.1.expect │ │ │ │ ├── disappearing_package.yaml.world.2.expect │ │ │ │ ├── entry_not_package_url_main.yaml │ │ │ │ ├── entry_not_package_url_main.yaml.world.1.expect │ │ │ │ ├── entry_not_package_url_main_with_errors.yaml │ │ │ │ ├── entry_not_package_url_main_with_errors.yaml.world.1.expect │ │ │ │ ├── entry_not_package_url_no_main.yaml │ │ │ │ ├── entry_not_package_url_no_main.yaml.world.1.expect │ │ │ │ ├── error_on_recompile_with_no_change.yaml │ │ │ │ ├── error_on_recompile_with_no_change.yaml.world.1.expect │ │ │ │ ├── error_on_recompile_with_no_change.yaml.world.2.expect │ │ │ │ ├── error_on_recompile_with_no_change_02.yaml │ │ │ │ ├── error_on_recompile_with_no_change_02.yaml.world.1.expect │ │ │ │ ├── error_on_recompile_with_no_change_02.yaml.world.2.expect │ │ │ │ ├── experiments_enabled_1.yaml │ │ │ │ ├── experiments_enabled_1.yaml.world.1.expect │ │ │ │ ├── export_core.yaml │ │ │ │ ├── export_core.yaml.world.1.expect │ │ │ │ ├── export_core.yaml.world.2.expect │ │ │ │ ├── export_core.yaml.world.3.expect │ │ │ │ ├── export_duplicate.yaml │ │ │ │ ├── export_duplicate.yaml.world.1.expect │ │ │ │ ├── export_duplicate.yaml.world.2.expect │ │ │ │ ├── export_duplicate.yaml.world.3.expect │ │ │ │ ├── expression_calculation_with_error.yaml │ │ │ │ ├── expression_calculation_with_error.yaml.world.1.expect │ │ │ │ ├── expression_calculation_with_error.yaml.world.1.expression.1.expect │ │ │ │ ├── expression_calculation_with_error.yaml.world.2.expect │ │ │ │ ├── extension_expression_compilation_usage.yaml │ │ │ │ ├── extension_expression_compilation_usage.yaml.world.1.expect │ │ │ │ ├── extension_expression_compilation_usage.yaml.world.1.expression.1.expect │ │ │ │ ├── extension_prefix_double_import_then_conflict.yaml │ │ │ │ ├── extension_prefix_double_import_then_conflict.yaml.world.1.expect │ │ │ │ ├── extension_prefix_double_import_then_conflict.yaml.world.2.expect │ │ │ │ ├── extension_prefix_double_import_then_conflict.yaml.world.3.expect │ │ │ │ ├── extension_usage_from_dill.yaml │ │ │ │ ├── extension_usage_from_dill.yaml.world.1.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.1.expression.1.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.1.expression.2.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.1.expression.3.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.1.expression.4.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.1.expression.5.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.2.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.2.expression.1.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.2.expression.2.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.2.expression.3.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.2.expression.4.expect │ │ │ │ ├── extension_usage_from_dill.yaml.world.2.expression.5.expect │ │ │ │ ├── external_extension_field.yaml │ │ │ │ ├── external_extension_field.yaml.world.1.expect │ │ │ │ ├── external_extension_field.yaml.world.2.expect │ │ │ │ ├── ffi_01.yaml │ │ │ │ ├── ffi_01.yaml.world.1.expect │ │ │ │ ├── ffi_01.yaml.world.2.expect │ │ │ │ ├── ffi_02.yaml │ │ │ │ ├── ffi_02.yaml.world.1.expect │ │ │ │ ├── ffi_02.yaml.world.1.expression.1.expect │ │ │ │ ├── flutter_issue_66122.yaml │ │ │ │ ├── flutter_issue_66122.yaml.world.1.expect │ │ │ │ ├── flutter_issue_66122.yaml.world.2.expect │ │ │ │ ├── flutter_mixin_failure_1.yaml │ │ │ │ ├── flutter_mixin_failure_1.yaml.world.1.expect │ │ │ │ ├── flutter_mixin_failure_1.yaml.world.2.expect │ │ │ │ ├── flutter_widget_factory.yaml │ │ │ │ ├── flutter_widget_factory.yaml.world.1.expect │ │ │ │ ├── flutter_widget_factory.yaml.world.2.expect │ │ │ │ ├── flutter_widget_factory_legacy.yaml │ │ │ │ ├── flutter_widget_factory_legacy.yaml.world.1.expect │ │ │ │ ├── flutter_widget_factory_legacy.yaml.world.2.expect │ │ │ │ ├── flutter_widget_transform.yaml │ │ │ │ ├── flutter_widget_transform.yaml.world.1.expect │ │ │ │ ├── flutter_widget_transform.yaml.world.2.expect │ │ │ │ ├── flutter_widget_transform_const.yaml │ │ │ │ ├── flutter_widget_transform_const.yaml.world.1.expect │ │ │ │ ├── flutter_widget_transform_const.yaml.world.2.expect │ │ │ │ ├── flutter_widget_transform_const.yaml.world.3.expect │ │ │ │ ├── flutter_widget_transform_nnbd.yaml │ │ │ │ ├── flutter_widget_transform_nnbd.yaml.world.1.expect │ │ │ │ ├── flutter_widget_transform_nnbd.yaml.world.2.expect │ │ │ │ ├── flutter_widget_transform_pattern.yaml │ │ │ │ ├── flutter_widget_transform_pattern.yaml.world.1.expect │ │ │ │ ├── flutter_widget_transform_pattern.yaml.world.2.expect │ │ │ │ ├── flutter_widget_transformer_43371.yaml │ │ │ │ ├── flutter_widget_transformer_43371.yaml.world.1.expect │ │ │ │ ├── flutter_widget_transformer_43371.yaml.world.2.expect │ │ │ │ ├── flutter_widget_transformer_non_const.yaml │ │ │ │ ├── flutter_widget_transformer_non_const.yaml.world.1.expect │ │ │ │ ├── flutter_widget_transformer_non_const.yaml.world.2.expect │ │ │ │ ├── import_package_by_file_uri.yaml │ │ │ │ ├── import_package_by_file_uri.yaml.world.1.expect │ │ │ │ ├── import_package_by_file_uri.yaml.world.2.expect │ │ │ │ ├── incremental_serialization_1.yaml │ │ │ │ ├── incremental_serialization_1.yaml.world.1.expect │ │ │ │ ├── incremental_serialization_1.yaml.world.2.expect │ │ │ │ ├── incremental_serialization_1.yaml.world.3.expect │ │ │ │ ├── incremental_serialization_1.yaml.world.4.expect │ │ │ │ ├── incremental_serialization_2.yaml │ │ │ │ ├── incremental_serialization_2.yaml.world.1.expect │ │ │ │ ├── incremental_serialization_2.yaml.world.2.expect │ │ │ │ ├── incremental_serialization_3.yaml │ │ │ │ ├── incremental_serialization_3.yaml.world.1.expect │ │ │ │ ├── incremental_serialization_3.yaml.world.2.expect │ │ │ │ ├── incremental_serialization_4.yaml │ │ │ │ ├── incremental_serialization_4.yaml.world.1.expect │ │ │ │ ├── incremental_serialization_4.yaml.world.2.expect │ │ │ │ ├── initialize_with_file_then_use_type.yaml │ │ │ │ ├── initialize_with_file_then_use_type.yaml.world.1.expect │ │ │ │ ├── initialize_with_file_then_use_type.yaml.world.2.expect │ │ │ │ ├── initialize_with_file_then_use_type.yaml.world.3.expect │ │ │ │ ├── initialize_with_unused_package_then_use_type.yaml │ │ │ │ ├── initialize_with_unused_package_then_use_type.yaml.world.1.expect │ │ │ │ ├── initialize_with_unused_package_then_use_type.yaml.world.2.expect │ │ │ │ ├── initialize_with_unused_package_then_use_type.yaml.world.3.expect │ │ │ │ ├── initializer_implicit_null.yaml │ │ │ │ ├── initializer_implicit_null.yaml.world.1.expect │ │ │ │ ├── initializer_implicit_null.yaml.world.2.expect │ │ │ │ ├── initializer_not_copied.yaml │ │ │ │ ├── initializer_not_copied.yaml.world.1.expect │ │ │ │ ├── initializer_not_copied.yaml.world.2.expect │ │ │ │ ├── invalid_part_uri_01.yaml │ │ │ │ ├── invalid_part_uri_01.yaml.world.1.expect │ │ │ │ ├── invalid_part_uri_01.yaml.world.2.expect │ │ │ │ ├── invalid_uri_as_part.yaml │ │ │ │ ├── invalid_uri_as_part.yaml.world.1.expect │ │ │ │ ├── invalid_uri_as_part.yaml.world.2.expect │ │ │ │ ├── invalidate_export_of_main.yaml │ │ │ │ ├── invalidate_package_part.yaml │ │ │ │ ├── invalidate_package_part.yaml.world.1.expect │ │ │ │ ├── invalidate_package_part.yaml.world.2.expect │ │ │ │ ├── invalidate_package_part.yaml.world.3.expect │ │ │ │ ├── invalidate_package_part_2.yaml │ │ │ │ ├── invalidate_package_part_2.yaml.world.1.expect │ │ │ │ ├── invalidate_package_part_2.yaml.world.2.expect │ │ │ │ ├── invalidate_package_part_2.yaml.world.3.expect │ │ │ │ ├── invalidate_package_part_as_file.yaml │ │ │ │ ├── invalidate_package_part_as_package.yaml │ │ │ │ ├── invalidate_package_part_from_package_url_as_file.yaml │ │ │ │ ├── invalidate_package_part_from_package_url_as_package.yaml │ │ │ │ ├── invalidate_part.yaml │ │ │ │ ├── invalidation_across_compile_time_error.yaml │ │ │ │ ├── invalidation_across_compile_time_error.yaml.world.1.expect │ │ │ │ ├── invalidation_across_compile_time_error.yaml.world.2.expect │ │ │ │ ├── invalidation_across_compile_time_error.yaml.world.3.expect │ │ │ │ ├── issue_32366.yaml │ │ │ │ ├── issue_32366.yaml.world.1.expect │ │ │ │ ├── issue_32366.yaml.world.2.expect │ │ │ │ ├── issue_41976.yaml │ │ │ │ ├── issue_41976.yaml.world.1.expect │ │ │ │ ├── issue_41976.yaml.world.1.expression.1.expect │ │ │ │ ├── issue_41976.yaml.world.1.expression.2.expect │ │ │ │ ├── issue_42323.yaml │ │ │ │ ├── issue_42323.yaml.world.1.expect │ │ │ │ ├── issue_42323_prime.yaml │ │ │ │ ├── issue_42323_prime.yaml.world.1.expect │ │ │ │ ├── issue_44523.yaml │ │ │ │ ├── issue_44523.yaml.world.1.expect │ │ │ │ ├── issue_44523.yaml.world.2.expect │ │ │ │ ├── issue_46666.yaml │ │ │ │ ├── issue_46666.yaml.world.1.expect │ │ │ │ ├── issue_46666.yaml.world.2.expect │ │ │ │ ├── issue_49968.yaml │ │ │ │ ├── issue_49968.yaml.world.1.expect │ │ │ │ ├── issue_49968.yaml.world.2.expect │ │ │ │ ├── js_interop_change.yaml │ │ │ │ ├── js_interop_change.yaml.world.1.expect │ │ │ │ ├── js_interop_change.yaml.world.2.expect │ │ │ │ ├── late_lowering.yaml │ │ │ │ ├── late_lowering.yaml.world.1.expect │ │ │ │ ├── late_lowering.yaml.world.2.expect │ │ │ │ ├── load_from_component_explicitly_import_dart_core.yaml │ │ │ │ ├── load_from_component_explicitly_import_dart_core.yaml.world.1.expect │ │ │ │ ├── load_from_component_explicitly_import_dart_core.yaml.world.2.expect │ │ │ │ ├── mixin_application_declares.yaml │ │ │ │ ├── mixin_application_declares.yaml.world.1.expect │ │ │ │ ├── mixin_application_declares.yaml.world.2.expect │ │ │ │ ├── mixin_application_declares.yaml.world.3.expect │ │ │ │ ├── mixin_from_sdk.yaml │ │ │ │ ├── mixin_inferrer_error.yaml │ │ │ │ ├── mixin_inferrer_error.yaml.world.1.expect │ │ │ │ ├── multiple_entriepoints.yaml │ │ │ │ ├── multiple_entriepoints.yaml.world.1.expect │ │ │ │ ├── multiple_entry_points.yaml │ │ │ │ ├── multiple_entry_points.yaml.world.1.expect │ │ │ │ ├── multiple_entry_points.yaml.world.2.expect │ │ │ │ ├── multiple_entry_points.yaml.world.2.expression.1.expect │ │ │ │ ├── no_change_but_changed_type.yaml │ │ │ │ ├── no_change_but_changed_type.yaml.world.1.expect │ │ │ │ ├── no_change_but_changed_type.yaml.world.2.expect │ │ │ │ ├── no_change_but_changed_type_02.yaml │ │ │ │ ├── no_change_but_changed_type_02.yaml.world.1.expect │ │ │ │ ├── no_change_but_changed_type_02.yaml.world.2.expect │ │ │ │ ├── no_invalidate_on_export_of_main.yaml │ │ │ │ ├── no_outline_change_1.yaml │ │ │ │ ├── no_outline_change_1.yaml.world.1.expect │ │ │ │ ├── no_outline_change_1.yaml.world.2.expect │ │ │ │ ├── no_outline_change_10.yaml │ │ │ │ ├── no_outline_change_10.yaml.world.1.expect │ │ │ │ ├── no_outline_change_10.yaml.world.2.expect │ │ │ │ ├── no_outline_change_10.yaml.world.3.expect │ │ │ │ ├── no_outline_change_11.yaml │ │ │ │ ├── no_outline_change_11.yaml.world.1.expect │ │ │ │ ├── no_outline_change_11.yaml.world.2.expect │ │ │ │ ├── no_outline_change_12.yaml │ │ │ │ ├── no_outline_change_12.yaml.world.1.expect │ │ │ │ ├── no_outline_change_12.yaml.world.2.expect │ │ │ │ ├── no_outline_change_12.yaml.world.3.expect │ │ │ │ ├── no_outline_change_12.yaml.world.4.expect │ │ │ │ ├── no_outline_change_13.yaml │ │ │ │ ├── no_outline_change_13.yaml.world.1.expect │ │ │ │ ├── no_outline_change_13.yaml.world.2.expect │ │ │ │ ├── no_outline_change_14.yaml │ │ │ │ ├── no_outline_change_14.yaml.world.1.expect │ │ │ │ ├── no_outline_change_14.yaml.world.2.expect │ │ │ │ ├── no_outline_change_14.yaml.world.3.expect │ │ │ │ ├── no_outline_change_15.yaml │ │ │ │ ├── no_outline_change_15.yaml.world.1.expect │ │ │ │ ├── no_outline_change_15.yaml.world.2.expect │ │ │ │ ├── no_outline_change_16.yaml │ │ │ │ ├── no_outline_change_16.yaml.world.1.expect │ │ │ │ ├── no_outline_change_16.yaml.world.2.expect │ │ │ │ ├── no_outline_change_17.yaml │ │ │ │ ├── no_outline_change_17.yaml.world.1.expect │ │ │ │ ├── no_outline_change_17.yaml.world.2.expect │ │ │ │ ├── no_outline_change_18.yaml │ │ │ │ ├── no_outline_change_18.yaml.world.1.expect │ │ │ │ ├── no_outline_change_18.yaml.world.2.expect │ │ │ │ ├── no_outline_change_19.yaml │ │ │ │ ├── no_outline_change_19.yaml.world.1.expect │ │ │ │ ├── no_outline_change_19.yaml.world.2.expect │ │ │ │ ├── no_outline_change_1_disabled.yaml.world.1.expect │ │ │ │ ├── no_outline_change_1_disabled.yaml.world.2.expect │ │ │ │ ├── no_outline_change_2.yaml │ │ │ │ ├── no_outline_change_2.yaml.world.1.expect │ │ │ │ ├── no_outline_change_2.yaml.world.2.expect │ │ │ │ ├── no_outline_change_20.yaml │ │ │ │ ├── no_outline_change_20.yaml.world.1.expect │ │ │ │ ├── no_outline_change_20.yaml.world.2.expect │ │ │ │ ├── no_outline_change_21.yaml │ │ │ │ ├── no_outline_change_21.yaml.world.1.expect │ │ │ │ ├── no_outline_change_21.yaml.world.2.expect │ │ │ │ ├── no_outline_change_22.yaml │ │ │ │ ├── no_outline_change_22.yaml.world.1.expect │ │ │ │ ├── no_outline_change_22.yaml.world.2.expect │ │ │ │ ├── no_outline_change_23.yaml │ │ │ │ ├── no_outline_change_23.yaml.world.1.expect │ │ │ │ ├── no_outline_change_23.yaml.world.2.expect │ │ │ │ ├── no_outline_change_24.yaml │ │ │ │ ├── no_outline_change_24.yaml.world.1.expect │ │ │ │ ├── no_outline_change_24.yaml.world.2.expect │ │ │ │ ├── no_outline_change_25.yaml │ │ │ │ ├── no_outline_change_25.yaml.world.1.expect │ │ │ │ ├── no_outline_change_25.yaml.world.2.expect │ │ │ │ ├── no_outline_change_26.yaml │ │ │ │ ├── no_outline_change_26.yaml.world.1.expect │ │ │ │ ├── no_outline_change_26.yaml.world.2.expect │ │ │ │ ├── no_outline_change_27.yaml │ │ │ │ ├── no_outline_change_27.yaml.world.1.expect │ │ │ │ ├── no_outline_change_27.yaml.world.2.expect │ │ │ │ ├── no_outline_change_27.yaml.world.3.expect │ │ │ │ ├── no_outline_change_28.yaml │ │ │ │ ├── no_outline_change_28.yaml.world.1.expect │ │ │ │ ├── no_outline_change_28.yaml.world.2.expect │ │ │ │ ├── no_outline_change_29.yaml │ │ │ │ ├── no_outline_change_29.yaml.world.1.expect │ │ │ │ ├── no_outline_change_29.yaml.world.2.expect │ │ │ │ ├── no_outline_change_3.yaml │ │ │ │ ├── no_outline_change_3.yaml.world.1.expect │ │ │ │ ├── no_outline_change_3.yaml.world.2.expect │ │ │ │ ├── no_outline_change_30.yaml │ │ │ │ ├── no_outline_change_30.yaml.world.1.expect │ │ │ │ ├── no_outline_change_30.yaml.world.2.expect │ │ │ │ ├── no_outline_change_31.yaml │ │ │ │ ├── no_outline_change_31.yaml.world.1.expect │ │ │ │ ├── no_outline_change_31.yaml.world.2.expect │ │ │ │ ├── no_outline_change_32.yaml │ │ │ │ ├── no_outline_change_32.yaml.world.1.expect │ │ │ │ ├── no_outline_change_32.yaml.world.2.expect │ │ │ │ ├── no_outline_change_33.yaml │ │ │ │ ├── no_outline_change_33.yaml.world.1.expect │ │ │ │ ├── no_outline_change_33.yaml.world.2.expect │ │ │ │ ├── no_outline_change_33.yaml.world.3.expect │ │ │ │ ├── no_outline_change_33.yaml.world.4.expect │ │ │ │ ├── no_outline_change_34.yaml │ │ │ │ ├── no_outline_change_34.yaml.world.1.expect │ │ │ │ ├── no_outline_change_34.yaml.world.2.expect │ │ │ │ ├── no_outline_change_34.yaml.world.3.expect │ │ │ │ ├── no_outline_change_34.yaml.world.4.expect │ │ │ │ ├── no_outline_change_35.yaml │ │ │ │ ├── no_outline_change_35.yaml.world.1.expect │ │ │ │ ├── no_outline_change_35.yaml.world.2.expect │ │ │ │ ├── no_outline_change_35.yaml.world.3.expect │ │ │ │ ├── no_outline_change_36.yaml │ │ │ │ ├── no_outline_change_36.yaml.world.1.expect │ │ │ │ ├── no_outline_change_36.yaml.world.2.expect │ │ │ │ ├── no_outline_change_36.yaml.world.3.expect │ │ │ │ ├── no_outline_change_36.yaml.world.4.expect │ │ │ │ ├── no_outline_change_37.yaml │ │ │ │ ├── no_outline_change_37.yaml.world.1.expect │ │ │ │ ├── no_outline_change_37.yaml.world.2.expect │ │ │ │ ├── no_outline_change_37.yaml.world.3.expect │ │ │ │ ├── no_outline_change_37.yaml.world.4.expect │ │ │ │ ├── no_outline_change_38.yaml │ │ │ │ ├── no_outline_change_38.yaml.world.1.expect │ │ │ │ ├── no_outline_change_38.yaml.world.2.expect │ │ │ │ ├── no_outline_change_38.yaml.world.3.expect │ │ │ │ ├── no_outline_change_39.yaml │ │ │ │ ├── no_outline_change_39.yaml.world.1.expect │ │ │ │ ├── no_outline_change_39.yaml.world.2.expect │ │ │ │ ├── no_outline_change_39.yaml.world.3.expect │ │ │ │ ├── no_outline_change_4.yaml │ │ │ │ ├── no_outline_change_4.yaml.world.1.expect │ │ │ │ ├── no_outline_change_4.yaml.world.2.expect │ │ │ │ ├── no_outline_change_40.yaml │ │ │ │ ├── no_outline_change_40.yaml.world.1.expect │ │ │ │ ├── no_outline_change_40.yaml.world.2.expect │ │ │ │ ├── no_outline_change_40.yaml.world.3.expect │ │ │ │ ├── no_outline_change_41.yaml │ │ │ │ ├── no_outline_change_41.yaml.world.1.expect │ │ │ │ ├── no_outline_change_41.yaml.world.2.expect │ │ │ │ ├── no_outline_change_41.yaml.world.3.expect │ │ │ │ ├── no_outline_change_42.yaml │ │ │ │ ├── no_outline_change_42.yaml.world.1.expect │ │ │ │ ├── no_outline_change_42.yaml.world.2.expect │ │ │ │ ├── no_outline_change_42.yaml.world.3.expect │ │ │ │ ├── no_outline_change_42.yaml.world.4.expect │ │ │ │ ├── no_outline_change_43.yaml │ │ │ │ ├── no_outline_change_43.yaml.world.1.expect │ │ │ │ ├── no_outline_change_43.yaml.world.2.expect │ │ │ │ ├── no_outline_change_43.yaml.world.3.expect │ │ │ │ ├── no_outline_change_43.yaml.world.4.expect │ │ │ │ ├── no_outline_change_44_flutter.yaml │ │ │ │ ├── no_outline_change_44_flutter.yaml.world.1.expect │ │ │ │ ├── no_outline_change_44_flutter.yaml.world.2.expect │ │ │ │ ├── no_outline_change_45_flutter.yaml │ │ │ │ ├── no_outline_change_45_flutter.yaml.world.1.expect │ │ │ │ ├── no_outline_change_45_flutter.yaml.world.2.expect │ │ │ │ ├── no_outline_change_45_flutter_prime_1.yaml │ │ │ │ ├── no_outline_change_45_flutter_prime_1.yaml.world.1.expect │ │ │ │ ├── no_outline_change_45_flutter_prime_1.yaml.world.2.expect │ │ │ │ ├── no_outline_change_46.yaml │ │ │ │ ├── no_outline_change_46.yaml.world.1.expect │ │ │ │ ├── no_outline_change_46.yaml.world.2.expect │ │ │ │ ├── no_outline_change_47.yaml │ │ │ │ ├── no_outline_change_47.yaml.world.1.expect │ │ │ │ ├── no_outline_change_47.yaml.world.2.expect │ │ │ │ ├── no_outline_change_48_ffi.yaml │ │ │ │ ├── no_outline_change_48_ffi.yaml.world.1.expect │ │ │ │ ├── no_outline_change_48_ffi.yaml.world.2.expect │ │ │ │ ├── no_outline_change_49_ffi.yaml │ │ │ │ ├── no_outline_change_49_ffi.yaml.world.1.expect │ │ │ │ ├── no_outline_change_49_ffi.yaml.world.2.expect │ │ │ │ ├── no_outline_change_5.yaml │ │ │ │ ├── no_outline_change_5.yaml.world.1.expect │ │ │ │ ├── no_outline_change_5.yaml.world.2.expect │ │ │ │ ├── no_outline_change_5.yaml.world.3.expect │ │ │ │ ├── no_outline_change_50_ffi.yaml │ │ │ │ ├── no_outline_change_50_ffi.yaml.world.1.expect │ │ │ │ ├── no_outline_change_50_ffi.yaml.world.2.expect │ │ │ │ ├── no_outline_change_51.yaml │ │ │ │ ├── no_outline_change_51.yaml.world.1.expect │ │ │ │ ├── no_outline_change_51.yaml.world.2.expect │ │ │ │ ├── no_outline_change_51.yaml.world.3.expect │ │ │ │ ├── no_outline_change_52.yaml │ │ │ │ ├── no_outline_change_52.yaml.world.1.expect │ │ │ │ ├── no_outline_change_52.yaml.world.2.expect │ │ │ │ ├── no_outline_change_6.yaml │ │ │ │ ├── no_outline_change_6.yaml.world.1.expect │ │ │ │ ├── no_outline_change_6.yaml.world.2.expect │ │ │ │ ├── no_outline_change_6.yaml.world.3.expect │ │ │ │ ├── no_outline_change_7.yaml │ │ │ │ ├── no_outline_change_7.yaml.world.1.expect │ │ │ │ ├── no_outline_change_7.yaml.world.2.expect │ │ │ │ ├── no_outline_change_8.yaml │ │ │ │ ├── no_outline_change_8.yaml.world.1.expect │ │ │ │ ├── no_outline_change_8.yaml.world.2.expect │ │ │ │ ├── no_outline_change_9.yaml │ │ │ │ ├── no_outline_change_9.yaml.world.1.expect │ │ │ │ ├── no_outline_change_9.yaml.world.2.expect │ │ │ │ ├── no_such_method_forwarder.yaml │ │ │ │ ├── no_such_method_forwarder.yaml.world.1.expect │ │ │ │ ├── no_such_method_forwarder.yaml.world.2.expect │ │ │ │ ├── omit_platform_works_1.yaml │ │ │ │ ├── omit_platform_works_1.yaml.world.1.expect │ │ │ │ ├── omit_platform_works_1.yaml.world.2.expect │ │ │ │ ├── omit_platform_works_2.yaml │ │ │ │ ├── omit_platform_works_2.yaml.world.1.expect │ │ │ │ ├── omit_platform_works_2.yaml.world.2.expect │ │ │ │ ├── omit_platform_works_3.yaml │ │ │ │ ├── omit_platform_works_3.yaml.world.1.expect │ │ │ │ ├── omit_platform_works_3.yaml.world.2.expect │ │ │ │ ├── omit_platform_works_3.yaml.world.3.expect │ │ │ │ ├── omit_platform_works_3.yaml.world.4.expect │ │ │ │ ├── omit_platform_works_3.yaml.world.5.expect │ │ │ │ ├── outline_only.yaml │ │ │ │ ├── outline_only.yaml.world.1.expect │ │ │ │ ├── outline_only_2.yaml │ │ │ │ ├── outline_only_2.yaml.world.1.expect │ │ │ │ ├── part_as_entry.yaml │ │ │ │ ├── part_as_entry.yaml.world.1.expect │ │ │ │ ├── part_as_entry.yaml.world.2.expect │ │ │ │ ├── part_as_entry.yaml.world.3.expect │ │ │ │ ├── part_as_entry_2.yaml │ │ │ │ ├── part_as_entry_2.yaml.world.1.expect │ │ │ │ ├── part_as_entry_2.yaml.world.2.expect │ │ │ │ ├── part_as_entry_2.yaml.world.3.expect │ │ │ │ ├── part_as_package_entry.yaml │ │ │ │ ├── part_as_package_entry.yaml.world.1.expect │ │ │ │ ├── part_as_package_entry.yaml.world.2.expect │ │ │ │ ├── part_as_package_entry.yaml.world.3.expect │ │ │ │ ├── part_as_package_entry_2.yaml │ │ │ │ ├── part_as_package_entry_2.yaml.world.1.expect │ │ │ │ ├── part_as_package_entry_2.yaml.world.2.expect │ │ │ │ ├── part_as_package_entry_2.yaml.world.3.expect │ │ │ │ ├── part_main.yaml │ │ │ │ ├── part_main.yaml.world.1.expect │ │ │ │ ├── part_main.yaml.world.2.expect │ │ │ │ ├── part_not_part_of.yaml │ │ │ │ ├── part_not_part_of.yaml.world.1.expect │ │ │ │ ├── part_not_part_of.yaml.world.2.expect │ │ │ │ ├── part_not_part_of.yaml.world.3.expect │ │ │ │ ├── part_not_part_of_as_package.yaml │ │ │ │ ├── part_not_part_of_as_package.yaml.world.1.expect │ │ │ │ ├── part_not_part_of_as_package.yaml.world.2.expect │ │ │ │ ├── part_not_part_of_as_package.yaml.world.3.expect │ │ │ │ ├── part_not_part_of_experimental_invalidation.yaml │ │ │ │ ├── part_not_part_of_experimental_invalidation.yaml.world.1.expect │ │ │ │ ├── part_not_part_of_experimental_invalidation.yaml.world.2.expect │ │ │ │ ├── part_not_part_of_experimental_invalidation.yaml.world.3.expect │ │ │ │ ├── part_not_part_of_initialized_from_dill.yaml │ │ │ │ ├── part_not_part_of_initialized_from_dill.yaml.world.1.expect │ │ │ │ ├── part_not_part_of_initialized_from_dill.yaml.world.2.expect │ │ │ │ ├── part_not_part_of_initialized_from_dill.yaml.world.3.expect │ │ │ │ ├── regress_35215.yaml │ │ │ │ ├── regress_35215.yaml.world.1.expect │ │ │ │ ├── regress_35215.yaml.world.2.expect │ │ │ │ ├── regress_35215_prime.yaml │ │ │ │ ├── regress_35215_prime.yaml.world.1.expect │ │ │ │ ├── regress_35215_prime.yaml.world.2.expect │ │ │ │ ├── regress_46004.yaml │ │ │ │ ├── regress_46004.yaml.world.1.expect │ │ │ │ ├── regress_46004.yaml.world.2.expect │ │ │ │ ├── regress_46706.yaml │ │ │ │ ├── regress_46706.yaml.world.1.expect │ │ │ │ ├── regress_46706.yaml.world.2.expect │ │ │ │ ├── regress_46706_prime.yaml │ │ │ │ ├── regress_46706_prime.yaml.world.1.expect │ │ │ │ ├── regress_46706_prime.yaml.world.2.expect │ │ │ │ ├── regress_46706_prime_2.yaml │ │ │ │ ├── regress_46706_prime_2.yaml.world.1.expect │ │ │ │ ├── regress_46706_prime_2.yaml.world.2.expect │ │ │ │ ├── regress_46706_prime_3.yaml │ │ │ │ ├── regress_46706_prime_3.yaml.world.1.expect │ │ │ │ ├── regress_46706_prime_3.yaml.world.2.expect │ │ │ │ ├── reissue_errors_1.yaml │ │ │ │ ├── reissue_errors_1.yaml.world.1.expect │ │ │ │ ├── reissue_errors_1.yaml.world.2.expect │ │ │ │ ├── reissue_errors_1.yaml.world.3.expect │ │ │ │ ├── reissue_errors_1.yaml.world.4.expect │ │ │ │ ├── reissue_errors_1.yaml.world.5.expect │ │ │ │ ├── reissue_errors_1.yaml.world.6.expect │ │ │ │ ├── reissue_errors_10.yaml │ │ │ │ ├── reissue_errors_10.yaml.world.1.expect │ │ │ │ ├── reissue_errors_10.yaml.world.2.expect │ │ │ │ ├── reissue_errors_10.yaml.world.3.expect │ │ │ │ ├── reissue_errors_10.yaml.world.4.expect │ │ │ │ ├── reissue_errors_10.yaml.world.5.expect │ │ │ │ ├── reissue_errors_11.yaml │ │ │ │ ├── reissue_errors_11.yaml.world.1.expect │ │ │ │ ├── reissue_errors_11.yaml.world.2.expect │ │ │ │ ├── reissue_errors_11.yaml.world.3.expect │ │ │ │ ├── reissue_errors_2.yaml │ │ │ │ ├── reissue_errors_2.yaml.world.1.expect │ │ │ │ ├── reissue_errors_2.yaml.world.2.expect │ │ │ │ ├── reissue_errors_2.yaml.world.3.expect │ │ │ │ ├── reissue_errors_2.yaml.world.4.expect │ │ │ │ ├── reissue_errors_2.yaml.world.5.expect │ │ │ │ ├── reissue_errors_2.yaml.world.6.expect │ │ │ │ ├── reissue_errors_3.yaml │ │ │ │ ├── reissue_errors_3.yaml.world.1.expect │ │ │ │ ├── reissue_errors_3.yaml.world.2.expect │ │ │ │ ├── reissue_errors_3.yaml.world.3.expect │ │ │ │ ├── reissue_errors_3.yaml.world.4.expect │ │ │ │ ├── reissue_errors_3.yaml.world.5.expect │ │ │ │ ├── reissue_errors_4.yaml │ │ │ │ ├── reissue_errors_4.yaml.world.1.expect │ │ │ │ ├── reissue_errors_4.yaml.world.2.expect │ │ │ │ ├── reissue_errors_4.yaml.world.3.expect │ │ │ │ ├── reissue_errors_4.yaml.world.4.expect │ │ │ │ ├── reissue_errors_4.yaml.world.5.expect │ │ │ │ ├── reissue_errors_5.yaml │ │ │ │ ├── reissue_errors_5.yaml.world.1.expect │ │ │ │ ├── reissue_errors_5.yaml.world.2.expect │ │ │ │ ├── reissue_errors_5.yaml.world.3.expect │ │ │ │ ├── reissue_errors_5.yaml.world.4.expect │ │ │ │ ├── reissue_errors_6.yaml │ │ │ │ ├── reissue_errors_6.yaml.world.1.expect │ │ │ │ ├── reissue_errors_6.yaml.world.2.expect │ │ │ │ ├── reissue_errors_6.yaml.world.3.expect │ │ │ │ ├── reissue_errors_7.yaml │ │ │ │ ├── reissue_errors_7.yaml.world.1.expect │ │ │ │ ├── reissue_errors_7.yaml.world.2.expect │ │ │ │ ├── reissue_errors_7.yaml.world.3.expect │ │ │ │ ├── reissue_errors_7.yaml.world.4.expect │ │ │ │ ├── reissue_errors_7.yaml.world.5.expect │ │ │ │ ├── reissue_errors_8.yaml │ │ │ │ ├── reissue_errors_8.yaml.world.1.expect │ │ │ │ ├── reissue_errors_8.yaml.world.2.expect │ │ │ │ ├── reissue_errors_8.yaml.world.3.expect │ │ │ │ ├── reissue_errors_9.yaml │ │ │ │ ├── reissue_errors_9.yaml.world.1.expect │ │ │ │ ├── reissue_errors_9.yaml.world.2.expect │ │ │ │ ├── reissue_errors_9.yaml.world.3.expect │ │ │ │ ├── remove_import_with_error.yaml │ │ │ │ ├── remove_import_with_error.yaml.world.1.expect │ │ │ │ ├── remove_import_with_error.yaml.world.2.expect │ │ │ │ ├── remove_language_version.yaml │ │ │ │ ├── remove_language_version.yaml.world.1.expect │ │ │ │ ├── remove_language_version.yaml.world.2.expect │ │ │ │ ├── second_first.yaml │ │ │ │ ├── second_first.yaml.world.1.expect │ │ │ │ ├── second_first.yaml.world.2.expect │ │ │ │ ├── strongmode_mixins.yaml │ │ │ │ ├── strongmode_mixins_2.yaml │ │ │ │ ├── super_key.yaml │ │ │ │ ├── super_key.yaml.world.1.expect │ │ │ │ ├── super_key.yaml.world.2.expect │ │ │ │ ├── type_change_on_recompile.yaml │ │ │ │ ├── type_change_on_recompile.yaml.world.1.expect │ │ │ │ ├── type_change_on_recompile.yaml.world.2.expect │ │ │ │ ├── typedef_crash_01.yaml │ │ │ │ ├── typedef_crash_01.yaml.world.1.expect │ │ │ │ ├── typedef_crash_01.yaml.world.2.expect │ │ │ │ ├── unused_file.yaml │ │ │ │ ├── unused_file.yaml.world.1.expect │ │ │ │ ├── unused_file.yaml.world.2.expect │ │ │ │ ├── updated_package_1.yaml │ │ │ │ ├── updated_package_1.yaml.world.1.expect │ │ │ │ ├── updated_package_1.yaml.world.2.expect │ │ │ │ ├── updated_package_2.yaml │ │ │ │ ├── updated_package_2.yaml.world.1.expect │ │ │ │ ├── updated_package_2.yaml.world.2.expect │ │ │ │ ├── updated_package_3.yaml │ │ │ │ ├── updated_package_3.yaml.world.1.expect │ │ │ │ ├── updated_package_3.yaml.world.2.expect │ │ │ │ ├── updated_package_4.yaml │ │ │ │ ├── updated_package_4.yaml.world.1.expect │ │ │ │ ├── updated_package_4.yaml.world.2.expect │ │ │ │ ├── updated_package_uri.yaml │ │ │ │ ├── updated_package_uri.yaml.world.1.expect │ │ │ │ ├── updated_package_uri.yaml.world.2.expect │ │ │ │ ├── vm_IRTest_TypedDataAOT_FunctionalIndexError.yaml │ │ │ │ ├── vm_IRTest_TypedDataAOT_FunctionalIndexError.yaml.world.1.expect │ │ │ │ ├── vm_IRTest_TypedDataAOT_FunctionalIndexError.yaml.world.2.expect │ │ │ │ ├── vm_IRTest_TypedDataAOT_FunctionalIndexError.yaml.world.3.expect │ │ │ │ ├── working_with_synthetic_libraries_1.yaml │ │ │ │ ├── working_with_synthetic_libraries_1.yaml.world.1.expect │ │ │ │ ├── working_with_synthetic_libraries_1.yaml.world.2.expect │ │ │ │ ├── working_with_synthetic_libraries_2.yaml │ │ │ │ ├── working_with_synthetic_libraries_2.yaml.world.1.expect │ │ │ │ ├── working_with_synthetic_libraries_3.yaml │ │ │ │ ├── working_with_synthetic_libraries_3.yaml.world.1.expect │ │ │ │ ├── working_with_synthetic_libraries_4.yaml │ │ │ │ ├── working_with_synthetic_libraries_4.yaml.world.1.expect │ │ │ │ ├── working_with_synthetic_libraries_5.yaml │ │ │ │ └── working_with_synthetic_libraries_5.yaml.world.1.expect │ │ │ ├── incremental_bulk_compiler_full.status │ │ │ ├── incremental_bulk_compiler_smoke.status │ │ │ ├── incremental_dartino.status │ │ │ ├── inference │ │ │ │ ├── abstract_class_instantiation.dart │ │ │ │ ├── abstract_class_instantiation.dart.strong.expect │ │ │ │ ├── abstract_class_instantiation.dart.strong.transformed.expect │ │ │ │ ├── abstract_class_instantiation.dart.textual_outline.expect │ │ │ │ ├── abstract_class_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_class_instantiation.dart.weak.expect │ │ │ │ ├── abstract_class_instantiation.dart.weak.modular.expect │ │ │ │ ├── abstract_class_instantiation.dart.weak.outline.expect │ │ │ │ ├── abstract_class_instantiation.dart.weak.transformed.expect │ │ │ │ ├── abstract_class_instantiation2.dart │ │ │ │ ├── abstract_class_instantiation2.dart.strong.expect │ │ │ │ ├── abstract_class_instantiation2.dart.strong.transformed.expect │ │ │ │ ├── abstract_class_instantiation2.dart.textual_outline.expect │ │ │ │ ├── abstract_class_instantiation2.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_class_instantiation2.dart.weak.expect │ │ │ │ ├── abstract_class_instantiation2.dart.weak.modular.expect │ │ │ │ ├── abstract_class_instantiation2.dart.weak.outline.expect │ │ │ │ ├── abstract_class_instantiation2.dart.weak.transformed.expect │ │ │ │ ├── assert.dart │ │ │ │ ├── assert.dart.strong.expect │ │ │ │ ├── assert.dart.strong.transformed.expect │ │ │ │ ├── assert.dart.textual_outline.expect │ │ │ │ ├── assert.dart.textual_outline_modelled.expect │ │ │ │ ├── assert.dart.weak.expect │ │ │ │ ├── assert.dart.weak.modular.expect │ │ │ │ ├── assert.dart.weak.outline.expect │ │ │ │ ├── assert.dart.weak.transformed.expect │ │ │ │ ├── assert_initializer.dart │ │ │ │ ├── assert_initializer.dart.strong.expect │ │ │ │ ├── assert_initializer.dart.strong.transformed.expect │ │ │ │ ├── assert_initializer.dart.textual_outline.expect │ │ │ │ ├── assert_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── assert_initializer.dart.weak.expect │ │ │ │ ├── assert_initializer.dart.weak.modular.expect │ │ │ │ ├── assert_initializer.dart.weak.outline.expect │ │ │ │ ├── assert_initializer.dart.weak.transformed.expect │ │ │ │ ├── assign_local.dart │ │ │ │ ├── assign_local.dart.strong.expect │ │ │ │ ├── assign_local.dart.strong.transformed.expect │ │ │ │ ├── assign_local.dart.textual_outline.expect │ │ │ │ ├── assign_local.dart.textual_outline_modelled.expect │ │ │ │ ├── assign_local.dart.weak.expect │ │ │ │ ├── assign_local.dart.weak.modular.expect │ │ │ │ ├── assign_local.dart.weak.outline.expect │ │ │ │ ├── assign_local.dart.weak.transformed.expect │ │ │ │ ├── async_await.dart │ │ │ │ ├── async_await.dart.strong.expect │ │ │ │ ├── async_await.dart.strong.transformed.expect │ │ │ │ ├── async_await.dart.textual_outline.expect │ │ │ │ ├── async_await.dart.textual_outline_modelled.expect │ │ │ │ ├── async_await.dart.weak.expect │ │ │ │ ├── async_await.dart.weak.modular.expect │ │ │ │ ├── async_await.dart.weak.outline.expect │ │ │ │ ├── async_await.dart.weak.transformed.expect │ │ │ │ ├── async_await2.dart │ │ │ │ ├── async_await2.dart.strong.expect │ │ │ │ ├── async_await2.dart.strong.transformed.expect │ │ │ │ ├── async_await2.dart.textual_outline.expect │ │ │ │ ├── async_await2.dart.textual_outline_modelled.expect │ │ │ │ ├── async_await2.dart.weak.expect │ │ │ │ ├── async_await2.dart.weak.modular.expect │ │ │ │ ├── async_await2.dart.weak.outline.expect │ │ │ │ ├── async_await2.dart.weak.transformed.expect │ │ │ │ ├── async_closure_return_type_flatten.dart │ │ │ │ ├── async_closure_return_type_flatten.dart.strong.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.strong.transformed.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.textual_outline.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.textual_outline_modelled.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.weak.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.weak.modular.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.weak.outline.expect │ │ │ │ ├── async_closure_return_type_flatten.dart.weak.transformed.expect │ │ │ │ ├── async_closure_return_type_future.dart │ │ │ │ ├── async_closure_return_type_future.dart.strong.expect │ │ │ │ ├── async_closure_return_type_future.dart.strong.transformed.expect │ │ │ │ ├── async_closure_return_type_future.dart.textual_outline.expect │ │ │ │ ├── async_closure_return_type_future.dart.textual_outline_modelled.expect │ │ │ │ ├── async_closure_return_type_future.dart.weak.expect │ │ │ │ ├── async_closure_return_type_future.dart.weak.modular.expect │ │ │ │ ├── async_closure_return_type_future.dart.weak.outline.expect │ │ │ │ ├── async_closure_return_type_future.dart.weak.transformed.expect │ │ │ │ ├── async_closure_return_type_future_or.dart │ │ │ │ ├── async_closure_return_type_future_or.dart.strong.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.strong.transformed.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.textual_outline.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.textual_outline_modelled.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.weak.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.weak.modular.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.weak.outline.expect │ │ │ │ ├── async_closure_return_type_future_or.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_futures2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_all_returns_are_values2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_mix_of_values_and_futures2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart │ │ │ │ ├── block_bodied_lambdas_async_star.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_star.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_async_star2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart │ │ │ │ ├── block_bodied_lambdas_basic.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_basic.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_basic_void.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_downwards_incompatible_with_upwards_inference_top_level.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_async_star.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_infer_bottom_sync_star.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart │ │ │ │ ├── block_bodied_lambdas_lub.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_lub.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart │ │ │ │ ├── block_bodied_lambdas_lub2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_lub2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_nested_lambdas.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart │ │ │ │ ├── block_bodied_lambdas_no_return.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_no_return.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart │ │ │ │ ├── block_bodied_lambdas_returns.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_returns.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart │ │ │ │ ├── block_bodied_lambdas_returns2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_returns2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_sync_star.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_sync_star2.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart │ │ │ │ ├── block_bodied_lambdas_void_context.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_void_context.dart.weak.transformed.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.strong.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.strong.transformed.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.textual_outline.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.textual_outline_modelled.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.weak.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.weak.modular.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.weak.outline.expect │ │ │ │ ├── block_bodied_lambdas_void_context2.dart.weak.transformed.expect │ │ │ │ ├── bottom.dart │ │ │ │ ├── bottom.dart.strong.expect │ │ │ │ ├── bottom.dart.strong.transformed.expect │ │ │ │ ├── bottom.dart.textual_outline.expect │ │ │ │ ├── bottom.dart.textual_outline_modelled.expect │ │ │ │ ├── bottom.dart.weak.expect │ │ │ │ ├── bottom.dart.weak.modular.expect │ │ │ │ ├── bottom.dart.weak.outline.expect │ │ │ │ ├── bottom.dart.weak.transformed.expect │ │ │ │ ├── bottom_in_closure.dart │ │ │ │ ├── bottom_in_closure.dart.strong.expect │ │ │ │ ├── bottom_in_closure.dart.strong.transformed.expect │ │ │ │ ├── bottom_in_closure.dart.textual_outline.expect │ │ │ │ ├── bottom_in_closure.dart.textual_outline_modelled.expect │ │ │ │ ├── bottom_in_closure.dart.weak.expect │ │ │ │ ├── bottom_in_closure.dart.weak.modular.expect │ │ │ │ ├── bottom_in_closure.dart.weak.outline.expect │ │ │ │ ├── bottom_in_closure.dart.weak.transformed.expect │ │ │ │ ├── bug30251.dart │ │ │ │ ├── bug30251.dart.strong.expect │ │ │ │ ├── bug30251.dart.strong.transformed.expect │ │ │ │ ├── bug30251.dart.textual_outline.expect │ │ │ │ ├── bug30251.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30251.dart.weak.expect │ │ │ │ ├── bug30251.dart.weak.modular.expect │ │ │ │ ├── bug30251.dart.weak.outline.expect │ │ │ │ ├── bug30251.dart.weak.transformed.expect │ │ │ │ ├── bug30620.dart │ │ │ │ ├── bug30620.dart.strong.expect │ │ │ │ ├── bug30620.dart.strong.transformed.expect │ │ │ │ ├── bug30620.dart.textual_outline.expect │ │ │ │ ├── bug30620.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620.dart.weak.expect │ │ │ │ ├── bug30620.dart.weak.modular.expect │ │ │ │ ├── bug30620.dart.weak.outline.expect │ │ │ │ ├── bug30620.dart.weak.transformed.expect │ │ │ │ ├── bug30620_2.dart │ │ │ │ ├── bug30620_2.dart.strong.expect │ │ │ │ ├── bug30620_2.dart.strong.transformed.expect │ │ │ │ ├── bug30620_2.dart.textual_outline.expect │ │ │ │ ├── bug30620_2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_2.dart.weak.expect │ │ │ │ ├── bug30620_2.dart.weak.modular.expect │ │ │ │ ├── bug30620_2.dart.weak.outline.expect │ │ │ │ ├── bug30620_2.dart.weak.transformed.expect │ │ │ │ ├── bug30620_b.dart │ │ │ │ ├── bug30620_b.dart.strong.expect │ │ │ │ ├── bug30620_b.dart.strong.transformed.expect │ │ │ │ ├── bug30620_b.dart.textual_outline.expect │ │ │ │ ├── bug30620_b.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_b.dart.weak.expect │ │ │ │ ├── bug30620_b.dart.weak.modular.expect │ │ │ │ ├── bug30620_b.dart.weak.outline.expect │ │ │ │ ├── bug30620_b.dart.weak.transformed.expect │ │ │ │ ├── bug30620_b2.dart │ │ │ │ ├── bug30620_b2.dart.strong.expect │ │ │ │ ├── bug30620_b2.dart.strong.transformed.expect │ │ │ │ ├── bug30620_b2.dart.textual_outline.expect │ │ │ │ ├── bug30620_b2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_b2.dart.weak.expect │ │ │ │ ├── bug30620_b2.dart.weak.modular.expect │ │ │ │ ├── bug30620_b2.dart.weak.outline.expect │ │ │ │ ├── bug30620_b2.dart.weak.transformed.expect │ │ │ │ ├── bug30620_c.dart │ │ │ │ ├── bug30620_c.dart.strong.expect │ │ │ │ ├── bug30620_c.dart.strong.transformed.expect │ │ │ │ ├── bug30620_c.dart.textual_outline.expect │ │ │ │ ├── bug30620_c.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_c.dart.weak.expect │ │ │ │ ├── bug30620_c.dart.weak.modular.expect │ │ │ │ ├── bug30620_c.dart.weak.outline.expect │ │ │ │ ├── bug30620_c.dart.weak.transformed.expect │ │ │ │ ├── bug30620_c2.dart │ │ │ │ ├── bug30620_c2.dart.strong.expect │ │ │ │ ├── bug30620_c2.dart.strong.transformed.expect │ │ │ │ ├── bug30620_c2.dart.textual_outline.expect │ │ │ │ ├── bug30620_c2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_c2.dart.weak.expect │ │ │ │ ├── bug30620_c2.dart.weak.modular.expect │ │ │ │ ├── bug30620_c2.dart.weak.outline.expect │ │ │ │ ├── bug30620_c2.dart.weak.transformed.expect │ │ │ │ ├── bug30620_d.dart │ │ │ │ ├── bug30620_d.dart.strong.expect │ │ │ │ ├── bug30620_d.dart.strong.transformed.expect │ │ │ │ ├── bug30620_d.dart.textual_outline.expect │ │ │ │ ├── bug30620_d.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_d.dart.weak.expect │ │ │ │ ├── bug30620_d.dart.weak.modular.expect │ │ │ │ ├── bug30620_d.dart.weak.outline.expect │ │ │ │ ├── bug30620_d.dart.weak.transformed.expect │ │ │ │ ├── bug30620_d2.dart │ │ │ │ ├── bug30620_d2.dart.strong.expect │ │ │ │ ├── bug30620_d2.dart.strong.transformed.expect │ │ │ │ ├── bug30620_d2.dart.textual_outline.expect │ │ │ │ ├── bug30620_d2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30620_d2.dart.weak.expect │ │ │ │ ├── bug30620_d2.dart.weak.modular.expect │ │ │ │ ├── bug30620_d2.dart.weak.outline.expect │ │ │ │ ├── bug30620_d2.dart.weak.transformed.expect │ │ │ │ ├── bug30624.dart │ │ │ │ ├── bug30624.dart.strong.expect │ │ │ │ ├── bug30624.dart.strong.transformed.expect │ │ │ │ ├── bug30624.dart.textual_outline.expect │ │ │ │ ├── bug30624.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30624.dart.weak.expect │ │ │ │ ├── bug30624.dart.weak.modular.expect │ │ │ │ ├── bug30624.dart.weak.outline.expect │ │ │ │ ├── bug30624.dart.weak.transformed.expect │ │ │ │ ├── bug30624_2.dart │ │ │ │ ├── bug30624_2.dart.strong.expect │ │ │ │ ├── bug30624_2.dart.strong.transformed.expect │ │ │ │ ├── bug30624_2.dart.textual_outline.expect │ │ │ │ ├── bug30624_2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug30624_2.dart.weak.expect │ │ │ │ ├── bug30624_2.dart.weak.modular.expect │ │ │ │ ├── bug30624_2.dart.weak.outline.expect │ │ │ │ ├── bug30624_2.dart.weak.transformed.expect │ │ │ │ ├── bug31132.dart │ │ │ │ ├── bug31132.dart.strong.expect │ │ │ │ ├── bug31132.dart.strong.transformed.expect │ │ │ │ ├── bug31132.dart.textual_outline.expect │ │ │ │ ├── bug31132.dart.textual_outline_modelled.expect │ │ │ │ ├── bug31132.dart.weak.expect │ │ │ │ ├── bug31132.dart.weak.modular.expect │ │ │ │ ├── bug31132.dart.weak.outline.expect │ │ │ │ ├── bug31132.dart.weak.transformed.expect │ │ │ │ ├── bug31132_2.dart │ │ │ │ ├── bug31132_2.dart.strong.expect │ │ │ │ ├── bug31132_2.dart.strong.transformed.expect │ │ │ │ ├── bug31132_2.dart.textual_outline.expect │ │ │ │ ├── bug31132_2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug31132_2.dart.weak.expect │ │ │ │ ├── bug31132_2.dart.weak.modular.expect │ │ │ │ ├── bug31132_2.dart.weak.outline.expect │ │ │ │ ├── bug31132_2.dart.weak.transformed.expect │ │ │ │ ├── bug31133.dart │ │ │ │ ├── bug31133.dart.strong.expect │ │ │ │ ├── bug31133.dart.strong.transformed.expect │ │ │ │ ├── bug31133.dart.textual_outline.expect │ │ │ │ ├── bug31133.dart.textual_outline_modelled.expect │ │ │ │ ├── bug31133.dart.weak.expect │ │ │ │ ├── bug31133.dart.weak.modular.expect │ │ │ │ ├── bug31133.dart.weak.outline.expect │ │ │ │ ├── bug31133.dart.weak.transformed.expect │ │ │ │ ├── bug31436.dart │ │ │ │ ├── bug31436.dart.strong.expect │ │ │ │ ├── bug31436.dart.strong.transformed.expect │ │ │ │ ├── bug31436.dart.textual_outline.expect │ │ │ │ ├── bug31436.dart.textual_outline_modelled.expect │ │ │ │ ├── bug31436.dart.weak.expect │ │ │ │ ├── bug31436.dart.weak.modular.expect │ │ │ │ ├── bug31436.dart.weak.outline.expect │ │ │ │ ├── bug31436.dart.weak.transformed.expect │ │ │ │ ├── bug31436_2.dart │ │ │ │ ├── bug31436_2.dart.strong.expect │ │ │ │ ├── bug31436_2.dart.strong.transformed.expect │ │ │ │ ├── bug31436_2.dart.textual_outline.expect │ │ │ │ ├── bug31436_2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug31436_2.dart.weak.expect │ │ │ │ ├── bug31436_2.dart.weak.modular.expect │ │ │ │ ├── bug31436_2.dart.weak.outline.expect │ │ │ │ ├── bug31436_2.dart.weak.transformed.expect │ │ │ │ ├── bug32291.dart │ │ │ │ ├── bug32291.dart.strong.expect │ │ │ │ ├── bug32291.dart.strong.transformed.expect │ │ │ │ ├── bug32291.dart.textual_outline.expect │ │ │ │ ├── bug32291.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32291.dart.weak.expect │ │ │ │ ├── bug32291.dart.weak.modular.expect │ │ │ │ ├── bug32291.dart.weak.outline.expect │ │ │ │ ├── bug32291.dart.weak.transformed.expect │ │ │ │ ├── bug32291_2.dart │ │ │ │ ├── bug32291_2.dart.strong.expect │ │ │ │ ├── bug32291_2.dart.strong.transformed.expect │ │ │ │ ├── bug32291_2.dart.textual_outline.expect │ │ │ │ ├── bug32291_2.dart.textual_outline_modelled.expect │ │ │ │ ├── bug32291_2.dart.weak.expect │ │ │ │ ├── bug32291_2.dart.weak.modular.expect │ │ │ │ ├── bug32291_2.dart.weak.outline.expect │ │ │ │ ├── bug32291_2.dart.weak.transformed.expect │ │ │ │ ├── bug33324.dart │ │ │ │ ├── bug33324.dart.strong.expect │ │ │ │ ├── bug33324.dart.strong.transformed.expect │ │ │ │ ├── bug33324.dart.textual_outline.expect │ │ │ │ ├── bug33324.dart.textual_outline_modelled.expect │ │ │ │ ├── bug33324.dart.weak.expect │ │ │ │ ├── bug33324.dart.weak.modular.expect │ │ │ │ ├── bug33324.dart.weak.outline.expect │ │ │ │ ├── bug33324.dart.weak.transformed.expect │ │ │ │ ├── call_corner_cases.dart │ │ │ │ ├── call_corner_cases.dart.strong.expect │ │ │ │ ├── call_corner_cases.dart.strong.transformed.expect │ │ │ │ ├── call_corner_cases.dart.textual_outline.expect │ │ │ │ ├── call_corner_cases.dart.textual_outline_modelled.expect │ │ │ │ ├── call_corner_cases.dart.weak.expect │ │ │ │ ├── call_corner_cases.dart.weak.modular.expect │ │ │ │ ├── call_corner_cases.dart.weak.outline.expect │ │ │ │ ├── call_corner_cases.dart.weak.transformed.expect │ │ │ │ ├── callable_generic_class.dart │ │ │ │ ├── callable_generic_class.dart.strong.expect │ │ │ │ ├── callable_generic_class.dart.strong.transformed.expect │ │ │ │ ├── callable_generic_class.dart.textual_outline.expect │ │ │ │ ├── callable_generic_class.dart.textual_outline_modelled.expect │ │ │ │ ├── callable_generic_class.dart.weak.expect │ │ │ │ ├── callable_generic_class.dart.weak.modular.expect │ │ │ │ ├── callable_generic_class.dart.weak.outline.expect │ │ │ │ ├── callable_generic_class.dart.weak.transformed.expect │ │ │ │ ├── circular_method_inference.dart │ │ │ │ ├── circular_method_inference.dart.strong.expect │ │ │ │ ├── circular_method_inference.dart.strong.transformed.expect │ │ │ │ ├── circular_method_inference.dart.textual_outline.expect │ │ │ │ ├── circular_method_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── circular_method_inference.dart.weak.expect │ │ │ │ ├── circular_method_inference.dart.weak.modular.expect │ │ │ │ ├── circular_method_inference.dart.weak.outline.expect │ │ │ │ ├── circular_method_inference.dart.weak.transformed.expect │ │ │ │ ├── circular_reference_via_closures.dart │ │ │ │ ├── circular_reference_via_closures.dart.strong.expect │ │ │ │ ├── circular_reference_via_closures.dart.strong.transformed.expect │ │ │ │ ├── circular_reference_via_closures.dart.textual_outline.expect │ │ │ │ ├── circular_reference_via_closures.dart.textual_outline_modelled.expect │ │ │ │ ├── circular_reference_via_closures.dart.weak.expect │ │ │ │ ├── circular_reference_via_closures.dart.weak.modular.expect │ │ │ │ ├── circular_reference_via_closures.dart.weak.outline.expect │ │ │ │ ├── circular_reference_via_closures.dart.weak.transformed.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.strong.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.strong.transformed.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.textual_outline.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.textual_outline_modelled.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.weak.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.weak.modular.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.weak.outline.expect │ │ │ │ ├── circular_reference_via_closures_initializer_types.dart.weak.transformed.expect │ │ │ │ ├── closure_param_null_to_object.dart │ │ │ │ ├── closure_param_null_to_object.dart.strong.expect │ │ │ │ ├── closure_param_null_to_object.dart.strong.transformed.expect │ │ │ │ ├── closure_param_null_to_object.dart.textual_outline.expect │ │ │ │ ├── closure_param_null_to_object.dart.textual_outline_modelled.expect │ │ │ │ ├── closure_param_null_to_object.dart.weak.expect │ │ │ │ ├── closure_param_null_to_object.dart.weak.modular.expect │ │ │ │ ├── closure_param_null_to_object.dart.weak.outline.expect │ │ │ │ ├── closure_param_null_to_object.dart.weak.transformed.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart │ │ │ │ ├── coerce_bottom_and_null_types.dart.strong.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.strong.transformed.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.textual_outline.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.textual_outline_modelled.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.weak.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.weak.modular.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.weak.outline.expect │ │ │ │ ├── coerce_bottom_and_null_types.dart.weak.transformed.expect │ │ │ │ ├── complex_predecrement.dart │ │ │ │ ├── complex_predecrement.dart.strong.expect │ │ │ │ ├── complex_predecrement.dart.strong.transformed.expect │ │ │ │ ├── complex_predecrement.dart.textual_outline.expect │ │ │ │ ├── complex_predecrement.dart.textual_outline_modelled.expect │ │ │ │ ├── complex_predecrement.dart.weak.expect │ │ │ │ ├── complex_predecrement.dart.weak.modular.expect │ │ │ │ ├── complex_predecrement.dart.weak.outline.expect │ │ │ │ ├── complex_predecrement.dart.weak.transformed.expect │ │ │ │ ├── conditional_lub.dart │ │ │ │ ├── conditional_lub.dart.strong.expect │ │ │ │ ├── conditional_lub.dart.strong.transformed.expect │ │ │ │ ├── conditional_lub.dart.textual_outline.expect │ │ │ │ ├── conditional_lub.dart.textual_outline_modelled.expect │ │ │ │ ├── conditional_lub.dart.weak.expect │ │ │ │ ├── conditional_lub.dart.weak.modular.expect │ │ │ │ ├── conditional_lub.dart.weak.outline.expect │ │ │ │ ├── conditional_lub.dart.weak.transformed.expect │ │ │ │ ├── conditional_upwards_inference.dart │ │ │ │ ├── conditional_upwards_inference.dart.strong.expect │ │ │ │ ├── conditional_upwards_inference.dart.strong.transformed.expect │ │ │ │ ├── conditional_upwards_inference.dart.textual_outline.expect │ │ │ │ ├── conditional_upwards_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── conditional_upwards_inference.dart.weak.expect │ │ │ │ ├── conditional_upwards_inference.dart.weak.modular.expect │ │ │ │ ├── conditional_upwards_inference.dart.weak.outline.expect │ │ │ │ ├── conditional_upwards_inference.dart.weak.transformed.expect │ │ │ │ ├── conflicting_fields.dart │ │ │ │ ├── conflicting_fields.dart.strong.expect │ │ │ │ ├── conflicting_fields.dart.strong.transformed.expect │ │ │ │ ├── conflicting_fields.dart.textual_outline.expect │ │ │ │ ├── conflicting_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── conflicting_fields.dart.weak.expect │ │ │ │ ├── conflicting_fields.dart.weak.modular.expect │ │ │ │ ├── conflicting_fields.dart.weak.outline.expect │ │ │ │ ├── conflicting_fields.dart.weak.transformed.expect │ │ │ │ ├── conflicts_can_happen.dart │ │ │ │ ├── conflicts_can_happen.dart.strong.expect │ │ │ │ ├── conflicts_can_happen.dart.strong.transformed.expect │ │ │ │ ├── conflicts_can_happen.dart.textual_outline.expect │ │ │ │ ├── conflicts_can_happen.dart.textual_outline_modelled.expect │ │ │ │ ├── conflicts_can_happen.dart.weak.expect │ │ │ │ ├── conflicts_can_happen.dart.weak.modular.expect │ │ │ │ ├── conflicts_can_happen.dart.weak.outline.expect │ │ │ │ ├── conflicts_can_happen.dart.weak.transformed.expect │ │ │ │ ├── conflicts_can_happen2.dart │ │ │ │ ├── conflicts_can_happen2.dart.strong.expect │ │ │ │ ├── conflicts_can_happen2.dart.strong.transformed.expect │ │ │ │ ├── conflicts_can_happen2.dart.textual_outline.expect │ │ │ │ ├── conflicts_can_happen2.dart.textual_outline_modelled.expect │ │ │ │ ├── conflicts_can_happen2.dart.weak.expect │ │ │ │ ├── conflicts_can_happen2.dart.weak.modular.expect │ │ │ │ ├── conflicts_can_happen2.dart.weak.outline.expect │ │ │ │ ├── conflicts_can_happen2.dart.weak.transformed.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart │ │ │ │ ├── constructors_downwards_with_constraint.dart.strong.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.strong.transformed.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.textual_outline.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.weak.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.weak.modular.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.weak.outline.expect │ │ │ │ ├── constructors_downwards_with_constraint.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments.dart │ │ │ │ ├── constructors_infer_from_arguments.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart │ │ │ │ ├── constructors_infer_from_arguments2.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments2.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_argument_not_assignable.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart │ │ │ │ ├── constructors_infer_from_arguments_const.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_const.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_const_with_upper_bound.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_downwards_from_constructor.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_factory.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_factory_calls_constructor.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart │ │ │ │ ├── constructors_infer_from_arguments_named.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_named.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_named_factory.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory.dart.weak.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.strong.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.strong.transformed.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.textual_outline.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.weak.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.weak.modular.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.weak.outline.expect │ │ │ │ ├── constructors_infer_from_arguments_redirecting_factory_to_factory.dart.weak.transformed.expect │ │ │ │ ├── constructors_inference_f_bounded.dart │ │ │ │ ├── constructors_inference_f_bounded.dart.strong.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.strong.transformed.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.textual_outline.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.weak.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.weak.modular.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.weak.outline.expect │ │ │ │ ├── constructors_inference_f_bounded.dart.weak.transformed.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart │ │ │ │ ├── constructors_reverse_type_parameters.dart.strong.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.strong.transformed.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.textual_outline.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.weak.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.weak.modular.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.weak.outline.expect │ │ │ │ ├── constructors_reverse_type_parameters.dart.weak.transformed.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart │ │ │ │ ├── constructors_too_many_positional_arguments.dart.strong.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.strong.transformed.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.textual_outline.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.weak.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.weak.modular.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.weak.outline.expect │ │ │ │ ├── constructors_too_many_positional_arguments.dart.weak.transformed.expect │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.strong.expect │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.textual_outline.expect │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.textual_outline_modelled.expect │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.weak.expect │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.weak.modular.expect │ │ │ │ ├── do_not_infer_overridden_fields_that_explicitly_say_dynamic_infer.dart.weak.outline.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.strong.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.strong.transformed.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.textual_outline.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.textual_outline_modelled.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.weak.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.weak.modular.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.weak.outline.expect │ │ │ │ ├── dont_infer_field_type_when_initializer_is_null.dart.weak.transformed.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart │ │ │ │ ├── dont_infer_type_on_dynamic.dart.strong.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.strong.transformed.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.textual_outline.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.weak.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.weak.modular.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.weak.outline.expect │ │ │ │ ├── dont_infer_type_on_dynamic.dart.weak.transformed.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.strong.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.strong.transformed.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.textual_outline.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.textual_outline_modelled.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.weak.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.weak.modular.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.weak.outline.expect │ │ │ │ ├── dont_infer_type_when_initializer_is_null.dart.weak.transformed.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.strong.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.strong.transformed.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.textual_outline.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.weak.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.weak.modular.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.weak.outline.expect │ │ │ │ ├── downward_inference_fixes_no_upwards_errors.dart.weak.transformed.expect │ │ │ │ ├── downward_inference_miscellaneous.dart │ │ │ │ ├── downward_inference_miscellaneous.dart.strong.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.strong.transformed.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.textual_outline.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.textual_outline_modelled.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.weak.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.weak.modular.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.weak.outline.expect │ │ │ │ ├── downward_inference_miscellaneous.dart.weak.transformed.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.strong.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.strong.transformed.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.textual_outline.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.weak.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.weak.modular.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.weak.outline.expect │ │ │ │ ├── downwards_context_from_inferred_field_type.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations.dart │ │ │ │ ├── downwards_inference_annotations.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart │ │ │ │ ├── downwards_inference_annotations_class_members.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_class_members.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_for_loop_variable.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart │ │ │ │ ├── downwards_inference_annotations_locals.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_locals.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_locals_referring_to_locals.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart │ │ │ │ ├── downwards_inference_annotations_parameter.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_parameter.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_parameter_local.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_type_variable.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_type_variable_local.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart │ │ │ │ ├── downwards_inference_annotations_typedef.dart.strong.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.weak.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_annotations_typedef.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart │ │ │ │ ├── downwards_inference_assignment_statements.dart.strong.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.weak.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_assignment_statements.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_async_await.dart │ │ │ │ ├── downwards_inference_async_await.dart.strong.expect │ │ │ │ ├── downwards_inference_async_await.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_async_await.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_async_await.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_async_await.dart.weak.expect │ │ │ │ ├── downwards_inference_async_await.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_async_await.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_async_await.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_for_each.dart │ │ │ │ ├── downwards_inference_for_each.dart.strong.expect │ │ │ │ ├── downwards_inference_for_each.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_for_each.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_for_each.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_for_each.dart.weak.expect │ │ │ │ ├── downwards_inference_for_each.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_for_each.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_for_each.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.strong.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.weak.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_initializing_formal_default_formal.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart │ │ │ │ ├── downwards_inference_inside_top_level.dart.strong.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.strong.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.strong.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.weak.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_constructor_arguments_infer_downwards.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.strong.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.weak.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_function_arguments_infer_downwards.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart │ │ │ │ ├── downwards_inference_on_function_expressions.dart.strong.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.weak.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_function_expressions.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.strong.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.weak.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_function_of_t_using_the_t.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.strong.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.weak.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_empty_list.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.strong.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.weak.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_generic_constructor_arguments_infer_downwards.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.strong.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.weak.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_generic_function_expressions.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.strong.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.weak.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_instance_creations_infer_downwards.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.strong.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.weak.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.strong.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.weak.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_downwards2.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.weak.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_list_literals_infer_if_value_types_match_context.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart │ │ │ │ ├── downwards_inference_on_map_literals.dart.strong.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.weak.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_map_literals.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart │ │ │ │ ├── downwards_inference_on_map_literals2.dart.strong.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.weak.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_on_map_literals2.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart │ │ │ │ ├── downwards_inference_yield_yield_star.dart.strong.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.weak.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_yield_yield_star.dart.weak.transformed.expect │ │ │ │ ├── dynamic_methods.dart │ │ │ │ ├── dynamic_methods.dart.strong.expect │ │ │ │ ├── dynamic_methods.dart.strong.transformed.expect │ │ │ │ ├── dynamic_methods.dart.textual_outline.expect │ │ │ │ ├── dynamic_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_methods.dart.weak.expect │ │ │ │ ├── dynamic_methods.dart.weak.modular.expect │ │ │ │ ├── dynamic_methods.dart.weak.outline.expect │ │ │ │ ├── dynamic_methods.dart.weak.transformed.expect │ │ │ │ ├── field_initializer_context_explicit.dart │ │ │ │ ├── field_initializer_context_explicit.dart.strong.expect │ │ │ │ ├── field_initializer_context_explicit.dart.strong.transformed.expect │ │ │ │ ├── field_initializer_context_explicit.dart.textual_outline.expect │ │ │ │ ├── field_initializer_context_explicit.dart.textual_outline_modelled.expect │ │ │ │ ├── field_initializer_context_explicit.dart.weak.expect │ │ │ │ ├── field_initializer_context_explicit.dart.weak.modular.expect │ │ │ │ ├── field_initializer_context_explicit.dart.weak.outline.expect │ │ │ │ ├── field_initializer_context_explicit.dart.weak.transformed.expect │ │ │ │ ├── field_initializer_context_implicit.dart │ │ │ │ ├── field_initializer_context_implicit.dart.strong.expect │ │ │ │ ├── field_initializer_context_implicit.dart.strong.transformed.expect │ │ │ │ ├── field_initializer_context_implicit.dart.textual_outline.expect │ │ │ │ ├── field_initializer_context_implicit.dart.textual_outline_modelled.expect │ │ │ │ ├── field_initializer_context_implicit.dart.weak.expect │ │ │ │ ├── field_initializer_context_implicit.dart.weak.modular.expect │ │ │ │ ├── field_initializer_context_implicit.dart.weak.outline.expect │ │ │ │ ├── field_initializer_context_implicit.dart.weak.transformed.expect │ │ │ │ ├── field_initializer_context_this.dart │ │ │ │ ├── field_initializer_context_this.dart.strong.expect │ │ │ │ ├── field_initializer_context_this.dart.strong.transformed.expect │ │ │ │ ├── field_initializer_context_this.dart.textual_outline.expect │ │ │ │ ├── field_initializer_context_this.dart.textual_outline_modelled.expect │ │ │ │ ├── field_initializer_context_this.dart.weak.expect │ │ │ │ ├── field_initializer_context_this.dart.weak.modular.expect │ │ │ │ ├── field_initializer_context_this.dart.weak.outline.expect │ │ │ │ ├── field_initializer_context_this.dart.weak.transformed.expect │ │ │ │ ├── field_initializer_parameter.dart │ │ │ │ ├── field_initializer_parameter.dart.strong.expect │ │ │ │ ├── field_initializer_parameter.dart.strong.transformed.expect │ │ │ │ ├── field_initializer_parameter.dart.textual_outline.expect │ │ │ │ ├── field_initializer_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── field_initializer_parameter.dart.weak.expect │ │ │ │ ├── field_initializer_parameter.dart.weak.modular.expect │ │ │ │ ├── field_initializer_parameter.dart.weak.outline.expect │ │ │ │ ├── field_initializer_parameter.dart.weak.transformed.expect │ │ │ │ ├── field_refers_to_static_getter.dart │ │ │ │ ├── field_refers_to_static_getter.dart.strong.expect │ │ │ │ ├── field_refers_to_static_getter.dart.strong.transformed.expect │ │ │ │ ├── field_refers_to_static_getter.dart.textual_outline.expect │ │ │ │ ├── field_refers_to_static_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── field_refers_to_static_getter.dart.weak.expect │ │ │ │ ├── field_refers_to_static_getter.dart.weak.modular.expect │ │ │ │ ├── field_refers_to_static_getter.dart.weak.outline.expect │ │ │ │ ├── field_refers_to_static_getter.dart.weak.transformed.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart │ │ │ │ ├── field_refers_to_top_level_getter.dart.strong.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.strong.transformed.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.textual_outline.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.weak.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.weak.modular.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.weak.outline.expect │ │ │ │ ├── field_refers_to_top_level_getter.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── for_each_downcast_iterable.dart │ │ │ │ ├── for_each_downcast_iterable.dart.strong.expect │ │ │ │ ├── for_each_downcast_iterable.dart.strong.transformed.expect │ │ │ │ ├── for_each_downcast_iterable.dart.textual_outline.expect │ │ │ │ ├── for_each_downcast_iterable.dart.textual_outline_modelled.expect │ │ │ │ ├── for_each_downcast_iterable.dart.weak.expect │ │ │ │ ├── for_each_downcast_iterable.dart.weak.modular.expect │ │ │ │ ├── for_each_downcast_iterable.dart.weak.outline.expect │ │ │ │ ├── for_each_downcast_iterable.dart.weak.transformed.expect │ │ │ │ ├── for_each_downcast_iterable2.dart │ │ │ │ ├── for_each_downcast_iterable2.dart.strong.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.strong.transformed.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.textual_outline.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.textual_outline_modelled.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.weak.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.weak.modular.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.weak.outline.expect │ │ │ │ ├── for_each_downcast_iterable2.dart.weak.transformed.expect │ │ │ │ ├── for_in_loop_promotion.dart │ │ │ │ ├── for_in_loop_promotion.dart.strong.expect │ │ │ │ ├── for_in_loop_promotion.dart.strong.transformed.expect │ │ │ │ ├── for_in_loop_promotion.dart.textual_outline.expect │ │ │ │ ├── for_in_loop_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_loop_promotion.dart.weak.expect │ │ │ │ ├── for_in_loop_promotion.dart.weak.modular.expect │ │ │ │ ├── for_in_loop_promotion.dart.weak.outline.expect │ │ │ │ ├── for_in_loop_promotion.dart.weak.transformed.expect │ │ │ │ ├── for_in_loop_promotion2.dart │ │ │ │ ├── for_in_loop_promotion2.dart.strong.expect │ │ │ │ ├── for_in_loop_promotion2.dart.strong.transformed.expect │ │ │ │ ├── for_in_loop_promotion2.dart.textual_outline.expect │ │ │ │ ├── for_in_loop_promotion2.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_loop_promotion2.dart.weak.expect │ │ │ │ ├── for_in_loop_promotion2.dart.weak.modular.expect │ │ │ │ ├── for_in_loop_promotion2.dart.weak.outline.expect │ │ │ │ ├── for_in_loop_promotion2.dart.weak.transformed.expect │ │ │ │ ├── for_loop_empty_condition.dart │ │ │ │ ├── for_loop_empty_condition.dart.strong.expect │ │ │ │ ├── for_loop_empty_condition.dart.strong.transformed.expect │ │ │ │ ├── for_loop_empty_condition.dart.textual_outline.expect │ │ │ │ ├── for_loop_empty_condition.dart.textual_outline_modelled.expect │ │ │ │ ├── for_loop_empty_condition.dart.weak.expect │ │ │ │ ├── for_loop_empty_condition.dart.weak.modular.expect │ │ │ │ ├── for_loop_empty_condition.dart.weak.outline.expect │ │ │ │ ├── for_loop_empty_condition.dart.weak.transformed.expect │ │ │ │ ├── for_loop_empty_condition2.dart │ │ │ │ ├── for_loop_empty_condition2.dart.strong.expect │ │ │ │ ├── for_loop_empty_condition2.dart.strong.transformed.expect │ │ │ │ ├── for_loop_empty_condition2.dart.textual_outline.expect │ │ │ │ ├── for_loop_empty_condition2.dart.textual_outline_modelled.expect │ │ │ │ ├── for_loop_empty_condition2.dart.weak.expect │ │ │ │ ├── for_loop_empty_condition2.dart.weak.modular.expect │ │ │ │ ├── for_loop_empty_condition2.dart.weak.outline.expect │ │ │ │ ├── for_loop_empty_condition2.dart.weak.transformed.expect │ │ │ │ ├── for_loop_initializer_expression.dart │ │ │ │ ├── for_loop_initializer_expression.dart.strong.expect │ │ │ │ ├── for_loop_initializer_expression.dart.strong.transformed.expect │ │ │ │ ├── for_loop_initializer_expression.dart.textual_outline.expect │ │ │ │ ├── for_loop_initializer_expression.dart.textual_outline_modelled.expect │ │ │ │ ├── for_loop_initializer_expression.dart.weak.expect │ │ │ │ ├── for_loop_initializer_expression.dart.weak.modular.expect │ │ │ │ ├── for_loop_initializer_expression.dart.weak.outline.expect │ │ │ │ ├── for_loop_initializer_expression.dart.weak.transformed.expect │ │ │ │ ├── for_loop_promotion.dart │ │ │ │ ├── for_loop_promotion.dart.strong.expect │ │ │ │ ├── for_loop_promotion.dart.strong.transformed.expect │ │ │ │ ├── for_loop_promotion.dart.textual_outline.expect │ │ │ │ ├── for_loop_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── for_loop_promotion.dart.weak.expect │ │ │ │ ├── for_loop_promotion.dart.weak.modular.expect │ │ │ │ ├── for_loop_promotion.dart.weak.outline.expect │ │ │ │ ├── for_loop_promotion.dart.weak.transformed.expect │ │ │ │ ├── for_loop_promotion2.dart │ │ │ │ ├── for_loop_promotion2.dart.strong.expect │ │ │ │ ├── for_loop_promotion2.dart.strong.transformed.expect │ │ │ │ ├── for_loop_promotion2.dart.textual_outline.expect │ │ │ │ ├── for_loop_promotion2.dart.textual_outline_modelled.expect │ │ │ │ ├── for_loop_promotion2.dart.weak.expect │ │ │ │ ├── for_loop_promotion2.dart.weak.modular.expect │ │ │ │ ├── for_loop_promotion2.dart.weak.outline.expect │ │ │ │ ├── for_loop_promotion2.dart.weak.transformed.expect │ │ │ │ ├── future_or_subtyping.dart │ │ │ │ ├── future_or_subtyping.dart.strong.expect │ │ │ │ ├── future_or_subtyping.dart.strong.transformed.expect │ │ │ │ ├── future_or_subtyping.dart.textual_outline.expect │ │ │ │ ├── future_or_subtyping.dart.textual_outline_modelled.expect │ │ │ │ ├── future_or_subtyping.dart.weak.expect │ │ │ │ ├── future_or_subtyping.dart.weak.modular.expect │ │ │ │ ├── future_or_subtyping.dart.weak.outline.expect │ │ │ │ ├── future_or_subtyping.dart.weak.transformed.expect │ │ │ │ ├── future_then.dart │ │ │ │ ├── future_then.dart.strong.expect │ │ │ │ ├── future_then.dart.strong.transformed.expect │ │ │ │ ├── future_then.dart.textual_outline.expect │ │ │ │ ├── future_then.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then.dart.weak.expect │ │ │ │ ├── future_then.dart.weak.modular.expect │ │ │ │ ├── future_then.dart.weak.outline.expect │ │ │ │ ├── future_then.dart.weak.transformed.expect │ │ │ │ ├── future_then_2.dart │ │ │ │ ├── future_then_2.dart.strong.expect │ │ │ │ ├── future_then_2.dart.strong.transformed.expect │ │ │ │ ├── future_then_2.dart.textual_outline.expect │ │ │ │ ├── future_then_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_2.dart.weak.expect │ │ │ │ ├── future_then_2.dart.weak.modular.expect │ │ │ │ ├── future_then_2.dart.weak.outline.expect │ │ │ │ ├── future_then_2.dart.weak.transformed.expect │ │ │ │ ├── future_then_3.dart │ │ │ │ ├── future_then_3.dart.strong.expect │ │ │ │ ├── future_then_3.dart.strong.transformed.expect │ │ │ │ ├── future_then_3.dart.textual_outline.expect │ │ │ │ ├── future_then_3.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_3.dart.weak.expect │ │ │ │ ├── future_then_3.dart.weak.modular.expect │ │ │ │ ├── future_then_3.dart.weak.outline.expect │ │ │ │ ├── future_then_3.dart.weak.transformed.expect │ │ │ │ ├── future_then_4.dart │ │ │ │ ├── future_then_4.dart.strong.expect │ │ │ │ ├── future_then_4.dart.strong.transformed.expect │ │ │ │ ├── future_then_4.dart.textual_outline.expect │ │ │ │ ├── future_then_4.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_4.dart.weak.expect │ │ │ │ ├── future_then_4.dart.weak.modular.expect │ │ │ │ ├── future_then_4.dart.weak.outline.expect │ │ │ │ ├── future_then_4.dart.weak.transformed.expect │ │ │ │ ├── future_then_5.dart │ │ │ │ ├── future_then_5.dart.strong.expect │ │ │ │ ├── future_then_5.dart.strong.transformed.expect │ │ │ │ ├── future_then_5.dart.textual_outline.expect │ │ │ │ ├── future_then_5.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_5.dart.weak.expect │ │ │ │ ├── future_then_5.dart.weak.modular.expect │ │ │ │ ├── future_then_5.dart.weak.outline.expect │ │ │ │ ├── future_then_5.dart.weak.transformed.expect │ │ │ │ ├── future_then_6.dart │ │ │ │ ├── future_then_6.dart.strong.expect │ │ │ │ ├── future_then_6.dart.strong.transformed.expect │ │ │ │ ├── future_then_6.dart.textual_outline.expect │ │ │ │ ├── future_then_6.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_6.dart.weak.expect │ │ │ │ ├── future_then_6.dart.weak.modular.expect │ │ │ │ ├── future_then_6.dart.weak.outline.expect │ │ │ │ ├── future_then_6.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional.dart │ │ │ │ ├── future_then_conditional.dart.strong.expect │ │ │ │ ├── future_then_conditional.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional.dart.weak.expect │ │ │ │ ├── future_then_conditional.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional2.dart │ │ │ │ ├── future_then_conditional2.dart.strong.expect │ │ │ │ ├── future_then_conditional2.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional2.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional2.dart.weak.expect │ │ │ │ ├── future_then_conditional2.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional2.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional2.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional2_2.dart │ │ │ │ ├── future_then_conditional2_2.dart.strong.expect │ │ │ │ ├── future_then_conditional2_2.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional2_2.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional2_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional2_2.dart.weak.expect │ │ │ │ ├── future_then_conditional2_2.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional2_2.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional2_2.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional2_3.dart │ │ │ │ ├── future_then_conditional2_3.dart.strong.expect │ │ │ │ ├── future_then_conditional2_3.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional2_3.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional2_3.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional2_3.dart.weak.expect │ │ │ │ ├── future_then_conditional2_3.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional2_3.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional2_3.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional2_4.dart │ │ │ │ ├── future_then_conditional2_4.dart.strong.expect │ │ │ │ ├── future_then_conditional2_4.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional2_4.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional2_4.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional2_4.dart.weak.expect │ │ │ │ ├── future_then_conditional2_4.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional2_4.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional2_4.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional2_5.dart │ │ │ │ ├── future_then_conditional2_5.dart.strong.expect │ │ │ │ ├── future_then_conditional2_5.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional2_5.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional2_5.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional2_5.dart.weak.expect │ │ │ │ ├── future_then_conditional2_5.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional2_5.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional2_5.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional2_6.dart │ │ │ │ ├── future_then_conditional2_6.dart.strong.expect │ │ │ │ ├── future_then_conditional2_6.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional2_6.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional2_6.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional2_6.dart.weak.expect │ │ │ │ ├── future_then_conditional2_6.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional2_6.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional2_6.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional_2.dart │ │ │ │ ├── future_then_conditional_2.dart.strong.expect │ │ │ │ ├── future_then_conditional_2.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional_2.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional_2.dart.weak.expect │ │ │ │ ├── future_then_conditional_2.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional_2.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional_2.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional_3.dart │ │ │ │ ├── future_then_conditional_3.dart.strong.expect │ │ │ │ ├── future_then_conditional_3.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional_3.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional_3.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional_3.dart.weak.expect │ │ │ │ ├── future_then_conditional_3.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional_3.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional_3.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional_4.dart │ │ │ │ ├── future_then_conditional_4.dart.strong.expect │ │ │ │ ├── future_then_conditional_4.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional_4.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional_4.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional_4.dart.weak.expect │ │ │ │ ├── future_then_conditional_4.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional_4.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional_4.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional_5.dart │ │ │ │ ├── future_then_conditional_5.dart.strong.expect │ │ │ │ ├── future_then_conditional_5.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional_5.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional_5.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional_5.dart.weak.expect │ │ │ │ ├── future_then_conditional_5.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional_5.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional_5.dart.weak.transformed.expect │ │ │ │ ├── future_then_conditional_6.dart │ │ │ │ ├── future_then_conditional_6.dart.strong.expect │ │ │ │ ├── future_then_conditional_6.dart.strong.transformed.expect │ │ │ │ ├── future_then_conditional_6.dart.textual_outline.expect │ │ │ │ ├── future_then_conditional_6.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_conditional_6.dart.weak.expect │ │ │ │ ├── future_then_conditional_6.dart.weak.modular.expect │ │ │ │ ├── future_then_conditional_6.dart.weak.outline.expect │ │ │ │ ├── future_then_conditional_6.dart.weak.transformed.expect │ │ │ │ ├── future_then_downwards_method_target.dart │ │ │ │ ├── future_then_downwards_method_target.dart.strong.expect │ │ │ │ ├── future_then_downwards_method_target.dart.strong.transformed.expect │ │ │ │ ├── future_then_downwards_method_target.dart.textual_outline.expect │ │ │ │ ├── future_then_downwards_method_target.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_downwards_method_target.dart.weak.expect │ │ │ │ ├── future_then_downwards_method_target.dart.weak.modular.expect │ │ │ │ ├── future_then_downwards_method_target.dart.weak.outline.expect │ │ │ │ ├── future_then_downwards_method_target.dart.weak.transformed.expect │ │ │ │ ├── future_then_downwards_method_target2.dart │ │ │ │ ├── future_then_downwards_method_target2.dart.strong.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.strong.transformed.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.textual_outline.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.weak.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.weak.modular.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.weak.outline.expect │ │ │ │ ├── future_then_downwards_method_target2.dart.weak.transformed.expect │ │ │ │ ├── future_then_explicit_future.dart │ │ │ │ ├── future_then_explicit_future.dart.strong.expect │ │ │ │ ├── future_then_explicit_future.dart.strong.transformed.expect │ │ │ │ ├── future_then_explicit_future.dart.textual_outline.expect │ │ │ │ ├── future_then_explicit_future.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_explicit_future.dart.weak.expect │ │ │ │ ├── future_then_explicit_future.dart.weak.modular.expect │ │ │ │ ├── future_then_explicit_future.dart.weak.outline.expect │ │ │ │ ├── future_then_explicit_future.dart.weak.transformed.expect │ │ │ │ ├── future_then_ifNull.dart │ │ │ │ ├── future_then_ifNull.dart.strong.expect │ │ │ │ ├── future_then_ifNull.dart.strong.transformed.expect │ │ │ │ ├── future_then_ifNull.dart.textual_outline.expect │ │ │ │ ├── future_then_ifNull.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_ifNull.dart.weak.expect │ │ │ │ ├── future_then_ifNull.dart.weak.modular.expect │ │ │ │ ├── future_then_ifNull.dart.weak.outline.expect │ │ │ │ ├── future_then_ifNull.dart.weak.transformed.expect │ │ │ │ ├── future_then_ifNull2.dart │ │ │ │ ├── future_then_ifNull2.dart.strong.expect │ │ │ │ ├── future_then_ifNull2.dart.strong.transformed.expect │ │ │ │ ├── future_then_ifNull2.dart.textual_outline.expect │ │ │ │ ├── future_then_ifNull2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_ifNull2.dart.weak.expect │ │ │ │ ├── future_then_ifNull2.dart.weak.modular.expect │ │ │ │ ├── future_then_ifNull2.dart.weak.outline.expect │ │ │ │ ├── future_then_ifNull2.dart.weak.transformed.expect │ │ │ │ ├── future_then_upwards.dart │ │ │ │ ├── future_then_upwards.dart.strong.expect │ │ │ │ ├── future_then_upwards.dart.strong.transformed.expect │ │ │ │ ├── future_then_upwards.dart.textual_outline.expect │ │ │ │ ├── future_then_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_upwards.dart.weak.expect │ │ │ │ ├── future_then_upwards.dart.weak.modular.expect │ │ │ │ ├── future_then_upwards.dart.weak.outline.expect │ │ │ │ ├── future_then_upwards.dart.weak.transformed.expect │ │ │ │ ├── future_then_upwards_2.dart │ │ │ │ ├── future_then_upwards_2.dart.strong.expect │ │ │ │ ├── future_then_upwards_2.dart.strong.transformed.expect │ │ │ │ ├── future_then_upwards_2.dart.textual_outline.expect │ │ │ │ ├── future_then_upwards_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_upwards_2.dart.weak.expect │ │ │ │ ├── future_then_upwards_2.dart.weak.modular.expect │ │ │ │ ├── future_then_upwards_2.dart.weak.outline.expect │ │ │ │ ├── future_then_upwards_2.dart.weak.transformed.expect │ │ │ │ ├── future_then_upwards_3.dart │ │ │ │ ├── future_then_upwards_3.dart.strong.expect │ │ │ │ ├── future_then_upwards_3.dart.strong.transformed.expect │ │ │ │ ├── future_then_upwards_3.dart.textual_outline.expect │ │ │ │ ├── future_then_upwards_3.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_upwards_3.dart.weak.expect │ │ │ │ ├── future_then_upwards_3.dart.weak.modular.expect │ │ │ │ ├── future_then_upwards_3.dart.weak.outline.expect │ │ │ │ ├── future_then_upwards_3.dart.weak.transformed.expect │ │ │ │ ├── future_then_upwards_from_block.dart │ │ │ │ ├── future_then_upwards_from_block.dart.strong.expect │ │ │ │ ├── future_then_upwards_from_block.dart.strong.transformed.expect │ │ │ │ ├── future_then_upwards_from_block.dart.textual_outline.expect │ │ │ │ ├── future_then_upwards_from_block.dart.textual_outline_modelled.expect │ │ │ │ ├── future_then_upwards_from_block.dart.weak.expect │ │ │ │ ├── future_then_upwards_from_block.dart.weak.modular.expect │ │ │ │ ├── future_then_upwards_from_block.dart.weak.outline.expect │ │ │ │ ├── future_then_upwards_from_block.dart.weak.transformed.expect │ │ │ │ ├── future_union_async_conditional.dart │ │ │ │ ├── future_union_async_conditional.dart.strong.expect │ │ │ │ ├── future_union_async_conditional.dart.strong.transformed.expect │ │ │ │ ├── future_union_async_conditional.dart.textual_outline.expect │ │ │ │ ├── future_union_async_conditional.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_async_conditional.dart.weak.expect │ │ │ │ ├── future_union_async_conditional.dart.weak.modular.expect │ │ │ │ ├── future_union_async_conditional.dart.weak.outline.expect │ │ │ │ ├── future_union_async_conditional.dart.weak.transformed.expect │ │ │ │ ├── future_union_async_conditional2.dart │ │ │ │ ├── future_union_async_conditional2.dart.strong.expect │ │ │ │ ├── future_union_async_conditional2.dart.strong.transformed.expect │ │ │ │ ├── future_union_async_conditional2.dart.textual_outline.expect │ │ │ │ ├── future_union_async_conditional2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_async_conditional2.dart.weak.expect │ │ │ │ ├── future_union_async_conditional2.dart.weak.modular.expect │ │ │ │ ├── future_union_async_conditional2.dart.weak.outline.expect │ │ │ │ ├── future_union_async_conditional2.dart.weak.transformed.expect │ │ │ │ ├── future_union_async_conditional_2.dart │ │ │ │ ├── future_union_async_conditional_2.dart.strong.expect │ │ │ │ ├── future_union_async_conditional_2.dart.strong.transformed.expect │ │ │ │ ├── future_union_async_conditional_2.dart.textual_outline.expect │ │ │ │ ├── future_union_async_conditional_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_async_conditional_2.dart.weak.expect │ │ │ │ ├── future_union_async_conditional_2.dart.weak.modular.expect │ │ │ │ ├── future_union_async_conditional_2.dart.weak.outline.expect │ │ │ │ ├── future_union_async_conditional_2.dart.weak.transformed.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart │ │ │ │ ├── future_union_async_conditional_2_2.dart.strong.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.strong.transformed.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.textual_outline.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.weak.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.weak.modular.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.weak.outline.expect │ │ │ │ ├── future_union_async_conditional_2_2.dart.weak.transformed.expect │ │ │ │ ├── future_union_downwards.dart │ │ │ │ ├── future_union_downwards.dart.strong.expect │ │ │ │ ├── future_union_downwards.dart.strong.transformed.expect │ │ │ │ ├── future_union_downwards.dart.textual_outline.expect │ │ │ │ ├── future_union_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_downwards.dart.weak.expect │ │ │ │ ├── future_union_downwards.dart.weak.modular.expect │ │ │ │ ├── future_union_downwards.dart.weak.outline.expect │ │ │ │ ├── future_union_downwards.dart.weak.transformed.expect │ │ │ │ ├── future_union_downwards_2.dart │ │ │ │ ├── future_union_downwards_2.dart.strong.expect │ │ │ │ ├── future_union_downwards_2.dart.strong.transformed.expect │ │ │ │ ├── future_union_downwards_2.dart.textual_outline.expect │ │ │ │ ├── future_union_downwards_2.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_downwards_2.dart.weak.expect │ │ │ │ ├── future_union_downwards_2.dart.weak.modular.expect │ │ │ │ ├── future_union_downwards_2.dart.weak.outline.expect │ │ │ │ ├── future_union_downwards_2.dart.weak.transformed.expect │ │ │ │ ├── future_union_downwards_3.dart │ │ │ │ ├── future_union_downwards_3.dart.strong.expect │ │ │ │ ├── future_union_downwards_3.dart.strong.transformed.expect │ │ │ │ ├── future_union_downwards_3.dart.textual_outline.expect │ │ │ │ ├── future_union_downwards_3.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_downwards_3.dart.weak.expect │ │ │ │ ├── future_union_downwards_3.dart.weak.modular.expect │ │ │ │ ├── future_union_downwards_3.dart.weak.outline.expect │ │ │ │ ├── future_union_downwards_3.dart.weak.transformed.expect │ │ │ │ ├── future_union_downwards_4.dart │ │ │ │ ├── future_union_downwards_4.dart.strong.expect │ │ │ │ ├── future_union_downwards_4.dart.strong.transformed.expect │ │ │ │ ├── future_union_downwards_4.dart.textual_outline.expect │ │ │ │ ├── future_union_downwards_4.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_downwards_4.dart.weak.expect │ │ │ │ ├── future_union_downwards_4.dart.weak.modular.expect │ │ │ │ ├── future_union_downwards_4.dart.weak.outline.expect │ │ │ │ ├── future_union_downwards_4.dart.weak.transformed.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.strong.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.strong.transformed.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.textual_outline.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.weak.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.weak.modular.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.weak.outline.expect │ │ │ │ ├── future_union_downwards_generic_method_with_future_return.dart.weak.transformed.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.strong.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.strong.transformed.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.textual_outline.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.weak.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.weak.modular.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.weak.outline.expect │ │ │ │ ├── future_union_downwards_generic_method_with_generic_return.dart.weak.transformed.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart │ │ │ │ ├── future_union_upwards_generic_methods.dart.strong.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.strong.transformed.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.textual_outline.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.weak.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.weak.modular.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.weak.outline.expect │ │ │ │ ├── future_union_upwards_generic_methods.dart.weak.transformed.expect │ │ │ │ ├── generator_closure.dart │ │ │ │ ├── generator_closure.dart.strong.expect │ │ │ │ ├── generator_closure.dart.strong.transformed.expect │ │ │ │ ├── generator_closure.dart.textual_outline.expect │ │ │ │ ├── generator_closure.dart.textual_outline_modelled.expect │ │ │ │ ├── generator_closure.dart.weak.expect │ │ │ │ ├── generator_closure.dart.weak.modular.expect │ │ │ │ ├── generator_closure.dart.weak.outline.expect │ │ │ │ ├── generator_closure.dart.weak.transformed.expect │ │ │ │ ├── generic_functions_return_typedef.dart │ │ │ │ ├── generic_functions_return_typedef.dart.strong.expect │ │ │ │ ├── generic_functions_return_typedef.dart.strong.transformed.expect │ │ │ │ ├── generic_functions_return_typedef.dart.textual_outline.expect │ │ │ │ ├── generic_functions_return_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_functions_return_typedef.dart.weak.expect │ │ │ │ ├── generic_functions_return_typedef.dart.weak.modular.expect │ │ │ │ ├── generic_functions_return_typedef.dart.weak.outline.expect │ │ │ │ ├── generic_functions_return_typedef.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart │ │ │ │ ├── generic_methods_basic_downward_inference.dart.strong.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.textual_outline.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.weak.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.weak.modular.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.weak.outline.expect │ │ │ │ ├── generic_methods_basic_downward_inference.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart.strong.expect │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart.textual_outline.expect │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart.weak.expect │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart.weak.modular.expect │ │ │ │ ├── generic_methods_correctly_recognize_generic_upper_bound.dart.weak.outline.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart │ │ │ │ ├── generic_methods_dart_math_min_max.dart.strong.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.textual_outline.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.weak.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.weak.modular.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.weak.outline.expect │ │ │ │ ├── generic_methods_dart_math_min_max.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart.strong.expect │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart.textual_outline.expect │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart.weak.expect │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart.weak.modular.expect │ │ │ │ ├── generic_methods_do_not_infer_invalid_override_of_generic_method.dart.weak.outline.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.strong.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.textual_outline.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.weak.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.weak.modular.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.weak.outline.expect │ │ │ │ ├── generic_methods_downwards_inference_affects_arguments.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.strong.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.textual_outline.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.weak.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.weak.modular.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.weak.outline.expect │ │ │ │ ├── generic_methods_downwards_inference_fold.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart.strong.expect │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart.textual_outline.expect │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart.weak.expect │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart.weak.modular.expect │ │ │ │ ├── generic_methods_handle_override_of_non_generic_with_generic.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.strong.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.weak.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.strong.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.weak.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_parameter_type2.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.strong.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.weak.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_function_return_type.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.strong.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.weak.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.strong.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.weak.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_instantiation2.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.strong.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.weak.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_generic_method_type.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart │ │ │ │ ├── generic_methods_infer_js_builtin.dart.strong.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.textual_outline.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.weak.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.weak.modular.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.weak.outline.expect │ │ │ │ ├── generic_methods_infer_js_builtin.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_inference_error.dart │ │ │ │ ├── generic_methods_inference_error.dart.strong.expect │ │ │ │ ├── generic_methods_inference_error.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_inference_error.dart.textual_outline.expect │ │ │ │ ├── generic_methods_inference_error.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_inference_error.dart.weak.expect │ │ │ │ ├── generic_methods_inference_error.dart.weak.modular.expect │ │ │ │ ├── generic_methods_inference_error.dart.weak.outline.expect │ │ │ │ ├── generic_methods_inference_error.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart │ │ │ │ ├── generic_methods_iterable_and_future.dart.strong.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.textual_outline.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.weak.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.weak.modular.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.weak.outline.expect │ │ │ │ ├── generic_methods_iterable_and_future.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.strong.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.textual_outline.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.weak.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.weak.modular.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.weak.outline.expect │ │ │ │ ├── generic_methods_nested_generic_instantiation.dart.weak.transformed.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.strong.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.strong.transformed.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.textual_outline.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.weak.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.weak.modular.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.weak.outline.expect │ │ │ │ ├── generic_methods_uses_greatest_lower_bound.dart.weak.transformed.expect │ │ │ │ ├── greatest_closure_multiple_params.dart │ │ │ │ ├── greatest_closure_multiple_params.dart.strong.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.strong.transformed.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.textual_outline.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.textual_outline_modelled.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.weak.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.weak.modular.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.weak.outline.expect │ │ │ │ ├── greatest_closure_multiple_params.dart.weak.transformed.expect │ │ │ │ ├── inconsistent_overrides.dart │ │ │ │ ├── inconsistent_overrides.dart.strong.expect │ │ │ │ ├── inconsistent_overrides.dart.strong.transformed.expect │ │ │ │ ├── inconsistent_overrides.dart.textual_outline.expect │ │ │ │ ├── inconsistent_overrides.dart.textual_outline_modelled.expect │ │ │ │ ├── inconsistent_overrides.dart.weak.expect │ │ │ │ ├── inconsistent_overrides.dart.weak.modular.expect │ │ │ │ ├── inconsistent_overrides.dart.weak.outline.expect │ │ │ │ ├── inconsistent_overrides.dart.weak.transformed.expect │ │ │ │ ├── index_assign_operator_return_type.dart │ │ │ │ ├── index_assign_operator_return_type.dart.strong.expect │ │ │ │ ├── index_assign_operator_return_type.dart.strong.transformed.expect │ │ │ │ ├── index_assign_operator_return_type.dart.textual_outline.expect │ │ │ │ ├── index_assign_operator_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── index_assign_operator_return_type.dart.weak.expect │ │ │ │ ├── index_assign_operator_return_type.dart.weak.modular.expect │ │ │ │ ├── index_assign_operator_return_type.dart.weak.outline.expect │ │ │ │ ├── index_assign_operator_return_type.dart.weak.transformed.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart │ │ │ │ ├── index_assign_operator_return_type_2.dart.strong.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.strong.transformed.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.textual_outline.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.textual_outline_modelled.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.weak.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.weak.modular.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.weak.outline.expect │ │ │ │ ├── index_assign_operator_return_type_2.dart.weak.transformed.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.strong.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.strong.transformed.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.textual_outline.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.weak.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.weak.modular.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.weak.outline.expect │ │ │ │ ├── infer_accessor_from_later_inferred_field.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart │ │ │ │ ├── infer_assign_to_implicit_this.dart.strong.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_full.dart │ │ │ │ ├── infer_assign_to_index_full.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_full.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_full.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_full.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_super.dart │ │ │ │ ├── infer_assign_to_index_super.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_super.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_super.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_super.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_super2.dart │ │ │ │ ├── infer_assign_to_index_super2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_this.dart │ │ │ │ ├── infer_assign_to_index_this.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_this.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_this.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_this.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_this2.dart │ │ │ │ ├── infer_assign_to_index_this2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local.dart │ │ │ │ ├── infer_assign_to_local.dart.strong.expect │ │ │ │ ├── infer_assign_to_local.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local2.dart │ │ │ │ ├── infer_assign_to_local2.dart.strong.expect │ │ │ │ ├── infer_assign_to_local2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart │ │ │ │ ├── infer_assign_to_local_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_full.dart │ │ │ │ ├── infer_assign_to_property_full.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_full.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_full.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_full.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_full2.dart │ │ │ │ ├── infer_assign_to_property_full2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart │ │ │ │ ├── infer_assign_to_property_null_aware.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super.dart │ │ │ │ ├── infer_assign_to_property_super.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super2.dart │ │ │ │ ├── infer_assign_to_property_super2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart │ │ │ │ ├── infer_assign_to_property_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_ref.dart │ │ │ │ ├── infer_assign_to_ref.dart.strong.expect │ │ │ │ ├── infer_assign_to_ref.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_ref.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_ref.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static.dart │ │ │ │ ├── infer_assign_to_static.dart.strong.expect │ │ │ │ ├── infer_assign_to_static.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static2.dart │ │ │ │ ├── infer_assign_to_static2.dart.strong.expect │ │ │ │ ├── infer_assign_to_static2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart │ │ │ │ ├── infer_assign_to_static_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_binary_custom.dart │ │ │ │ ├── infer_binary_custom.dart.strong.expect │ │ │ │ ├── infer_binary_custom.dart.strong.transformed.expect │ │ │ │ ├── infer_binary_custom.dart.textual_outline.expect │ │ │ │ ├── infer_binary_custom.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_binary_custom.dart.weak.expect │ │ │ │ ├── infer_binary_custom.dart.weak.modular.expect │ │ │ │ ├── infer_binary_custom.dart.weak.outline.expect │ │ │ │ ├── infer_binary_custom.dart.weak.transformed.expect │ │ │ │ ├── infer_binary_double_double.dart │ │ │ │ ├── infer_binary_double_double.dart.strong.expect │ │ │ │ ├── infer_binary_double_double.dart.strong.transformed.expect │ │ │ │ ├── infer_binary_double_double.dart.textual_outline.expect │ │ │ │ ├── infer_binary_double_double.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_binary_double_double.dart.weak.expect │ │ │ │ ├── infer_binary_double_double.dart.weak.modular.expect │ │ │ │ ├── infer_binary_double_double.dart.weak.outline.expect │ │ │ │ ├── infer_binary_double_double.dart.weak.transformed.expect │ │ │ │ ├── infer_binary_double_int.dart │ │ │ │ ├── infer_binary_double_int.dart.strong.expect │ │ │ │ ├── infer_binary_double_int.dart.strong.transformed.expect │ │ │ │ ├── infer_binary_double_int.dart.textual_outline.expect │ │ │ │ ├── infer_binary_double_int.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_binary_double_int.dart.weak.expect │ │ │ │ ├── infer_binary_double_int.dart.weak.modular.expect │ │ │ │ ├── infer_binary_double_int.dart.weak.outline.expect │ │ │ │ ├── infer_binary_double_int.dart.weak.transformed.expect │ │ │ │ ├── infer_binary_int_double.dart │ │ │ │ ├── infer_binary_int_double.dart.strong.expect │ │ │ │ ├── infer_binary_int_double.dart.strong.transformed.expect │ │ │ │ ├── infer_binary_int_double.dart.textual_outline.expect │ │ │ │ ├── infer_binary_int_double.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_binary_int_double.dart.weak.expect │ │ │ │ ├── infer_binary_int_double.dart.weak.modular.expect │ │ │ │ ├── infer_binary_int_double.dart.weak.outline.expect │ │ │ │ ├── infer_binary_int_double.dart.weak.transformed.expect │ │ │ │ ├── infer_binary_int_int.dart │ │ │ │ ├── infer_binary_int_int.dart.strong.expect │ │ │ │ ├── infer_binary_int_int.dart.strong.transformed.expect │ │ │ │ ├── infer_binary_int_int.dart.textual_outline.expect │ │ │ │ ├── infer_binary_int_int.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_binary_int_int.dart.weak.expect │ │ │ │ ├── infer_binary_int_int.dart.weak.modular.expect │ │ │ │ ├── infer_binary_int_int.dart.weak.outline.expect │ │ │ │ ├── infer_binary_int_int.dart.weak.transformed.expect │ │ │ │ ├── infer_conditional.dart │ │ │ │ ├── infer_conditional.dart.strong.expect │ │ │ │ ├── infer_conditional.dart.strong.transformed.expect │ │ │ │ ├── infer_conditional.dart.textual_outline.expect │ │ │ │ ├── infer_conditional.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_conditional.dart.weak.expect │ │ │ │ ├── infer_conditional.dart.weak.modular.expect │ │ │ │ ├── infer_conditional.dart.weak.outline.expect │ │ │ │ ├── infer_conditional.dart.weak.transformed.expect │ │ │ │ ├── infer_consts_transitively_2.dart │ │ │ │ ├── infer_consts_transitively_2.dart.strong.expect │ │ │ │ ├── infer_consts_transitively_2.dart.strong.transformed.expect │ │ │ │ ├── infer_consts_transitively_2.dart.textual_outline.expect │ │ │ │ ├── infer_consts_transitively_2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_consts_transitively_2.dart.weak.expect │ │ │ │ ├── infer_consts_transitively_2.dart.weak.modular.expect │ │ │ │ ├── infer_consts_transitively_2.dart.weak.outline.expect │ │ │ │ ├── infer_consts_transitively_2.dart.weak.transformed.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart │ │ │ │ ├── infer_consts_transitively_2_a.dart.strong.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.strong.transformed.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.textual_outline.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.weak.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.weak.modular.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.weak.outline.expect │ │ │ │ ├── infer_consts_transitively_2_a.dart.weak.transformed.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart │ │ │ │ ├── infer_consts_transitively_2_b.dart.strong.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.strong.transformed.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.textual_outline.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.weak.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.weak.modular.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.weak.outline.expect │ │ │ │ ├── infer_consts_transitively_2_b.dart.weak.transformed.expect │ │ │ │ ├── infer_consts_transitively_b.dart │ │ │ │ ├── infer_consts_transitively_b.dart.strong.expect │ │ │ │ ├── infer_consts_transitively_b.dart.strong.transformed.expect │ │ │ │ ├── infer_consts_transitively_b.dart.textual_outline.expect │ │ │ │ ├── infer_consts_transitively_b.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_consts_transitively_b.dart.weak.expect │ │ │ │ ├── infer_consts_transitively_b.dart.weak.modular.expect │ │ │ │ ├── infer_consts_transitively_b.dart.weak.outline.expect │ │ │ │ ├── infer_consts_transitively_b.dart.weak.transformed.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.strong.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.strong.transformed.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.textual_outline.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.weak.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.weak.modular.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.weak.outline.expect │ │ │ │ ├── infer_correctly_on_multiple_variables_declared_together.dart.weak.transformed.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart │ │ │ │ ├── infer_field_from_later_inferred_field.dart.strong.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.strong.transformed.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.textual_outline.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.weak.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.weak.modular.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.weak.outline.expect │ │ │ │ ├── infer_field_from_later_inferred_field.dart.weak.transformed.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.strong.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.strong.transformed.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.textual_outline.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.weak.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.weak.modular.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.weak.outline.expect │ │ │ │ ├── infer_field_from_later_inferred_getter.dart.weak.transformed.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.strong.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.textual_outline.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.weak.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.weak.modular.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.weak.outline.expect │ │ │ │ ├── infer_field_from_later_inferred_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_field_override_multiple.dart │ │ │ │ ├── infer_field_override_multiple.dart.strong.expect │ │ │ │ ├── infer_field_override_multiple.dart.strong.transformed.expect │ │ │ │ ├── infer_field_override_multiple.dart.textual_outline.expect │ │ │ │ ├── infer_field_override_multiple.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_override_multiple.dart.weak.expect │ │ │ │ ├── infer_field_override_multiple.dart.weak.modular.expect │ │ │ │ ├── infer_field_override_multiple.dart.weak.outline.expect │ │ │ │ ├── infer_field_override_multiple.dart.weak.transformed.expect │ │ │ │ ├── infer_field_override_of_override.dart │ │ │ │ ├── infer_field_override_of_override.dart.strong.expect │ │ │ │ ├── infer_field_override_of_override.dart.strong.transformed.expect │ │ │ │ ├── infer_field_override_of_override.dart.textual_outline.expect │ │ │ │ ├── infer_field_override_of_override.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_override_of_override.dart.weak.expect │ │ │ │ ├── infer_field_override_of_override.dart.weak.modular.expect │ │ │ │ ├── infer_field_override_of_override.dart.weak.outline.expect │ │ │ │ ├── infer_field_override_of_override.dart.weak.transformed.expect │ │ │ │ ├── infer_field_override_with_substitution.dart │ │ │ │ ├── infer_field_override_with_substitution.dart.strong.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.strong.transformed.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.textual_outline.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.weak.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.weak.modular.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.weak.outline.expect │ │ │ │ ├── infer_field_override_with_substitution.dart.weak.transformed.expect │ │ │ │ ├── infer_field_overrides_getter.dart │ │ │ │ ├── infer_field_overrides_getter.dart.strong.expect │ │ │ │ ├── infer_field_overrides_getter.dart.strong.transformed.expect │ │ │ │ ├── infer_field_overrides_getter.dart.textual_outline.expect │ │ │ │ ├── infer_field_overrides_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_overrides_getter.dart.weak.expect │ │ │ │ ├── infer_field_overrides_getter.dart.weak.modular.expect │ │ │ │ ├── infer_field_overrides_getter.dart.weak.outline.expect │ │ │ │ ├── infer_field_overrides_getter.dart.weak.transformed.expect │ │ │ │ ├── infer_field_overrides_setter.dart │ │ │ │ ├── infer_field_overrides_setter.dart.strong.expect │ │ │ │ ├── infer_field_overrides_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_field_overrides_setter.dart.textual_outline.expect │ │ │ │ ├── infer_field_overrides_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_overrides_setter.dart.weak.expect │ │ │ │ ├── infer_field_overrides_setter.dart.weak.modular.expect │ │ │ │ ├── infer_field_overrides_setter.dart.weak.outline.expect │ │ │ │ ├── infer_field_overrides_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_field_static.dart │ │ │ │ ├── infer_field_static.dart.strong.expect │ │ │ │ ├── infer_field_static.dart.strong.transformed.expect │ │ │ │ ├── infer_field_static.dart.textual_outline.expect │ │ │ │ ├── infer_field_static.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_static.dart.weak.expect │ │ │ │ ├── infer_field_static.dart.weak.modular.expect │ │ │ │ ├── infer_field_static.dart.weak.outline.expect │ │ │ │ ├── infer_field_static.dart.weak.transformed.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart │ │ │ │ ├── infer_final_field_getter_and_setter.dart.strong.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.textual_outline.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.weak.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.weak.modular.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.weak.outline.expect │ │ │ │ ├── infer_final_field_getter_and_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_final_field_getter_only.dart │ │ │ │ ├── infer_final_field_getter_only.dart.strong.expect │ │ │ │ ├── infer_final_field_getter_only.dart.strong.transformed.expect │ │ │ │ ├── infer_final_field_getter_only.dart.textual_outline.expect │ │ │ │ ├── infer_final_field_getter_only.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_final_field_getter_only.dart.weak.expect │ │ │ │ ├── infer_final_field_getter_only.dart.weak.modular.expect │ │ │ │ ├── infer_final_field_getter_only.dart.weak.outline.expect │ │ │ │ ├── infer_final_field_getter_only.dart.weak.transformed.expect │ │ │ │ ├── infer_final_field_setter_only.dart │ │ │ │ ├── infer_final_field_setter_only.dart.strong.expect │ │ │ │ ├── infer_final_field_setter_only.dart.strong.transformed.expect │ │ │ │ ├── infer_final_field_setter_only.dart.textual_outline.expect │ │ │ │ ├── infer_final_field_setter_only.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_final_field_setter_only.dart.weak.expect │ │ │ │ ├── infer_final_field_setter_only.dart.weak.modular.expect │ │ │ │ ├── infer_final_field_setter_only.dart.weak.outline.expect │ │ │ │ ├── infer_final_field_setter_only.dart.weak.transformed.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.strong.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.strong.transformed.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.textual_outline.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.weak.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.weak.modular.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.weak.outline.expect │ │ │ │ ├── infer_from_complex_expressions_if_outer_most_value_is_precise.dart.weak.transformed.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.strong.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.strong.transformed.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.textual_outline.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.weak.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.weak.modular.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.weak.outline.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields.dart.weak.transformed.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.strong.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.strong.transformed.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.textual_outline.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.weak.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.weak.modular.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.weak.outline.expect │ │ │ │ ├── infer_from_rhs_only_if_it_wont_conflict_with_overridden_fields2.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on2_a.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_cycle_libs_when_flag_is_on_a.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag2_a.dart.weak.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.strong.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.strong.transformed.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.textual_outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.weak.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.weak.modular.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.weak.outline.expect │ │ │ │ ├── infer_from_variables_in_non_cycle_imports_with_flag_a.dart.weak.transformed.expect │ │ │ │ ├── infer_generic_field_types.dart │ │ │ │ ├── infer_generic_field_types.dart.strong.expect │ │ │ │ ├── infer_generic_field_types.dart.strong.transformed.expect │ │ │ │ ├── infer_generic_field_types.dart.textual_outline.expect │ │ │ │ ├── infer_generic_field_types.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_generic_field_types.dart.weak.expect │ │ │ │ ├── infer_generic_field_types.dart.weak.modular.expect │ │ │ │ ├── infer_generic_field_types.dart.weak.outline.expect │ │ │ │ ├── infer_generic_field_types.dart.weak.transformed.expect │ │ │ │ ├── infer_generic_method_type_named.dart │ │ │ │ ├── infer_generic_method_type_named.dart.strong.expect │ │ │ │ ├── infer_generic_method_type_named.dart.strong.transformed.expect │ │ │ │ ├── infer_generic_method_type_named.dart.textual_outline.expect │ │ │ │ ├── infer_generic_method_type_named.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_generic_method_type_named.dart.weak.expect │ │ │ │ ├── infer_generic_method_type_named.dart.weak.modular.expect │ │ │ │ ├── infer_generic_method_type_named.dart.weak.outline.expect │ │ │ │ ├── infer_generic_method_type_named.dart.weak.transformed.expect │ │ │ │ ├── infer_generic_method_type_positional.dart │ │ │ │ ├── infer_generic_method_type_positional.dart.strong.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.strong.transformed.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.textual_outline.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.weak.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.weak.modular.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.weak.outline.expect │ │ │ │ ├── infer_generic_method_type_positional.dart.weak.transformed.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart │ │ │ │ ├── infer_generic_method_type_positional2.dart.strong.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.strong.transformed.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.textual_outline.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.weak.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.weak.modular.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.weak.outline.expect │ │ │ │ ├── infer_generic_method_type_positional2.dart.weak.transformed.expect │ │ │ │ ├── infer_generic_method_type_required.dart │ │ │ │ ├── infer_generic_method_type_required.dart.strong.expect │ │ │ │ ├── infer_generic_method_type_required.dart.strong.transformed.expect │ │ │ │ ├── infer_generic_method_type_required.dart.textual_outline.expect │ │ │ │ ├── infer_generic_method_type_required.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_generic_method_type_required.dart.weak.expect │ │ │ │ ├── infer_generic_method_type_required.dart.weak.modular.expect │ │ │ │ ├── infer_generic_method_type_required.dart.weak.outline.expect │ │ │ │ ├── infer_generic_method_type_required.dart.weak.transformed.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart │ │ │ │ ├── infer_getter_cross_to_setter.dart.strong.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.textual_outline.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.weak.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.weak.modular.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.weak.outline.expect │ │ │ │ ├── infer_getter_cross_to_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.strong.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.strong.transformed.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.textual_outline.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.weak.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.weak.modular.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.weak.outline.expect │ │ │ │ ├── infer_getter_from_later_inferred_getter.dart.weak.transformed.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.strong.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.strong.transformed.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.textual_outline.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.weak.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.weak.modular.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.weak.outline.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal.dart.weak.transformed.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.strong.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.strong.transformed.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.textual_outline.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.weak.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.weak.modular.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.weak.outline.expect │ │ │ │ ├── infer_list_literal_nested_in_map_literal2.dart.weak.transformed.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.strong.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.strong.transformed.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.textual_outline.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.weak.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.weak.modular.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.weak.outline.expect │ │ │ │ ├── infer_local_function_referenced_before_declaration.dart.weak.transformed.expect │ │ │ │ ├── infer_local_function_return_type.dart │ │ │ │ ├── infer_local_function_return_type.dart.strong.expect │ │ │ │ ├── infer_local_function_return_type.dart.strong.transformed.expect │ │ │ │ ├── infer_local_function_return_type.dart.textual_outline.expect │ │ │ │ ├── infer_local_function_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_local_function_return_type.dart.weak.expect │ │ │ │ ├── infer_local_function_return_type.dart.weak.modular.expect │ │ │ │ ├── infer_local_function_return_type.dart.weak.outline.expect │ │ │ │ ├── infer_local_function_return_type.dart.weak.transformed.expect │ │ │ │ ├── infer_method_function_typed.dart │ │ │ │ ├── infer_method_function_typed.dart.strong.expect │ │ │ │ ├── infer_method_function_typed.dart.strong.transformed.expect │ │ │ │ ├── infer_method_function_typed.dart.textual_outline.expect │ │ │ │ ├── infer_method_function_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_method_function_typed.dart.weak.expect │ │ │ │ ├── infer_method_function_typed.dart.weak.modular.expect │ │ │ │ ├── infer_method_function_typed.dart.weak.outline.expect │ │ │ │ ├── infer_method_function_typed.dart.weak.transformed.expect │ │ │ │ ├── infer_method_missing_params.dart │ │ │ │ ├── infer_method_missing_params.dart.strong.expect │ │ │ │ ├── infer_method_missing_params.dart.textual_outline.expect │ │ │ │ ├── infer_method_missing_params.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_method_missing_params.dart.weak.expect │ │ │ │ ├── infer_method_missing_params.dart.weak.modular.expect │ │ │ │ ├── infer_method_missing_params.dart.weak.outline.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.strong.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.strong.transformed.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.textual_outline.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.weak.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.weak.modular.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.weak.outline.expect │ │ │ │ ├── infer_parameter_type_setter_from_field.dart.weak.transformed.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.strong.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.textual_outline.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.weak.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.weak.modular.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.weak.outline.expect │ │ │ │ ├── infer_parameter_type_setter_from_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_prefix_expression.dart │ │ │ │ ├── infer_prefix_expression.dart.strong.expect │ │ │ │ ├── infer_prefix_expression.dart.strong.transformed.expect │ │ │ │ ├── infer_prefix_expression.dart.textual_outline.expect │ │ │ │ ├── infer_prefix_expression.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_prefix_expression.dart.weak.expect │ │ │ │ ├── infer_prefix_expression.dart.weak.modular.expect │ │ │ │ ├── infer_prefix_expression.dart.weak.outline.expect │ │ │ │ ├── infer_prefix_expression.dart.weak.transformed.expect │ │ │ │ ├── infer_prefix_expression_custom.dart │ │ │ │ ├── infer_prefix_expression_custom.dart.strong.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.strong.transformed.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.textual_outline.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.weak.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.weak.modular.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.weak.outline.expect │ │ │ │ ├── infer_prefix_expression_custom.dart.weak.transformed.expect │ │ │ │ ├── infer_rethrow.dart │ │ │ │ ├── infer_rethrow.dart.strong.expect │ │ │ │ ├── infer_rethrow.dart.strong.transformed.expect │ │ │ │ ├── infer_rethrow.dart.textual_outline.expect │ │ │ │ ├── infer_rethrow.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_rethrow.dart.weak.expect │ │ │ │ ├── infer_rethrow.dart.weak.modular.expect │ │ │ │ ├── infer_rethrow.dart.weak.outline.expect │ │ │ │ ├── infer_rethrow.dart.weak.transformed.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart │ │ │ │ ├── infer_return_of_statement_lambda.dart.strong.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.strong.transformed.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.textual_outline.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.weak.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.weak.modular.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.weak.outline.expect │ │ │ │ ├── infer_return_of_statement_lambda.dart.weak.transformed.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart │ │ │ │ ├── infer_return_type_for_static_setter.dart.strong.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.textual_outline.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.weak.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.weak.modular.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.weak.outline.expect │ │ │ │ ├── infer_return_type_for_static_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart │ │ │ │ ├── infer_setter_cross_to_getter.dart.strong.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.strong.transformed.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.textual_outline.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.weak.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.weak.modular.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.weak.outline.expect │ │ │ │ ├── infer_setter_cross_to_getter.dart.weak.transformed.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.strong.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.textual_outline.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.weak.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.weak.modular.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.weak.outline.expect │ │ │ │ ├── infer_setter_from_later_inferred_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_setter_function_typed.dart │ │ │ │ ├── infer_setter_function_typed.dart.strong.expect │ │ │ │ ├── infer_setter_function_typed.dart.strong.transformed.expect │ │ │ │ ├── infer_setter_function_typed.dart.textual_outline.expect │ │ │ │ ├── infer_setter_function_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_setter_function_typed.dart.weak.expect │ │ │ │ ├── infer_setter_function_typed.dart.weak.modular.expect │ │ │ │ ├── infer_setter_function_typed.dart.weak.outline.expect │ │ │ │ ├── infer_setter_function_typed.dart.weak.transformed.expect │ │ │ │ ├── infer_setter_return_type_only.dart │ │ │ │ ├── infer_setter_return_type_only.dart.strong.expect │ │ │ │ ├── infer_setter_return_type_only.dart.strong.transformed.expect │ │ │ │ ├── infer_setter_return_type_only.dart.textual_outline.expect │ │ │ │ ├── infer_setter_return_type_only.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_setter_return_type_only.dart.weak.expect │ │ │ │ ├── infer_setter_return_type_only.dart.weak.modular.expect │ │ │ │ ├── infer_setter_return_type_only.dart.weak.outline.expect │ │ │ │ ├── infer_setter_return_type_only.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively.dart │ │ │ │ ├── infer_statics_transitively.dart.strong.expect │ │ │ │ ├── infer_statics_transitively.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively.dart.weak.expect │ │ │ │ ├── infer_statics_transitively.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively2.dart │ │ │ │ ├── infer_statics_transitively2.dart.strong.expect │ │ │ │ ├── infer_statics_transitively2.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively2.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively2.dart.weak.expect │ │ │ │ ├── infer_statics_transitively2.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively2.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively2.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively3.dart │ │ │ │ ├── infer_statics_transitively3.dart.strong.expect │ │ │ │ ├── infer_statics_transitively3.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively3.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively3.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively3.dart.weak.expect │ │ │ │ ├── infer_statics_transitively3.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively3.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively3.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively3_a.dart │ │ │ │ ├── infer_statics_transitively3_a.dart.strong.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.weak.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively3_a.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart │ │ │ │ ├── infer_statics_transitively_2_a.dart.strong.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.weak.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively_2_a.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively_a.dart │ │ │ │ ├── infer_statics_transitively_a.dart.strong.expect │ │ │ │ ├── infer_statics_transitively_a.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively_a.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively_a.dart.weak.expect │ │ │ │ ├── infer_statics_transitively_a.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively_a.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively_a.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_transitively_b.dart │ │ │ │ ├── infer_statics_transitively_b.dart.strong.expect │ │ │ │ ├── infer_statics_transitively_b.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_transitively_b.dart.textual_outline.expect │ │ │ │ ├── infer_statics_transitively_b.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_transitively_b.dart.weak.expect │ │ │ │ ├── infer_statics_transitively_b.dart.weak.modular.expect │ │ │ │ ├── infer_statics_transitively_b.dart.weak.outline.expect │ │ │ │ ├── infer_statics_transitively_b.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart │ │ │ │ ├── infer_statics_with_method_invocations.dart.strong.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.textual_outline.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.weak.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.weak.modular.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.weak.outline.expect │ │ │ │ ├── infer_statics_with_method_invocations.dart.weak.transformed.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.strong.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.strong.transformed.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.textual_outline.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.weak.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.weak.modular.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.weak.outline.expect │ │ │ │ ├── infer_statics_with_method_invocations_a.dart.weak.transformed.expect │ │ │ │ ├── infer_throw.dart │ │ │ │ ├── infer_throw.dart.strong.expect │ │ │ │ ├── infer_throw.dart.strong.transformed.expect │ │ │ │ ├── infer_throw.dart.textual_outline.expect │ │ │ │ ├── infer_throw.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_throw.dart.weak.expect │ │ │ │ ├── infer_throw.dart.weak.modular.expect │ │ │ │ ├── infer_throw.dart.weak.outline.expect │ │ │ │ ├── infer_throw.dart.weak.transformed.expect │ │ │ │ ├── infer_throw_downwards.dart │ │ │ │ ├── infer_throw_downwards.dart.strong.expect │ │ │ │ ├── infer_throw_downwards.dart.strong.transformed.expect │ │ │ │ ├── infer_throw_downwards.dart.textual_outline.expect │ │ │ │ ├── infer_throw_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_throw_downwards.dart.weak.expect │ │ │ │ ├── infer_throw_downwards.dart.weak.modular.expect │ │ │ │ ├── infer_throw_downwards.dart.weak.outline.expect │ │ │ │ ├── infer_throw_downwards.dart.weak.transformed.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart │ │ │ │ ├── infer_type_on_overridden_fields2.dart.strong.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.strong.transformed.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.textual_outline.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.weak.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.weak.modular.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.weak.outline.expect │ │ │ │ ├── infer_type_on_overridden_fields2.dart.weak.transformed.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart │ │ │ │ ├── infer_type_on_overridden_fields4.dart.strong.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.strong.transformed.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.textual_outline.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.weak.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.weak.modular.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.weak.outline.expect │ │ │ │ ├── infer_type_on_overridden_fields4.dart.weak.transformed.expect │ │ │ │ ├── infer_type_on_var.dart │ │ │ │ ├── infer_type_on_var.dart.strong.expect │ │ │ │ ├── infer_type_on_var.dart.strong.transformed.expect │ │ │ │ ├── infer_type_on_var.dart.textual_outline.expect │ │ │ │ ├── infer_type_on_var.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_on_var.dart.weak.expect │ │ │ │ ├── infer_type_on_var.dart.weak.modular.expect │ │ │ │ ├── infer_type_on_var.dart.weak.outline.expect │ │ │ │ ├── infer_type_on_var.dart.weak.transformed.expect │ │ │ │ ├── infer_type_on_var2.dart │ │ │ │ ├── infer_type_on_var2.dart.strong.expect │ │ │ │ ├── infer_type_on_var2.dart.strong.transformed.expect │ │ │ │ ├── infer_type_on_var2.dart.textual_outline.expect │ │ │ │ ├── infer_type_on_var2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_on_var2.dart.weak.expect │ │ │ │ ├── infer_type_on_var2.dart.weak.modular.expect │ │ │ │ ├── infer_type_on_var2.dart.weak.outline.expect │ │ │ │ ├── infer_type_on_var2.dart.weak.transformed.expect │ │ │ │ ├── infer_type_on_var_from_field.dart │ │ │ │ ├── infer_type_on_var_from_field.dart.strong.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.strong.transformed.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.textual_outline.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.weak.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.weak.modular.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.weak.outline.expect │ │ │ │ ├── infer_type_on_var_from_field.dart.weak.transformed.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart │ │ │ │ ├── infer_type_on_var_from_top_level.dart.strong.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.strong.transformed.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.textual_outline.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.weak.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.weak.modular.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.weak.outline.expect │ │ │ │ ├── infer_type_on_var_from_top_level.dart.weak.transformed.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.strong.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.strong.transformed.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.textual_outline.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.weak.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.weak.modular.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.weak.outline.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles.dart.weak.transformed.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.strong.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.strong.transformed.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.textual_outline.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.weak.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.weak.modular.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.weak.outline.expect │ │ │ │ ├── infer_type_regardless_of_declaration_order_or_cycles_b.dart.weak.transformed.expect │ │ │ │ ├── infer_typed_map_literal.dart │ │ │ │ ├── infer_typed_map_literal.dart.strong.expect │ │ │ │ ├── infer_typed_map_literal.dart.strong.transformed.expect │ │ │ │ ├── infer_typed_map_literal.dart.textual_outline.expect │ │ │ │ ├── infer_typed_map_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_typed_map_literal.dart.weak.expect │ │ │ │ ├── infer_typed_map_literal.dart.weak.modular.expect │ │ │ │ ├── infer_typed_map_literal.dart.weak.outline.expect │ │ │ │ ├── infer_typed_map_literal.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.strong.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.weak.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_3.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.strong.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.weak.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_4.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.strong.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.weak.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_5.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.strong.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.weak.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.strong.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.weak.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_in_library_cycle_a.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart.strong.expect │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart.weak.expect │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_generic_instantiations_infer.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.strong.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.weak.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.strong.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.weak.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_each_loop_async.dart.weak.transformed.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.strong.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.strong.transformed.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.textual_outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.weak.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.weak.modular.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.weak.outline.expect │ │ │ │ ├── infer_types_on_loop_indices_for_loop_with_inference.dart.weak.transformed.expect │ │ │ │ ├── infer_use_of_void_local.dart │ │ │ │ ├── infer_use_of_void_local.dart.strong.expect │ │ │ │ ├── infer_use_of_void_local.dart.strong.transformed.expect │ │ │ │ ├── infer_use_of_void_local.dart.textual_outline.expect │ │ │ │ ├── infer_use_of_void_local.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_use_of_void_local.dart.weak.expect │ │ │ │ ├── infer_use_of_void_local.dart.weak.modular.expect │ │ │ │ ├── infer_use_of_void_local.dart.weak.outline.expect │ │ │ │ ├── infer_use_of_void_local.dart.weak.transformed.expect │ │ │ │ ├── infer_variable_void.dart │ │ │ │ ├── infer_variable_void.dart.strong.expect │ │ │ │ ├── infer_variable_void.dart.strong.transformed.expect │ │ │ │ ├── infer_variable_void.dart.textual_outline.expect │ │ │ │ ├── infer_variable_void.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_variable_void.dart.weak.expect │ │ │ │ ├── infer_variable_void.dart.weak.modular.expect │ │ │ │ ├── infer_variable_void.dart.weak.outline.expect │ │ │ │ ├── infer_variable_void.dart.weak.transformed.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.strong.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.strong.transformed.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.textual_outline.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.weak.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.weak.modular.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.weak.outline.expect │ │ │ │ ├── inferred_initializing_formal_checks_default_value.dart.weak.transformed.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.strong.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.strong.transformed.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.textual_outline.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.weak.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.weak.modular.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.weak.outline.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_static_field_complex.dart.weak.transformed.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.strong.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.strong.transformed.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.textual_outline.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.weak.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.weak.modular.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.weak.outline.expect │ │ │ │ ├── inferred_nonstatic_field_depends_on_top_level_var_simple.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.strong.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.textual_outline.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.weak.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.weak.modular.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.weak.outline.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.strong.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.textual_outline.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.weak.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.weak.modular.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.weak.outline.expect │ │ │ │ ├── inferred_type_block_closure_no_args_no_return_void_context.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_cascade.dart │ │ │ │ ├── inferred_type_cascade.dart.strong.expect │ │ │ │ ├── inferred_type_cascade.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_cascade.dart.textual_outline.expect │ │ │ │ ├── inferred_type_cascade.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_cascade.dart.weak.expect │ │ │ │ ├── inferred_type_cascade.dart.weak.modular.expect │ │ │ │ ├── inferred_type_cascade.dart.weak.outline.expect │ │ │ │ ├── inferred_type_cascade.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart │ │ │ │ ├── inferred_type_custom_binary_op.dart.strong.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.textual_outline.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.weak.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.weak.modular.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.weak.outline.expect │ │ │ │ ├── inferred_type_custom_binary_op.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.strong.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.textual_outline.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.weak.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.weak.modular.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.weak.outline.expect │ │ │ │ ├── inferred_type_custom_binary_op_via_interface.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_custom_index_op.dart │ │ │ │ ├── inferred_type_custom_index_op.dart.strong.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.textual_outline.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.weak.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.weak.modular.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.weak.outline.expect │ │ │ │ ├── inferred_type_custom_index_op.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.strong.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.textual_outline.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.weak.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.weak.modular.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.weak.outline.expect │ │ │ │ ├── inferred_type_custom_index_op_via_interface.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart │ │ │ │ ├── inferred_type_custom_unary_op.dart.strong.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.textual_outline.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.weak.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.weak.modular.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.weak.outline.expect │ │ │ │ ├── inferred_type_custom_unary_op.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.strong.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.textual_outline.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.weak.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.weak.modular.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.weak.outline.expect │ │ │ │ ├── inferred_type_custom_unary_op_via_interface.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.strong.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.textual_outline.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.weak.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.weak.modular.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.weak.outline.expect │ │ │ │ ├── inferred_type_extract_method_tear_off.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.strong.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.textual_outline.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.weak.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.weak.modular.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.weak.outline.expect │ │ │ │ ├── inferred_type_extract_method_tear_off_via_interface.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.strong.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.textual_outline.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.weak.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.weak.modular.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.weak.outline.expect │ │ │ │ ├── inferred_type_from_top_level_executable_tear_off.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_invoke_method.dart │ │ │ │ ├── inferred_type_invoke_method.dart.strong.expect │ │ │ │ ├── inferred_type_invoke_method.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_invoke_method.dart.textual_outline.expect │ │ │ │ ├── inferred_type_invoke_method.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_invoke_method.dart.weak.expect │ │ │ │ ├── inferred_type_invoke_method.dart.weak.modular.expect │ │ │ │ ├── inferred_type_invoke_method.dart.weak.outline.expect │ │ │ │ ├── inferred_type_invoke_method.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.strong.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.textual_outline.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.weak.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.weak.modular.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.weak.outline.expect │ │ │ │ ├── inferred_type_invoke_method_via_interface.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_is_enum.dart │ │ │ │ ├── inferred_type_is_enum.dart.strong.expect │ │ │ │ ├── inferred_type_is_enum.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_is_enum.dart.textual_outline.expect │ │ │ │ ├── inferred_type_is_enum.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_is_enum.dart.weak.expect │ │ │ │ ├── inferred_type_is_enum.dart.weak.modular.expect │ │ │ │ ├── inferred_type_is_enum.dart.weak.outline.expect │ │ │ │ ├── inferred_type_is_enum.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_is_enum_values.dart │ │ │ │ ├── inferred_type_is_enum_values.dart.strong.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.textual_outline.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.weak.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.weak.modular.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.weak.outline.expect │ │ │ │ ├── inferred_type_is_enum_values.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_is_typedef.dart │ │ │ │ ├── inferred_type_is_typedef.dart.strong.expect │ │ │ │ ├── inferred_type_is_typedef.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_is_typedef.dart.textual_outline.expect │ │ │ │ ├── inferred_type_is_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_is_typedef.dart.weak.expect │ │ │ │ ├── inferred_type_is_typedef.dart.weak.modular.expect │ │ │ │ ├── inferred_type_is_typedef.dart.weak.outline.expect │ │ │ │ ├── inferred_type_is_typedef.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.strong.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.textual_outline.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.weak.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.weak.modular.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.weak.outline.expect │ │ │ │ ├── inferred_type_is_typedef_parameterized.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.strong.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.textual_outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.weak.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.weak.modular.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.weak.outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.strong.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.textual_outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.weak.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.weak.modular.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.weak.outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_function_typed_param.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.strong.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.textual_outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.weak.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.weak.modular.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.weak.outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_named_param.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.strong.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.textual_outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.weak.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.weak.modular.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.weak.outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_positional_param.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.strong.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.textual_outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.weak.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.weak.modular.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.weak.outline.expect │ │ │ │ ├── inferred_type_uses_synthetic_function_type_required_param.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.strong.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.textual_outline.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.weak.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.weak.modular.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.weak.outline.expect │ │ │ │ ├── inferred_type_via_closure_multiple_levels_of_nesting.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.strong.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.textual_outline.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.weak.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.weak.modular.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.weak.outline.expect │ │ │ │ ├── inferred_type_via_closure_type_depends_on_args.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.strong.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.textual_outline.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.weak.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.weak.modular.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.weak.outline.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_field.dart.weak.transformed.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.strong.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.strong.transformed.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.textual_outline.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.weak.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.weak.modular.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.weak.outline.expect │ │ │ │ ├── inferred_type_via_closure_type_independent_of_args_top_level.dart.weak.transformed.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.strong.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.strong.transformed.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.textual_outline.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.textual_outline_modelled.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.weak.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.weak.modular.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.weak.outline.expect │ │ │ │ ├── inheritance_does_not_imply_circularity.dart.weak.transformed.expect │ │ │ │ ├── instance_creation_downwards.dart │ │ │ │ ├── instance_creation_downwards.dart.strong.expect │ │ │ │ ├── instance_creation_downwards.dart.strong.transformed.expect │ │ │ │ ├── instance_creation_downwards.dart.textual_outline.expect │ │ │ │ ├── instance_creation_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_creation_downwards.dart.weak.expect │ │ │ │ ├── instance_creation_downwards.dart.weak.modular.expect │ │ │ │ ├── instance_creation_downwards.dart.weak.outline.expect │ │ │ │ ├── instance_creation_downwards.dart.weak.transformed.expect │ │ │ │ ├── instantiate_tearoff.dart │ │ │ │ ├── instantiate_tearoff.dart.strong.expect │ │ │ │ ├── instantiate_tearoff.dart.strong.transformed.expect │ │ │ │ ├── instantiate_tearoff.dart.textual_outline.expect │ │ │ │ ├── instantiate_tearoff.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_tearoff.dart.weak.expect │ │ │ │ ├── instantiate_tearoff.dart.weak.modular.expect │ │ │ │ ├── instantiate_tearoff.dart.weak.outline.expect │ │ │ │ ├── instantiate_tearoff.dart.weak.transformed.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.strong.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.strong.transformed.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.textual_outline.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.weak.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.weak.modular.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.weak.outline.expect │ │ │ │ ├── instantiate_tearoff_after_contravariance_check.dart.weak.transformed.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart │ │ │ │ ├── instantiate_tearoff_of_call.dart.strong.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.strong.transformed.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.textual_outline.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.weak.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.weak.modular.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.weak.outline.expect │ │ │ │ ├── instantiate_tearoff_of_call.dart.weak.transformed.expect │ │ │ │ ├── instantiate_tearoff_of_call2.dart │ │ │ │ ├── instantiate_tearoff_of_call2.dart.strong.expect │ │ │ │ ├── instantiate_tearoff_of_call2.dart.textual_outline.expect │ │ │ │ ├── instantiate_tearoff_of_call2.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_tearoff_of_call2.dart.weak.expect │ │ │ │ ├── instantiate_tearoff_of_call2.dart.weak.modular.expect │ │ │ │ ├── instantiate_tearoff_of_call2.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_after.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_has_bound_defined_before.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_generic2_no_bound.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_after.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_generic_has_bound_defined_before.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_no_bound.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_invoke_constructor_type_args_exact.dart.weak.transformed.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.strong.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.strong.transformed.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.textual_outline.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.weak.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.weak.modular.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.weak.outline.expect │ │ │ │ ├── instantiate_to_bounds_not_generic.dart.weak.transformed.expect │ │ │ │ ├── int_upwards_local.dart │ │ │ │ ├── int_upwards_local.dart.strong.expect │ │ │ │ ├── int_upwards_local.dart.strong.transformed.expect │ │ │ │ ├── int_upwards_local.dart.textual_outline.expect │ │ │ │ ├── int_upwards_local.dart.textual_outline_modelled.expect │ │ │ │ ├── int_upwards_local.dart.weak.expect │ │ │ │ ├── int_upwards_local.dart.weak.modular.expect │ │ │ │ ├── int_upwards_local.dart.weak.outline.expect │ │ │ │ ├── int_upwards_local.dart.weak.transformed.expect │ │ │ │ ├── issue41199.dart │ │ │ │ ├── issue41199.dart.strong.expect │ │ │ │ ├── issue41199.dart.strong.transformed.expect │ │ │ │ ├── issue41199.dart.textual_outline.expect │ │ │ │ ├── issue41199.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41199.dart.weak.expect │ │ │ │ ├── issue41199.dart.weak.modular.expect │ │ │ │ ├── issue41199.dart.weak.outline.expect │ │ │ │ ├── issue41199.dart.weak.transformed.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.strong.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.strong.transformed.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.textual_outline.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.textual_outline_modelled.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.weak.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.weak.modular.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.weak.outline.expect │ │ │ │ ├── lambda_does_not_have_propagated_type_hint.dart.weak.transformed.expect │ │ │ │ ├── lambda_return_type.dart │ │ │ │ ├── lambda_return_type.dart.strong.expect │ │ │ │ ├── lambda_return_type.dart.strong.transformed.expect │ │ │ │ ├── lambda_return_type.dart.textual_outline.expect │ │ │ │ ├── lambda_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── lambda_return_type.dart.weak.expect │ │ │ │ ├── lambda_return_type.dart.weak.modular.expect │ │ │ │ ├── lambda_return_type.dart.weak.outline.expect │ │ │ │ ├── lambda_return_type.dart.weak.transformed.expect │ │ │ │ ├── lambda_return_type2.dart │ │ │ │ ├── lambda_return_type2.dart.strong.expect │ │ │ │ ├── lambda_return_type2.dart.strong.transformed.expect │ │ │ │ ├── lambda_return_type2.dart.textual_outline.expect │ │ │ │ ├── lambda_return_type2.dart.textual_outline_modelled.expect │ │ │ │ ├── lambda_return_type2.dart.weak.expect │ │ │ │ ├── lambda_return_type2.dart.weak.modular.expect │ │ │ │ ├── lambda_return_type2.dart.weak.outline.expect │ │ │ │ ├── lambda_return_type2.dart.weak.transformed.expect │ │ │ │ ├── lambda_void_context.dart │ │ │ │ ├── lambda_void_context.dart.strong.expect │ │ │ │ ├── lambda_void_context.dart.strong.transformed.expect │ │ │ │ ├── lambda_void_context.dart.textual_outline.expect │ │ │ │ ├── lambda_void_context.dart.textual_outline_modelled.expect │ │ │ │ ├── lambda_void_context.dart.weak.expect │ │ │ │ ├── lambda_void_context.dart.weak.modular.expect │ │ │ │ ├── lambda_void_context.dart.weak.outline.expect │ │ │ │ ├── lambda_void_context.dart.weak.transformed.expect │ │ │ │ ├── list_literal_typed.dart │ │ │ │ ├── list_literal_typed.dart.strong.expect │ │ │ │ ├── list_literal_typed.dart.strong.transformed.expect │ │ │ │ ├── list_literal_typed.dart.textual_outline.expect │ │ │ │ ├── list_literal_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── list_literal_typed.dart.weak.expect │ │ │ │ ├── list_literal_typed.dart.weak.modular.expect │ │ │ │ ├── list_literal_typed.dart.weak.outline.expect │ │ │ │ ├── list_literal_typed.dart.weak.transformed.expect │ │ │ │ ├── list_literals.dart │ │ │ │ ├── list_literals.dart.strong.expect │ │ │ │ ├── list_literals.dart.strong.transformed.expect │ │ │ │ ├── list_literals.dart.textual_outline.expect │ │ │ │ ├── list_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── list_literals.dart.weak.expect │ │ │ │ ├── list_literals.dart.weak.modular.expect │ │ │ │ ├── list_literals.dart.weak.outline.expect │ │ │ │ ├── list_literals.dart.weak.transformed.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.strong.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.strong.transformed.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.textual_outline.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.textual_outline_modelled.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.weak.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.weak.modular.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.weak.outline.expect │ │ │ │ ├── list_literals_can_infer_null_bottom.dart.weak.transformed.expect │ │ │ │ ├── list_literals_top_level.dart │ │ │ │ ├── list_literals_top_level.dart.strong.expect │ │ │ │ ├── list_literals_top_level.dart.strong.transformed.expect │ │ │ │ ├── list_literals_top_level.dart.textual_outline.expect │ │ │ │ ├── list_literals_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── list_literals_top_level.dart.weak.expect │ │ │ │ ├── list_literals_top_level.dart.weak.modular.expect │ │ │ │ ├── list_literals_top_level.dart.weak.outline.expect │ │ │ │ ├── list_literals_top_level.dart.weak.transformed.expect │ │ │ │ ├── local_constructor_from_arguments.dart │ │ │ │ ├── local_constructor_from_arguments.dart.strong.expect │ │ │ │ ├── local_constructor_from_arguments.dart.strong.transformed.expect │ │ │ │ ├── local_constructor_from_arguments.dart.textual_outline.expect │ │ │ │ ├── local_constructor_from_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── local_constructor_from_arguments.dart.weak.expect │ │ │ │ ├── local_constructor_from_arguments.dart.weak.modular.expect │ │ │ │ ├── local_constructor_from_arguments.dart.weak.outline.expect │ │ │ │ ├── local_constructor_from_arguments.dart.weak.transformed.expect │ │ │ │ ├── local_reference_upwards_local.dart │ │ │ │ ├── local_reference_upwards_local.dart.strong.expect │ │ │ │ ├── local_reference_upwards_local.dart.strong.transformed.expect │ │ │ │ ├── local_reference_upwards_local.dart.textual_outline.expect │ │ │ │ ├── local_reference_upwards_local.dart.textual_outline_modelled.expect │ │ │ │ ├── local_reference_upwards_local.dart.weak.expect │ │ │ │ ├── local_reference_upwards_local.dart.weak.modular.expect │ │ │ │ ├── local_reference_upwards_local.dart.weak.outline.expect │ │ │ │ ├── local_reference_upwards_local.dart.weak.transformed.expect │ │ │ │ ├── local_return_and_yield.dart │ │ │ │ ├── local_return_and_yield.dart.strong.expect │ │ │ │ ├── local_return_and_yield.dart.strong.transformed.expect │ │ │ │ ├── local_return_and_yield.dart.textual_outline.expect │ │ │ │ ├── local_return_and_yield.dart.textual_outline_modelled.expect │ │ │ │ ├── local_return_and_yield.dart.weak.expect │ │ │ │ ├── local_return_and_yield.dart.weak.modular.expect │ │ │ │ ├── local_return_and_yield.dart.weak.outline.expect │ │ │ │ ├── local_return_and_yield.dart.weak.transformed.expect │ │ │ │ ├── local_return_and_yield2.dart │ │ │ │ ├── local_return_and_yield2.dart.strong.expect │ │ │ │ ├── local_return_and_yield2.dart.strong.transformed.expect │ │ │ │ ├── local_return_and_yield2.dart.textual_outline.expect │ │ │ │ ├── local_return_and_yield2.dart.textual_outline_modelled.expect │ │ │ │ ├── local_return_and_yield2.dart.weak.expect │ │ │ │ ├── local_return_and_yield2.dart.weak.modular.expect │ │ │ │ ├── local_return_and_yield2.dart.weak.outline.expect │ │ │ │ ├── local_return_and_yield2.dart.weak.transformed.expect │ │ │ │ ├── logical_or_promotion.dart │ │ │ │ ├── logical_or_promotion.dart.strong.expect │ │ │ │ ├── logical_or_promotion.dart.strong.transformed.expect │ │ │ │ ├── logical_or_promotion.dart.textual_outline.expect │ │ │ │ ├── logical_or_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_or_promotion.dart.weak.expect │ │ │ │ ├── logical_or_promotion.dart.weak.modular.expect │ │ │ │ ├── logical_or_promotion.dart.weak.outline.expect │ │ │ │ ├── logical_or_promotion.dart.weak.transformed.expect │ │ │ │ ├── map_literals.dart │ │ │ │ ├── map_literals.dart.strong.expect │ │ │ │ ├── map_literals.dart.strong.transformed.expect │ │ │ │ ├── map_literals.dart.textual_outline.expect │ │ │ │ ├── map_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── map_literals.dart.weak.expect │ │ │ │ ├── map_literals.dart.weak.modular.expect │ │ │ │ ├── map_literals.dart.weak.outline.expect │ │ │ │ ├── map_literals.dart.weak.transformed.expect │ │ │ │ ├── map_literals_can_infer_null.dart │ │ │ │ ├── map_literals_can_infer_null.dart.strong.expect │ │ │ │ ├── map_literals_can_infer_null.dart.strong.transformed.expect │ │ │ │ ├── map_literals_can_infer_null.dart.textual_outline.expect │ │ │ │ ├── map_literals_can_infer_null.dart.textual_outline_modelled.expect │ │ │ │ ├── map_literals_can_infer_null.dart.weak.expect │ │ │ │ ├── map_literals_can_infer_null.dart.weak.modular.expect │ │ │ │ ├── map_literals_can_infer_null.dart.weak.outline.expect │ │ │ │ ├── map_literals_can_infer_null.dart.weak.transformed.expect │ │ │ │ ├── map_literals_top_level.dart │ │ │ │ ├── map_literals_top_level.dart.strong.expect │ │ │ │ ├── map_literals_top_level.dart.strong.transformed.expect │ │ │ │ ├── map_literals_top_level.dart.textual_outline.expect │ │ │ │ ├── map_literals_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── map_literals_top_level.dart.weak.expect │ │ │ │ ├── map_literals_top_level.dart.weak.modular.expect │ │ │ │ ├── map_literals_top_level.dart.weak.outline.expect │ │ │ │ ├── map_literals_top_level.dart.weak.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.strong.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.strong.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.textual_outline.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.textual_outline_modelled.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.weak.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.weak.modular.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.weak.outline.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method.dart.weak.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.strong.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.strong.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.textual_outline.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.textual_outline_modelled.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.weak.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.weak.modular.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.weak.outline.expect │ │ │ │ ├── method_call_with_type_arguments_instance_method_identifier_sequence.dart.weak.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.strong.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.strong.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.textual_outline.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.textual_outline_modelled.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.weak.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.weak.modular.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.weak.outline.expect │ │ │ │ ├── method_call_with_type_arguments_static_method.dart.weak.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.strong.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.strong.transformed.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.textual_outline.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.textual_outline_modelled.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.weak.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.weak.modular.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.weak.outline.expect │ │ │ │ ├── method_call_with_type_arguments_top_level_function.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.strong.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.weak.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_1.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.strong.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.weak.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_2.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.strong.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.weak.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_3.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.strong.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.weak.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_instantiate_to_bounds_4.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart │ │ │ │ ├── mixin_inference_multiple_constraints.dart.strong.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.weak.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_multiple_constraints.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.strong.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.weak.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_non_trivial_constraints.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_outwards_1.dart │ │ │ │ ├── mixin_inference_outwards_1.dart.strong.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.weak.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_outwards_1.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_outwards_2.dart │ │ │ │ ├── mixin_inference_outwards_2.dart.strong.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.weak.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_outwards_2.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_outwards_3.dart │ │ │ │ ├── mixin_inference_outwards_3.dart.strong.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.strong.transformed.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.weak.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_outwards_3.dart.weak.transformed.expect │ │ │ │ ├── mixin_inference_outwards_4.dart │ │ │ │ ├── mixin_inference_outwards_4.dart.strong.expect │ │ │ │ ├── mixin_inference_outwards_4.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_outwards_4.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_outwards_4.dart.weak.expect │ │ │ │ ├── mixin_inference_outwards_4.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_outwards_4.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_unification_1.dart │ │ │ │ ├── mixin_inference_unification_1.dart.strong.expect │ │ │ │ ├── mixin_inference_unification_1.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_unification_1.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_unification_1.dart.weak.expect │ │ │ │ ├── mixin_inference_unification_1.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_unification_1.dart.weak.outline.expect │ │ │ │ ├── mixin_inference_unification_2.dart │ │ │ │ ├── mixin_inference_unification_2.dart.strong.expect │ │ │ │ ├── mixin_inference_unification_2.dart.textual_outline.expect │ │ │ │ ├── mixin_inference_unification_2.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_inference_unification_2.dart.weak.expect │ │ │ │ ├── mixin_inference_unification_2.dart.weak.modular.expect │ │ │ │ ├── mixin_inference_unification_2.dart.weak.outline.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.strong.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.strong.transformed.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.textual_outline.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.textual_outline_modelled.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.weak.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.weak.modular.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.weak.outline.expect │ │ │ │ ├── no_error_when_declared_type_is_num_and_assigned_null.dart.weak.transformed.expect │ │ │ │ ├── non_const_invocation.dart │ │ │ │ ├── non_const_invocation.dart.strong.expect │ │ │ │ ├── non_const_invocation.dart.strong.transformed.expect │ │ │ │ ├── non_const_invocation.dart.textual_outline.expect │ │ │ │ ├── non_const_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── non_const_invocation.dart.weak.expect │ │ │ │ ├── non_const_invocation.dart.weak.modular.expect │ │ │ │ ├── non_const_invocation.dart.weak.outline.expect │ │ │ │ ├── non_const_invocation.dart.weak.transformed.expect │ │ │ │ ├── non_inferrable_getter_setter.dart │ │ │ │ ├── non_inferrable_getter_setter.dart.strong.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.strong.transformed.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.textual_outline.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.weak.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.weak.modular.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.weak.outline.expect │ │ │ │ ├── non_inferrable_getter_setter.dart.weak.transformed.expect │ │ │ │ ├── null_aware_method_invocation.dart │ │ │ │ ├── null_aware_method_invocation.dart.strong.expect │ │ │ │ ├── null_aware_method_invocation.dart.strong.transformed.expect │ │ │ │ ├── null_aware_method_invocation.dart.textual_outline.expect │ │ │ │ ├── null_aware_method_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_method_invocation.dart.weak.expect │ │ │ │ ├── null_aware_method_invocation.dart.weak.modular.expect │ │ │ │ ├── null_aware_method_invocation.dart.weak.outline.expect │ │ │ │ ├── null_aware_method_invocation.dart.weak.transformed.expect │ │ │ │ ├── null_aware_property_get.dart │ │ │ │ ├── null_aware_property_get.dart.strong.expect │ │ │ │ ├── null_aware_property_get.dart.strong.transformed.expect │ │ │ │ ├── null_aware_property_get.dart.textual_outline.expect │ │ │ │ ├── null_aware_property_get.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_property_get.dart.weak.expect │ │ │ │ ├── null_aware_property_get.dart.weak.modular.expect │ │ │ │ ├── null_aware_property_get.dart.weak.outline.expect │ │ │ │ ├── null_aware_property_get.dart.weak.transformed.expect │ │ │ │ ├── null_coalescing_operator.dart │ │ │ │ ├── null_coalescing_operator.dart.strong.expect │ │ │ │ ├── null_coalescing_operator.dart.strong.transformed.expect │ │ │ │ ├── null_coalescing_operator.dart.textual_outline.expect │ │ │ │ ├── null_coalescing_operator.dart.textual_outline_modelled.expect │ │ │ │ ├── null_coalescing_operator.dart.weak.expect │ │ │ │ ├── null_coalescing_operator.dart.weak.modular.expect │ │ │ │ ├── null_coalescing_operator.dart.weak.outline.expect │ │ │ │ ├── null_coalescing_operator.dart.weak.transformed.expect │ │ │ │ ├── null_coalescing_operator_2.dart │ │ │ │ ├── null_coalescing_operator_2.dart.strong.expect │ │ │ │ ├── null_coalescing_operator_2.dart.strong.transformed.expect │ │ │ │ ├── null_coalescing_operator_2.dart.textual_outline.expect │ │ │ │ ├── null_coalescing_operator_2.dart.textual_outline_modelled.expect │ │ │ │ ├── null_coalescing_operator_2.dart.weak.expect │ │ │ │ ├── null_coalescing_operator_2.dart.weak.modular.expect │ │ │ │ ├── null_coalescing_operator_2.dart.weak.outline.expect │ │ │ │ ├── null_coalescing_operator_2.dart.weak.transformed.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.strong.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.strong.transformed.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.textual_outline.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.weak.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.weak.modular.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.weak.outline.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom.dart.weak.transformed.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.strong.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.strong.transformed.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.textual_outline.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.weak.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.weak.modular.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.weak.outline.expect │ │ │ │ ├── null_literal_should_not_infer_as_bottom2.dart.weak.transformed.expect │ │ │ │ ├── overloaded_int_operators.dart │ │ │ │ ├── overloaded_int_operators.dart.strong.expect │ │ │ │ ├── overloaded_int_operators.dart.strong.transformed.expect │ │ │ │ ├── overloaded_int_operators.dart.textual_outline.expect │ │ │ │ ├── overloaded_int_operators.dart.textual_outline_modelled.expect │ │ │ │ ├── overloaded_int_operators.dart.weak.expect │ │ │ │ ├── overloaded_int_operators.dart.weak.modular.expect │ │ │ │ ├── overloaded_int_operators.dart.weak.outline.expect │ │ │ │ ├── overloaded_int_operators.dart.weak.transformed.expect │ │ │ │ ├── override_equals.dart │ │ │ │ ├── override_equals.dart.strong.expect │ │ │ │ ├── override_equals.dart.strong.transformed.expect │ │ │ │ ├── override_equals.dart.textual_outline.expect │ │ │ │ ├── override_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── override_equals.dart.weak.expect │ │ │ │ ├── override_equals.dart.weak.modular.expect │ │ │ │ ├── override_equals.dart.weak.outline.expect │ │ │ │ ├── override_equals.dart.weak.transformed.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart │ │ │ │ ├── override_inference_depends_on_field_inference.dart.strong.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.strong.transformed.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.textual_outline.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.weak.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.weak.modular.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.weak.outline.expect │ │ │ │ ├── override_inference_depends_on_field_inference.dart.weak.transformed.expect │ │ │ │ ├── override_inference_with_type_parameters.dart │ │ │ │ ├── override_inference_with_type_parameters.dart.strong.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.strong.transformed.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.textual_outline.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.weak.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.weak.modular.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.weak.outline.expect │ │ │ │ ├── override_inference_with_type_parameters.dart.weak.transformed.expect │ │ │ │ ├── parameter_defaults_downwards.dart │ │ │ │ ├── parameter_defaults_downwards.dart.strong.expect │ │ │ │ ├── parameter_defaults_downwards.dart.strong.transformed.expect │ │ │ │ ├── parameter_defaults_downwards.dart.textual_outline.expect │ │ │ │ ├── parameter_defaults_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── parameter_defaults_downwards.dart.weak.expect │ │ │ │ ├── parameter_defaults_downwards.dart.weak.modular.expect │ │ │ │ ├── parameter_defaults_downwards.dart.weak.outline.expect │ │ │ │ ├── parameter_defaults_downwards.dart.weak.transformed.expect │ │ │ │ ├── parameter_defaults_upwards.dart │ │ │ │ ├── parameter_defaults_upwards.dart.strong.expect │ │ │ │ ├── parameter_defaults_upwards.dart.strong.transformed.expect │ │ │ │ ├── parameter_defaults_upwards.dart.textual_outline.expect │ │ │ │ ├── parameter_defaults_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── parameter_defaults_upwards.dart.weak.expect │ │ │ │ ├── parameter_defaults_upwards.dart.weak.modular.expect │ │ │ │ ├── parameter_defaults_upwards.dart.weak.outline.expect │ │ │ │ ├── parameter_defaults_upwards.dart.weak.transformed.expect │ │ │ │ ├── promote_bounds.dart │ │ │ │ ├── promote_bounds.dart.strong.expect │ │ │ │ ├── promote_bounds.dart.strong.transformed.expect │ │ │ │ ├── promote_bounds.dart.textual_outline.expect │ │ │ │ ├── promote_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── promote_bounds.dart.weak.expect │ │ │ │ ├── promote_bounds.dart.weak.modular.expect │ │ │ │ ├── promote_bounds.dart.weak.outline.expect │ │ │ │ ├── promote_bounds.dart.weak.transformed.expect │ │ │ │ ├── promote_from_logical_rhs.dart │ │ │ │ ├── promote_from_logical_rhs.dart.strong.expect │ │ │ │ ├── promote_from_logical_rhs.dart.strong.transformed.expect │ │ │ │ ├── promote_from_logical_rhs.dart.textual_outline.expect │ │ │ │ ├── promote_from_logical_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── promote_from_logical_rhs.dart.weak.expect │ │ │ │ ├── promote_from_logical_rhs.dart.weak.modular.expect │ │ │ │ ├── promote_from_logical_rhs.dart.weak.outline.expect │ │ │ │ ├── promote_from_logical_rhs.dart.weak.transformed.expect │ │ │ │ ├── promotion_subtype_check.dart │ │ │ │ ├── promotion_subtype_check.dart.strong.expect │ │ │ │ ├── promotion_subtype_check.dart.strong.transformed.expect │ │ │ │ ├── promotion_subtype_check.dart.textual_outline.expect │ │ │ │ ├── promotion_subtype_check.dart.textual_outline_modelled.expect │ │ │ │ ├── promotion_subtype_check.dart.weak.expect │ │ │ │ ├── promotion_subtype_check.dart.weak.modular.expect │ │ │ │ ├── promotion_subtype_check.dart.weak.outline.expect │ │ │ │ ├── promotion_subtype_check.dart.weak.transformed.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart │ │ │ │ ├── propagate_inference_to_field_in_class.dart.strong.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.strong.transformed.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.textual_outline.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.textual_outline_modelled.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.weak.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.weak.modular.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.weak.outline.expect │ │ │ │ ├── propagate_inference_to_field_in_class.dart.weak.transformed.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.strong.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.strong.transformed.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.textual_outline.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.textual_outline_modelled.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.weak.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.weak.modular.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.weak.outline.expect │ │ │ │ ├── propagate_inference_to_field_in_class_dynamic_warnings.dart.weak.transformed.expect │ │ │ │ ├── propagate_inference_transitively.dart │ │ │ │ ├── propagate_inference_transitively.dart.strong.expect │ │ │ │ ├── propagate_inference_transitively.dart.strong.transformed.expect │ │ │ │ ├── propagate_inference_transitively.dart.textual_outline.expect │ │ │ │ ├── propagate_inference_transitively.dart.textual_outline_modelled.expect │ │ │ │ ├── propagate_inference_transitively.dart.weak.expect │ │ │ │ ├── propagate_inference_transitively.dart.weak.modular.expect │ │ │ │ ├── propagate_inference_transitively.dart.weak.outline.expect │ │ │ │ ├── propagate_inference_transitively.dart.weak.transformed.expect │ │ │ │ ├── propagate_inference_transitively2.dart │ │ │ │ ├── propagate_inference_transitively2.dart.strong.expect │ │ │ │ ├── propagate_inference_transitively2.dart.strong.transformed.expect │ │ │ │ ├── propagate_inference_transitively2.dart.textual_outline.expect │ │ │ │ ├── propagate_inference_transitively2.dart.textual_outline_modelled.expect │ │ │ │ ├── propagate_inference_transitively2.dart.weak.expect │ │ │ │ ├── propagate_inference_transitively2.dart.weak.modular.expect │ │ │ │ ├── propagate_inference_transitively2.dart.weak.outline.expect │ │ │ │ ├── propagate_inference_transitively2.dart.weak.transformed.expect │ │ │ │ ├── propagate_variable_get.dart │ │ │ │ ├── propagate_variable_get.dart.strong.expect │ │ │ │ ├── propagate_variable_get.dart.strong.transformed.expect │ │ │ │ ├── propagate_variable_get.dart.textual_outline.expect │ │ │ │ ├── propagate_variable_get.dart.textual_outline_modelled.expect │ │ │ │ ├── propagate_variable_get.dart.weak.expect │ │ │ │ ├── propagate_variable_get.dart.weak.modular.expect │ │ │ │ ├── propagate_variable_get.dart.weak.outline.expect │ │ │ │ ├── propagate_variable_get.dart.weak.transformed.expect │ │ │ │ ├── property_get_toplevel.dart │ │ │ │ ├── property_get_toplevel.dart.strong.expect │ │ │ │ ├── property_get_toplevel.dart.strong.transformed.expect │ │ │ │ ├── property_get_toplevel.dart.textual_outline.expect │ │ │ │ ├── property_get_toplevel.dart.textual_outline_modelled.expect │ │ │ │ ├── property_get_toplevel.dart.weak.expect │ │ │ │ ├── property_get_toplevel.dart.weak.modular.expect │ │ │ │ ├── property_get_toplevel.dart.weak.outline.expect │ │ │ │ ├── property_get_toplevel.dart.weak.transformed.expect │ │ │ │ ├── property_set.dart │ │ │ │ ├── property_set.dart.strong.expect │ │ │ │ ├── property_set.dart.strong.transformed.expect │ │ │ │ ├── property_set.dart.textual_outline.expect │ │ │ │ ├── property_set.dart.textual_outline_modelled.expect │ │ │ │ ├── property_set.dart.weak.expect │ │ │ │ ├── property_set.dart.weak.modular.expect │ │ │ │ ├── property_set.dart.weak.outline.expect │ │ │ │ ├── property_set.dart.weak.transformed.expect │ │ │ │ ├── property_set2.dart │ │ │ │ ├── property_set2.dart.strong.expect │ │ │ │ ├── property_set2.dart.strong.transformed.expect │ │ │ │ ├── property_set2.dart.textual_outline.expect │ │ │ │ ├── property_set2.dart.textual_outline_modelled.expect │ │ │ │ ├── property_set2.dart.weak.expect │ │ │ │ ├── property_set2.dart.weak.modular.expect │ │ │ │ ├── property_set2.dart.weak.outline.expect │ │ │ │ ├── property_set2.dart.weak.transformed.expect │ │ │ │ ├── property_set_bad_setter.dart │ │ │ │ ├── property_set_bad_setter.dart.strong.expect │ │ │ │ ├── property_set_bad_setter.dart.strong.transformed.expect │ │ │ │ ├── property_set_bad_setter.dart.textual_outline.expect │ │ │ │ ├── property_set_bad_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── property_set_bad_setter.dart.weak.expect │ │ │ │ ├── property_set_bad_setter.dart.weak.modular.expect │ │ │ │ ├── property_set_bad_setter.dart.weak.outline.expect │ │ │ │ ├── property_set_bad_setter.dart.weak.transformed.expect │ │ │ │ ├── recursive_generic_function.dart │ │ │ │ ├── recursive_generic_function.dart.strong.expect │ │ │ │ ├── recursive_generic_function.dart.strong.transformed.expect │ │ │ │ ├── recursive_generic_function.dart.textual_outline.expect │ │ │ │ ├── recursive_generic_function.dart.textual_outline_modelled.expect │ │ │ │ ├── recursive_generic_function.dart.weak.expect │ │ │ │ ├── recursive_generic_function.dart.weak.modular.expect │ │ │ │ ├── recursive_generic_function.dart.weak.outline.expect │ │ │ │ ├── recursive_generic_function.dart.weak.transformed.expect │ │ │ │ ├── reference_to_typedef.dart │ │ │ │ ├── reference_to_typedef.dart.strong.expect │ │ │ │ ├── reference_to_typedef.dart.strong.transformed.expect │ │ │ │ ├── reference_to_typedef.dart.textual_outline.expect │ │ │ │ ├── reference_to_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── reference_to_typedef.dart.weak.expect │ │ │ │ ├── reference_to_typedef.dart.weak.modular.expect │ │ │ │ ├── reference_to_typedef.dart.weak.outline.expect │ │ │ │ ├── reference_to_typedef.dart.weak.transformed.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.strong.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.strong.transformed.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.textual_outline.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.textual_outline_modelled.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.weak.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.weak.modular.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.weak.outline.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_double.dart.weak.transformed.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.strong.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.strong.transformed.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.textual_outline.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.textual_outline_modelled.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.weak.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.weak.modular.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.weak.outline.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_int.dart.weak.transformed.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.strong.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.strong.transformed.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.textual_outline.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.textual_outline_modelled.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.weak.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.weak.modular.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.weak.outline.expect │ │ │ │ ├── refine_binary_expression_type_type_parameter_t_t.dart.weak.transformed.expect │ │ │ │ ├── setter_return_type.dart │ │ │ │ ├── setter_return_type.dart.strong.expect │ │ │ │ ├── setter_return_type.dart.strong.transformed.expect │ │ │ │ ├── setter_return_type.dart.textual_outline.expect │ │ │ │ ├── setter_return_type.dart.textual_outline_modelled.expect │ │ │ │ ├── setter_return_type.dart.weak.expect │ │ │ │ ├── setter_return_type.dart.weak.modular.expect │ │ │ │ ├── setter_return_type.dart.weak.outline.expect │ │ │ │ ├── setter_return_type.dart.weak.transformed.expect │ │ │ │ ├── simple_literal_bool.dart │ │ │ │ ├── simple_literal_bool.dart.strong.expect │ │ │ │ ├── simple_literal_bool.dart.strong.transformed.expect │ │ │ │ ├── simple_literal_bool.dart.textual_outline.expect │ │ │ │ ├── simple_literal_bool.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_literal_bool.dart.weak.expect │ │ │ │ ├── simple_literal_bool.dart.weak.modular.expect │ │ │ │ ├── simple_literal_bool.dart.weak.outline.expect │ │ │ │ ├── simple_literal_bool.dart.weak.transformed.expect │ │ │ │ ├── simple_literal_double.dart │ │ │ │ ├── simple_literal_double.dart.strong.expect │ │ │ │ ├── simple_literal_double.dart.strong.transformed.expect │ │ │ │ ├── simple_literal_double.dart.textual_outline.expect │ │ │ │ ├── simple_literal_double.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_literal_double.dart.weak.expect │ │ │ │ ├── simple_literal_double.dart.weak.modular.expect │ │ │ │ ├── simple_literal_double.dart.weak.outline.expect │ │ │ │ ├── simple_literal_double.dart.weak.transformed.expect │ │ │ │ ├── simple_literal_int.dart │ │ │ │ ├── simple_literal_int.dart.strong.expect │ │ │ │ ├── simple_literal_int.dart.strong.transformed.expect │ │ │ │ ├── simple_literal_int.dart.textual_outline.expect │ │ │ │ ├── simple_literal_int.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_literal_int.dart.weak.expect │ │ │ │ ├── simple_literal_int.dart.weak.modular.expect │ │ │ │ ├── simple_literal_int.dart.weak.outline.expect │ │ │ │ ├── simple_literal_int.dart.weak.transformed.expect │ │ │ │ ├── simple_literal_null.dart │ │ │ │ ├── simple_literal_null.dart.strong.expect │ │ │ │ ├── simple_literal_null.dart.strong.transformed.expect │ │ │ │ ├── simple_literal_null.dart.textual_outline.expect │ │ │ │ ├── simple_literal_null.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_literal_null.dart.weak.expect │ │ │ │ ├── simple_literal_null.dart.weak.modular.expect │ │ │ │ ├── simple_literal_null.dart.weak.outline.expect │ │ │ │ ├── simple_literal_null.dart.weak.transformed.expect │ │ │ │ ├── static_method_tear_off.dart │ │ │ │ ├── static_method_tear_off.dart.strong.expect │ │ │ │ ├── static_method_tear_off.dart.strong.transformed.expect │ │ │ │ ├── static_method_tear_off.dart.textual_outline.expect │ │ │ │ ├── static_method_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── static_method_tear_off.dart.weak.expect │ │ │ │ ├── static_method_tear_off.dart.weak.modular.expect │ │ │ │ ├── static_method_tear_off.dart.weak.outline.expect │ │ │ │ ├── static_method_tear_off.dart.weak.transformed.expect │ │ │ │ ├── string_literal.dart │ │ │ │ ├── string_literal.dart.strong.expect │ │ │ │ ├── string_literal.dart.strong.transformed.expect │ │ │ │ ├── string_literal.dart.textual_outline.expect │ │ │ │ ├── string_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── string_literal.dart.weak.expect │ │ │ │ ├── string_literal.dart.weak.modular.expect │ │ │ │ ├── string_literal.dart.weak.outline.expect │ │ │ │ ├── string_literal.dart.weak.transformed.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.strong.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.strong.transformed.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.textual_outline.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.weak.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.weak.modular.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.weak.outline.expect │ │ │ │ ├── subexpressions_of_explicitly_typed_fields.dart.weak.transformed.expect │ │ │ │ ├── super_index_set.dart │ │ │ │ ├── super_index_set.dart.strong.expect │ │ │ │ ├── super_index_set.dart.strong.transformed.expect │ │ │ │ ├── super_index_set.dart.textual_outline.expect │ │ │ │ ├── super_index_set.dart.textual_outline_modelled.expect │ │ │ │ ├── super_index_set.dart.weak.expect │ │ │ │ ├── super_index_set.dart.weak.modular.expect │ │ │ │ ├── super_index_set.dart.weak.outline.expect │ │ │ │ ├── super_index_set.dart.weak.transformed.expect │ │ │ │ ├── super_index_set_substitution.dart │ │ │ │ ├── super_index_set_substitution.dart.strong.expect │ │ │ │ ├── super_index_set_substitution.dart.strong.transformed.expect │ │ │ │ ├── super_index_set_substitution.dart.textual_outline.expect │ │ │ │ ├── super_index_set_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── super_index_set_substitution.dart.weak.expect │ │ │ │ ├── super_index_set_substitution.dart.weak.modular.expect │ │ │ │ ├── super_index_set_substitution.dart.weak.outline.expect │ │ │ │ ├── super_index_set_substitution.dart.weak.transformed.expect │ │ │ │ ├── super_initializer.dart │ │ │ │ ├── super_initializer.dart.strong.expect │ │ │ │ ├── super_initializer.dart.strong.transformed.expect │ │ │ │ ├── super_initializer.dart.textual_outline.expect │ │ │ │ ├── super_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── super_initializer.dart.weak.expect │ │ │ │ ├── super_initializer.dart.weak.modular.expect │ │ │ │ ├── super_initializer.dart.weak.outline.expect │ │ │ │ ├── super_initializer.dart.weak.transformed.expect │ │ │ │ ├── super_initializer_substitution.dart │ │ │ │ ├── super_initializer_substitution.dart.strong.expect │ │ │ │ ├── super_initializer_substitution.dart.strong.transformed.expect │ │ │ │ ├── super_initializer_substitution.dart.textual_outline.expect │ │ │ │ ├── super_initializer_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── super_initializer_substitution.dart.weak.expect │ │ │ │ ├── super_initializer_substitution.dart.weak.modular.expect │ │ │ │ ├── super_initializer_substitution.dart.weak.outline.expect │ │ │ │ ├── super_initializer_substitution.dart.weak.transformed.expect │ │ │ │ ├── super_method_invocation.dart │ │ │ │ ├── super_method_invocation.dart.strong.expect │ │ │ │ ├── super_method_invocation.dart.strong.transformed.expect │ │ │ │ ├── super_method_invocation.dart.textual_outline.expect │ │ │ │ ├── super_method_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── super_method_invocation.dart.weak.expect │ │ │ │ ├── super_method_invocation.dart.weak.modular.expect │ │ │ │ ├── super_method_invocation.dart.weak.outline.expect │ │ │ │ ├── super_method_invocation.dart.weak.transformed.expect │ │ │ │ ├── super_method_invocation_substitution.dart │ │ │ │ ├── super_method_invocation_substitution.dart.strong.expect │ │ │ │ ├── super_method_invocation_substitution.dart.strong.transformed.expect │ │ │ │ ├── super_method_invocation_substitution.dart.textual_outline.expect │ │ │ │ ├── super_method_invocation_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── super_method_invocation_substitution.dart.weak.expect │ │ │ │ ├── super_method_invocation_substitution.dart.weak.modular.expect │ │ │ │ ├── super_method_invocation_substitution.dart.weak.outline.expect │ │ │ │ ├── super_method_invocation_substitution.dart.weak.transformed.expect │ │ │ │ ├── super_property_get.dart │ │ │ │ ├── super_property_get.dart.strong.expect │ │ │ │ ├── super_property_get.dart.strong.transformed.expect │ │ │ │ ├── super_property_get.dart.textual_outline.expect │ │ │ │ ├── super_property_get.dart.textual_outline_modelled.expect │ │ │ │ ├── super_property_get.dart.weak.expect │ │ │ │ ├── super_property_get.dart.weak.modular.expect │ │ │ │ ├── super_property_get.dart.weak.outline.expect │ │ │ │ ├── super_property_get.dart.weak.transformed.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart │ │ │ │ ├── super_property_get_invoke_function_typed.dart.strong.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.strong.transformed.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.textual_outline.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.weak.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.weak.modular.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.weak.outline.expect │ │ │ │ ├── super_property_get_invoke_function_typed.dart.weak.transformed.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.strong.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.strong.transformed.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.textual_outline.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.textual_outline_modelled.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.weak.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.weak.modular.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.weak.outline.expect │ │ │ │ ├── super_property_get_invoke_implicit_call.dart.weak.transformed.expect │ │ │ │ ├── super_property_get_substitution.dart │ │ │ │ ├── super_property_get_substitution.dart.strong.expect │ │ │ │ ├── super_property_get_substitution.dart.strong.transformed.expect │ │ │ │ ├── super_property_get_substitution.dart.textual_outline.expect │ │ │ │ ├── super_property_get_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── super_property_get_substitution.dart.weak.expect │ │ │ │ ├── super_property_get_substitution.dart.weak.modular.expect │ │ │ │ ├── super_property_get_substitution.dart.weak.outline.expect │ │ │ │ ├── super_property_get_substitution.dart.weak.transformed.expect │ │ │ │ ├── super_property_get_tearoff.dart │ │ │ │ ├── super_property_get_tearoff.dart.strong.expect │ │ │ │ ├── super_property_get_tearoff.dart.strong.transformed.expect │ │ │ │ ├── super_property_get_tearoff.dart.textual_outline.expect │ │ │ │ ├── super_property_get_tearoff.dart.textual_outline_modelled.expect │ │ │ │ ├── super_property_get_tearoff.dart.weak.expect │ │ │ │ ├── super_property_get_tearoff.dart.weak.modular.expect │ │ │ │ ├── super_property_get_tearoff.dart.weak.outline.expect │ │ │ │ ├── super_property_get_tearoff.dart.weak.transformed.expect │ │ │ │ ├── super_property_set_substitution.dart │ │ │ │ ├── super_property_set_substitution.dart.strong.expect │ │ │ │ ├── super_property_set_substitution.dart.strong.transformed.expect │ │ │ │ ├── super_property_set_substitution.dart.textual_outline.expect │ │ │ │ ├── super_property_set_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── super_property_set_substitution.dart.weak.expect │ │ │ │ ├── super_property_set_substitution.dart.weak.modular.expect │ │ │ │ ├── super_property_set_substitution.dart.weak.outline.expect │ │ │ │ ├── super_property_set_substitution.dart.weak.transformed.expect │ │ │ │ ├── switch_continue.dart │ │ │ │ ├── switch_continue.dart.strong.expect │ │ │ │ ├── switch_continue.dart.strong.transformed.expect │ │ │ │ ├── switch_continue.dart.textual_outline.expect │ │ │ │ ├── switch_continue.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_continue.dart.weak.expect │ │ │ │ ├── switch_continue.dart.weak.modular.expect │ │ │ │ ├── switch_continue.dart.weak.outline.expect │ │ │ │ ├── switch_continue.dart.weak.transformed.expect │ │ │ │ ├── symbol_literal.dart │ │ │ │ ├── symbol_literal.dart.strong.expect │ │ │ │ ├── symbol_literal.dart.strong.transformed.expect │ │ │ │ ├── symbol_literal.dart.textual_outline.expect │ │ │ │ ├── symbol_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── symbol_literal.dart.weak.expect │ │ │ │ ├── symbol_literal.dart.weak.modular.expect │ │ │ │ ├── symbol_literal.dart.weak.outline.expect │ │ │ │ ├── symbol_literal.dart.weak.transformed.expect │ │ │ │ ├── this_reference.dart │ │ │ │ ├── this_reference.dart.strong.expect │ │ │ │ ├── this_reference.dart.strong.transformed.expect │ │ │ │ ├── this_reference.dart.textual_outline.expect │ │ │ │ ├── this_reference.dart.textual_outline_modelled.expect │ │ │ │ ├── this_reference.dart.weak.expect │ │ │ │ ├── this_reference.dart.weak.modular.expect │ │ │ │ ├── this_reference.dart.weak.outline.expect │ │ │ │ ├── this_reference.dart.weak.transformed.expect │ │ │ │ ├── top_level_return_and_yield.dart │ │ │ │ ├── top_level_return_and_yield.dart.strong.expect │ │ │ │ ├── top_level_return_and_yield.dart.strong.transformed.expect │ │ │ │ ├── top_level_return_and_yield.dart.textual_outline.expect │ │ │ │ ├── top_level_return_and_yield.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_return_and_yield.dart.weak.expect │ │ │ │ ├── top_level_return_and_yield.dart.weak.modular.expect │ │ │ │ ├── top_level_return_and_yield.dart.weak.outline.expect │ │ │ │ ├── top_level_return_and_yield.dart.weak.transformed.expect │ │ │ │ ├── top_level_return_and_yield2.dart │ │ │ │ ├── top_level_return_and_yield2.dart.strong.expect │ │ │ │ ├── top_level_return_and_yield2.dart.strong.transformed.expect │ │ │ │ ├── top_level_return_and_yield2.dart.textual_outline.expect │ │ │ │ ├── top_level_return_and_yield2.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_return_and_yield2.dart.weak.expect │ │ │ │ ├── top_level_return_and_yield2.dart.weak.modular.expect │ │ │ │ ├── top_level_return_and_yield2.dart.weak.outline.expect │ │ │ │ ├── top_level_return_and_yield2.dart.weak.transformed.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart │ │ │ │ ├── toplevel_inference_toplevel_var.dart.strong.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.strong.transformed.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.textual_outline.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.textual_outline_modelled.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.weak.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.weak.modular.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.weak.outline.expect │ │ │ │ ├── toplevel_inference_toplevel_var.dart.weak.transformed.expect │ │ │ │ ├── try_catch.dart │ │ │ │ ├── try_catch.dart.strong.expect │ │ │ │ ├── try_catch.dart.strong.transformed.expect │ │ │ │ ├── try_catch.dart.textual_outline.expect │ │ │ │ ├── try_catch.dart.textual_outline_modelled.expect │ │ │ │ ├── try_catch.dart.weak.expect │ │ │ │ ├── try_catch.dart.weak.modular.expect │ │ │ │ ├── try_catch.dart.weak.outline.expect │ │ │ │ ├── try_catch.dart.weak.transformed.expect │ │ │ │ ├── try_catch_finally.dart │ │ │ │ ├── try_catch_finally.dart.strong.expect │ │ │ │ ├── try_catch_finally.dart.strong.transformed.expect │ │ │ │ ├── try_catch_finally.dart.textual_outline.expect │ │ │ │ ├── try_catch_finally.dart.textual_outline_modelled.expect │ │ │ │ ├── try_catch_finally.dart.weak.expect │ │ │ │ ├── try_catch_finally.dart.weak.modular.expect │ │ │ │ ├── try_catch_finally.dart.weak.outline.expect │ │ │ │ ├── try_catch_finally.dart.weak.transformed.expect │ │ │ │ ├── try_catch_promotion.dart │ │ │ │ ├── try_catch_promotion.dart.strong.expect │ │ │ │ ├── try_catch_promotion.dart.strong.transformed.expect │ │ │ │ ├── try_catch_promotion.dart.textual_outline.expect │ │ │ │ ├── try_catch_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── try_catch_promotion.dart.weak.expect │ │ │ │ ├── try_catch_promotion.dart.weak.modular.expect │ │ │ │ ├── try_catch_promotion.dart.weak.outline.expect │ │ │ │ ├── try_catch_promotion.dart.weak.transformed.expect │ │ │ │ ├── try_finally.dart │ │ │ │ ├── try_finally.dart.strong.expect │ │ │ │ ├── try_finally.dart.strong.transformed.expect │ │ │ │ ├── try_finally.dart.textual_outline.expect │ │ │ │ ├── try_finally.dart.textual_outline_modelled.expect │ │ │ │ ├── try_finally.dart.weak.expect │ │ │ │ ├── try_finally.dart.weak.modular.expect │ │ │ │ ├── try_finally.dart.weak.outline.expect │ │ │ │ ├── try_finally.dart.weak.transformed.expect │ │ │ │ ├── type_cast.dart │ │ │ │ ├── type_cast.dart.strong.expect │ │ │ │ ├── type_cast.dart.strong.transformed.expect │ │ │ │ ├── type_cast.dart.textual_outline.expect │ │ │ │ ├── type_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── type_cast.dart.weak.expect │ │ │ │ ├── type_cast.dart.weak.modular.expect │ │ │ │ ├── type_cast.dart.weak.outline.expect │ │ │ │ ├── type_cast.dart.weak.transformed.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart │ │ │ │ ├── type_promotion_ignores_local_functions.dart.strong.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.strong.transformed.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.textual_outline.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.textual_outline_modelled.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.weak.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.weak.modular.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.weak.outline.expect │ │ │ │ ├── type_promotion_ignores_local_functions.dart.weak.transformed.expect │ │ │ │ ├── type_promotion_not_and_not.dart │ │ │ │ ├── type_promotion_not_and_not.dart.strong.expect │ │ │ │ ├── type_promotion_not_and_not.dart.strong.transformed.expect │ │ │ │ ├── type_promotion_not_and_not.dart.textual_outline.expect │ │ │ │ ├── type_promotion_not_and_not.dart.textual_outline_modelled.expect │ │ │ │ ├── type_promotion_not_and_not.dart.weak.expect │ │ │ │ ├── type_promotion_not_and_not.dart.weak.modular.expect │ │ │ │ ├── type_promotion_not_and_not.dart.weak.outline.expect │ │ │ │ ├── type_promotion_not_and_not.dart.weak.transformed.expect │ │ │ │ ├── type_promotion_simple.dart │ │ │ │ ├── type_promotion_simple.dart.strong.expect │ │ │ │ ├── type_promotion_simple.dart.strong.transformed.expect │ │ │ │ ├── type_promotion_simple.dart.textual_outline.expect │ │ │ │ ├── type_promotion_simple.dart.textual_outline_modelled.expect │ │ │ │ ├── type_promotion_simple.dart.weak.expect │ │ │ │ ├── type_promotion_simple.dart.weak.modular.expect │ │ │ │ ├── type_promotion_simple.dart.weak.outline.expect │ │ │ │ ├── type_promotion_simple.dart.weak.transformed.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.strong.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.strong.transformed.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.textual_outline.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.textual_outline_modelled.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.weak.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.weak.modular.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.weak.outline.expect │ │ │ │ ├── type_promotion_stopped_by_access_in_a_closure.dart.weak.transformed.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.strong.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.strong.transformed.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.textual_outline.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.textual_outline_modelled.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.weak.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.weak.modular.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.weak.outline.expect │ │ │ │ ├── type_promotion_stopped_by_assignment_in_scope.dart.weak.transformed.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.strong.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.strong.transformed.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.textual_outline.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.textual_outline_modelled.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.weak.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.weak.modular.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.weak.outline.expect │ │ │ │ ├── type_promotion_stopped_by_mutation_in_a_closure.dart.weak.transformed.expect │ │ │ │ ├── unresolved_super.dart │ │ │ │ ├── unresolved_super.dart.strong.expect │ │ │ │ ├── unresolved_super.dart.strong.transformed.expect │ │ │ │ ├── unresolved_super.dart.textual_outline.expect │ │ │ │ ├── unresolved_super.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_super.dart.weak.expect │ │ │ │ ├── unresolved_super.dart.weak.modular.expect │ │ │ │ ├── unresolved_super.dart.weak.outline.expect │ │ │ │ ├── unresolved_super.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_closure_call.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_dynamic_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_explicit_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_implicit_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_constructor_call_no_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr1.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr1.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_implicit_type_param_via_expr.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_no_type_param_via_expr.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_dynamic.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_typed.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_list_untyped.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_dynamic.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_typed.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_in_map_untyped.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_dynamic_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_explicit_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_implicit_type_param.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_method_call_no_type_param.dart.weak.transformed.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.strong.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.strong.transformed.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.textual_outline.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.modular.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.outline.expect │ │ │ │ └── void_return_type_subtypes_dynamic.dart.weak.transformed.expect │ │ │ ├── inference_new │ │ │ │ ├── const_invocation.dart │ │ │ │ ├── const_invocation.dart.strong.expect │ │ │ │ ├── const_invocation.dart.strong.transformed.expect │ │ │ │ ├── const_invocation.dart.textual_outline.expect │ │ │ │ ├── const_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── const_invocation.dart.weak.expect │ │ │ │ ├── const_invocation.dart.weak.modular.expect │ │ │ │ ├── const_invocation.dart.weak.outline.expect │ │ │ │ ├── const_invocation.dart.weak.transformed.expect │ │ │ │ ├── dependency_only_if_generic_method.dart │ │ │ │ ├── dependency_only_if_generic_method.dart.strong.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.strong.transformed.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.textual_outline.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.textual_outline_modelled.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.weak.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.weak.modular.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.weak.outline.expect │ │ │ │ ├── dependency_only_if_generic_method.dart.weak.transformed.expect │ │ │ │ ├── dependency_only_if_overloaded.dart │ │ │ │ ├── dependency_only_if_overloaded.dart.strong.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.strong.transformed.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.textual_outline.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.textual_outline_modelled.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.weak.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.weak.modular.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.weak.outline.expect │ │ │ │ ├── dependency_only_if_overloaded.dart.weak.transformed.expect │ │ │ │ ├── do_loop.dart │ │ │ │ ├── do_loop.dart.strong.expect │ │ │ │ ├── do_loop.dart.strong.transformed.expect │ │ │ │ ├── do_loop.dart.textual_outline.expect │ │ │ │ ├── do_loop.dart.textual_outline_modelled.expect │ │ │ │ ├── do_loop.dart.weak.expect │ │ │ │ ├── do_loop.dart.weak.modular.expect │ │ │ │ ├── do_loop.dart.weak.outline.expect │ │ │ │ ├── do_loop.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart │ │ │ │ ├── downwards_inference_inside_top_level.dart.strong.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_inside_top_level.dart.weak.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.strong.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.strong.transformed.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.textual_outline.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.textual_outline_modelled.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.modular.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.outline.expect │ │ │ │ ├── downwards_inference_inside_top_level_2.dart.weak.transformed.expect │ │ │ │ ├── field_inference_circularity.dart │ │ │ │ ├── field_inference_circularity.dart.strong.expect │ │ │ │ ├── field_inference_circularity.dart.strong.transformed.expect │ │ │ │ ├── field_inference_circularity.dart.textual_outline.expect │ │ │ │ ├── field_inference_circularity.dart.textual_outline_modelled.expect │ │ │ │ ├── field_inference_circularity.dart.weak.expect │ │ │ │ ├── field_inference_circularity.dart.weak.modular.expect │ │ │ │ ├── field_inference_circularity.dart.weak.outline.expect │ │ │ │ ├── field_inference_circularity.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── for_each_identifier_downwards.dart │ │ │ │ ├── for_each_identifier_downwards.dart.strong.expect │ │ │ │ ├── for_each_identifier_downwards.dart.strong.transformed.expect │ │ │ │ ├── for_each_identifier_downwards.dart.textual_outline.expect │ │ │ │ ├── for_each_identifier_downwards.dart.textual_outline_modelled.expect │ │ │ │ ├── for_each_identifier_downwards.dart.weak.expect │ │ │ │ ├── for_each_identifier_downwards.dart.weak.modular.expect │ │ │ │ ├── for_each_identifier_downwards.dart.weak.outline.expect │ │ │ │ ├── for_each_identifier_downwards.dart.weak.transformed.expect │ │ │ │ ├── for_each_invalid_iterable.dart │ │ │ │ ├── for_each_invalid_iterable.dart.strong.expect │ │ │ │ ├── for_each_invalid_iterable.dart.strong.transformed.expect │ │ │ │ ├── for_each_invalid_iterable.dart.textual_outline.expect │ │ │ │ ├── for_each_invalid_iterable.dart.textual_outline_modelled.expect │ │ │ │ ├── for_each_invalid_iterable.dart.weak.expect │ │ │ │ ├── for_each_invalid_iterable.dart.weak.modular.expect │ │ │ │ ├── for_each_invalid_iterable.dart.weak.outline.expect │ │ │ │ ├── for_each_invalid_iterable.dart.weak.transformed.expect │ │ │ │ ├── for_each_outer_var_type.dart │ │ │ │ ├── for_each_outer_var_type.dart.strong.expect │ │ │ │ ├── for_each_outer_var_type.dart.strong.transformed.expect │ │ │ │ ├── for_each_outer_var_type.dart.textual_outline.expect │ │ │ │ ├── for_each_outer_var_type.dart.textual_outline_modelled.expect │ │ │ │ ├── for_each_outer_var_type.dart.weak.expect │ │ │ │ ├── for_each_outer_var_type.dart.weak.modular.expect │ │ │ │ ├── for_each_outer_var_type.dart.weak.outline.expect │ │ │ │ ├── for_each_outer_var_type.dart.weak.transformed.expect │ │ │ │ ├── indexed_assign_combiner.dart │ │ │ │ ├── indexed_assign_combiner.dart.strong.expect │ │ │ │ ├── indexed_assign_combiner.dart.strong.transformed.expect │ │ │ │ ├── indexed_assign_combiner.dart.textual_outline.expect │ │ │ │ ├── indexed_assign_combiner.dart.textual_outline_modelled.expect │ │ │ │ ├── indexed_assign_combiner.dart.weak.expect │ │ │ │ ├── indexed_assign_combiner.dart.weak.modular.expect │ │ │ │ ├── indexed_assign_combiner.dart.weak.outline.expect │ │ │ │ ├── indexed_assign_combiner.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart │ │ │ │ ├── infer_assign_to_implicit_this.dart.strong.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_implicit_this.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_implicit_this_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index.dart │ │ │ │ ├── infer_assign_to_index.dart.strong.expect │ │ │ │ ├── infer_assign_to_index.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index.dart.weak.expect │ │ │ │ ├── infer_assign_to_index.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_full.dart │ │ │ │ ├── infer_assign_to_index_full.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_full.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_full.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_full.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_full.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_set_vs_get.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_super.dart │ │ │ │ ├── infer_assign_to_index_super.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_super.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_super.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_super.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_super.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_super2.dart │ │ │ │ ├── infer_assign_to_index_super2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_super2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_super_upwards.dart │ │ │ │ ├── infer_assign_to_index_super_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_super_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_super_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_super_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_super_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_super_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_super_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_this.dart │ │ │ │ ├── infer_assign_to_index_this.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_this.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_this.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_this.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_this.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_this2.dart │ │ │ │ ├── infer_assign_to_index_this2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_this2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_this_upwards.dart │ │ │ │ ├── infer_assign_to_index_this_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_this_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_this_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_this_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_this_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_this_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_this_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_index_upwards.dart │ │ │ │ ├── infer_assign_to_index_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart │ │ │ │ ├── infer_assign_to_index_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_index_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local.dart │ │ │ │ ├── infer_assign_to_local.dart.strong.expect │ │ │ │ ├── infer_assign_to_local.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local2.dart │ │ │ │ ├── infer_assign_to_local2.dart.strong.expect │ │ │ │ ├── infer_assign_to_local2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart │ │ │ │ ├── infer_assign_to_local_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart │ │ │ │ ├── infer_assign_to_local_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_local_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property.dart │ │ │ │ ├── infer_assign_to_property.dart.strong.expect │ │ │ │ ├── infer_assign_to_property.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property.dart.weak.expect │ │ │ │ ├── infer_assign_to_property.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_custom.dart │ │ │ │ ├── infer_assign_to_property_custom.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_custom.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_full.dart │ │ │ │ ├── infer_assign_to_property_full.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_full.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_full.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_full.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_full.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_full2.dart │ │ │ │ ├── infer_assign_to_property_full2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_full2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart │ │ │ │ ├── infer_assign_to_property_null_aware.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_null_aware_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super.dart │ │ │ │ ├── infer_assign_to_property_super.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super2.dart │ │ │ │ ├── infer_assign_to_property_super2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_super_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart │ │ │ │ ├── infer_assign_to_property_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart │ │ │ │ ├── infer_assign_to_property_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_property_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_ref.dart │ │ │ │ ├── infer_assign_to_ref.dart.strong.expect │ │ │ │ ├── infer_assign_to_ref.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_ref.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_ref.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_ref.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static.dart │ │ │ │ ├── infer_assign_to_static.dart.strong.expect │ │ │ │ ├── infer_assign_to_static.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static2.dart │ │ │ │ ├── infer_assign_to_static2.dart.strong.expect │ │ │ │ ├── infer_assign_to_static2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static2.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart │ │ │ │ ├── infer_assign_to_static_upwards.dart.strong.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static_upwards.dart.weak.transformed.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart │ │ │ │ ├── infer_assign_to_static_upwards2.dart.strong.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.strong.transformed.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.textual_outline.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.weak.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.weak.modular.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.weak.outline.expect │ │ │ │ ├── infer_assign_to_static_upwards2.dart.weak.transformed.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.strong.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.strong.transformed.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.textual_outline.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.weak.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.weak.modular.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.weak.outline.expect │ │ │ │ ├── infer_field_getter_setter_mismatch.dart.weak.transformed.expect │ │ │ │ ├── infer_field_override_accessors.dart │ │ │ │ ├── infer_field_override_accessors.dart.strong.expect │ │ │ │ ├── infer_field_override_accessors.dart.strong.transformed.expect │ │ │ │ ├── infer_field_override_accessors.dart.textual_outline.expect │ │ │ │ ├── infer_field_override_accessors.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_override_accessors.dart.weak.expect │ │ │ │ ├── infer_field_override_accessors.dart.weak.modular.expect │ │ │ │ ├── infer_field_override_accessors.dart.weak.outline.expect │ │ │ │ ├── infer_field_override_accessors.dart.weak.transformed.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.strong.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.strong.transformed.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.textual_outline.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.weak.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.weak.modular.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.weak.outline.expect │ │ │ │ ├── infer_field_override_getter_overrides_setter.dart.weak.transformed.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.strong.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.strong.transformed.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.textual_outline.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.weak.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.weak.modular.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.weak.outline.expect │ │ │ │ ├── infer_field_override_setter_overrides_getter.dart.weak.transformed.expect │ │ │ │ ├── infer_instance_accessor_ref.dart │ │ │ │ ├── infer_instance_accessor_ref.dart.strong.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.strong.transformed.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.textual_outline.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.weak.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.weak.modular.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.weak.outline.expect │ │ │ │ ├── infer_instance_accessor_ref.dart.weak.transformed.expect │ │ │ │ ├── infer_instance_field_ref.dart │ │ │ │ ├── infer_instance_field_ref.dart.strong.expect │ │ │ │ ├── infer_instance_field_ref.dart.strong.transformed.expect │ │ │ │ ├── infer_instance_field_ref.dart.textual_outline.expect │ │ │ │ ├── infer_instance_field_ref.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_instance_field_ref.dart.weak.expect │ │ │ │ ├── infer_instance_field_ref.dart.weak.modular.expect │ │ │ │ ├── infer_instance_field_ref.dart.weak.outline.expect │ │ │ │ ├── infer_instance_field_ref.dart.weak.transformed.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart │ │ │ │ ├── infer_instance_field_ref_circular.dart.strong.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.strong.transformed.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.textual_outline.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.weak.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.weak.modular.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.weak.outline.expect │ │ │ │ ├── infer_instance_field_ref_circular.dart.weak.transformed.expect │ │ │ │ ├── infer_logical.dart │ │ │ │ ├── infer_logical.dart.strong.expect │ │ │ │ ├── infer_logical.dart.strong.transformed.expect │ │ │ │ ├── infer_logical.dart.textual_outline.expect │ │ │ │ ├── infer_logical.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_logical.dart.weak.expect │ │ │ │ ├── infer_logical.dart.weak.modular.expect │ │ │ │ ├── infer_logical.dart.weak.outline.expect │ │ │ │ ├── infer_logical.dart.weak.transformed.expect │ │ │ │ ├── infer_use_of_void.dart │ │ │ │ ├── infer_use_of_void.dart.strong.expect │ │ │ │ ├── infer_use_of_void.dart.strong.transformed.expect │ │ │ │ ├── infer_use_of_void.dart.textual_outline.expect │ │ │ │ ├── infer_use_of_void.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_use_of_void.dart.weak.expect │ │ │ │ ├── infer_use_of_void.dart.weak.modular.expect │ │ │ │ ├── infer_use_of_void.dart.weak.outline.expect │ │ │ │ ├── infer_use_of_void.dart.weak.transformed.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.strong.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.strong.transformed.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.textual_outline.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.weak.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.weak.modular.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.weak.outline.expect │ │ │ │ ├── invalid_assignment_during_toplevel_inference.dart.weak.transformed.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.strong.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.strong.transformed.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.textual_outline.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.weak.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.weak.modular.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.weak.outline.expect │ │ │ │ ├── list_literals_can_infer_null_top_level.dart.weak.transformed.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.strong.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.strong.transformed.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.textual_outline.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.textual_outline_modelled.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.weak.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.weak.modular.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.weak.outline.expect │ │ │ │ ├── map_literals_can_infer_null_top_level.dart.weak.transformed.expect │ │ │ │ ├── multiple_interface_inheritance.dart │ │ │ │ ├── multiple_interface_inheritance.dart.strong.expect │ │ │ │ ├── multiple_interface_inheritance.dart.strong.transformed.expect │ │ │ │ ├── multiple_interface_inheritance.dart.textual_outline.expect │ │ │ │ ├── multiple_interface_inheritance.dart.textual_outline_modelled.expect │ │ │ │ ├── multiple_interface_inheritance.dart.weak.expect │ │ │ │ ├── multiple_interface_inheritance.dart.weak.modular.expect │ │ │ │ ├── multiple_interface_inheritance.dart.weak.outline.expect │ │ │ │ ├── multiple_interface_inheritance.dart.weak.transformed.expect │ │ │ │ ├── null_aware_property_get.dart │ │ │ │ ├── null_aware_property_get.dart.strong.expect │ │ │ │ ├── null_aware_property_get.dart.strong.transformed.expect │ │ │ │ ├── null_aware_property_get.dart.textual_outline.expect │ │ │ │ ├── null_aware_property_get.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_property_get.dart.weak.expect │ │ │ │ ├── null_aware_property_get.dart.weak.modular.expect │ │ │ │ ├── null_aware_property_get.dart.weak.outline.expect │ │ │ │ ├── null_aware_property_get.dart.weak.transformed.expect │ │ │ │ ├── property_assign_combiner.dart │ │ │ │ ├── property_assign_combiner.dart.strong.expect │ │ │ │ ├── property_assign_combiner.dart.strong.transformed.expect │ │ │ │ ├── property_assign_combiner.dart.textual_outline.expect │ │ │ │ ├── property_assign_combiner.dart.textual_outline_modelled.expect │ │ │ │ ├── property_assign_combiner.dart.weak.expect │ │ │ │ ├── property_assign_combiner.dart.weak.modular.expect │ │ │ │ ├── property_assign_combiner.dart.weak.outline.expect │ │ │ │ ├── property_assign_combiner.dart.weak.transformed.expect │ │ │ │ ├── property_get_toplevel.dart │ │ │ │ ├── property_get_toplevel.dart.strong.expect │ │ │ │ ├── property_get_toplevel.dart.strong.transformed.expect │ │ │ │ ├── property_get_toplevel.dart.textual_outline.expect │ │ │ │ ├── property_get_toplevel.dart.textual_outline_modelled.expect │ │ │ │ ├── property_get_toplevel.dart.weak.expect │ │ │ │ ├── property_get_toplevel.dart.weak.modular.expect │ │ │ │ ├── property_get_toplevel.dart.weak.outline.expect │ │ │ │ ├── property_get_toplevel.dart.weak.transformed.expect │ │ │ │ ├── static_assign_combiner.dart │ │ │ │ ├── static_assign_combiner.dart.strong.expect │ │ │ │ ├── static_assign_combiner.dart.strong.transformed.expect │ │ │ │ ├── static_assign_combiner.dart.textual_outline.expect │ │ │ │ ├── static_assign_combiner.dart.textual_outline_modelled.expect │ │ │ │ ├── static_assign_combiner.dart.weak.expect │ │ │ │ ├── static_assign_combiner.dart.weak.modular.expect │ │ │ │ ├── static_assign_combiner.dart.weak.outline.expect │ │ │ │ ├── static_assign_combiner.dart.weak.transformed.expect │ │ │ │ ├── strongly_connected_component.dart │ │ │ │ ├── strongly_connected_component.dart.strong.expect │ │ │ │ ├── strongly_connected_component.dart.strong.transformed.expect │ │ │ │ ├── strongly_connected_component.dart.textual_outline.expect │ │ │ │ ├── strongly_connected_component.dart.textual_outline_modelled.expect │ │ │ │ ├── strongly_connected_component.dart.weak.expect │ │ │ │ ├── strongly_connected_component.dart.weak.modular.expect │ │ │ │ ├── strongly_connected_component.dart.weak.outline.expect │ │ │ │ ├── strongly_connected_component.dart.weak.transformed.expect │ │ │ │ ├── super_index_get.dart │ │ │ │ ├── super_index_get.dart.strong.expect │ │ │ │ ├── super_index_get.dart.strong.transformed.expect │ │ │ │ ├── super_index_get.dart.textual_outline.expect │ │ │ │ ├── super_index_get.dart.textual_outline_modelled.expect │ │ │ │ ├── super_index_get.dart.weak.expect │ │ │ │ ├── super_index_get.dart.weak.modular.expect │ │ │ │ ├── super_index_get.dart.weak.outline.expect │ │ │ │ ├── super_index_get.dart.weak.transformed.expect │ │ │ │ ├── super_index_get_substitution.dart │ │ │ │ ├── super_index_get_substitution.dart.strong.expect │ │ │ │ ├── super_index_get_substitution.dart.strong.transformed.expect │ │ │ │ ├── super_index_get_substitution.dart.textual_outline.expect │ │ │ │ ├── super_index_get_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── super_index_get_substitution.dart.weak.expect │ │ │ │ ├── super_index_get_substitution.dart.weak.modular.expect │ │ │ │ ├── super_index_get_substitution.dart.weak.outline.expect │ │ │ │ ├── super_index_get_substitution.dart.weak.transformed.expect │ │ │ │ ├── switch.dart │ │ │ │ ├── switch.dart.strong.expect │ │ │ │ ├── switch.dart.strong.transformed.expect │ │ │ │ ├── switch.dart.textual_outline.expect │ │ │ │ ├── switch.dart.textual_outline_modelled.expect │ │ │ │ ├── switch.dart.weak.expect │ │ │ │ ├── switch.dart.weak.modular.expect │ │ │ │ ├── switch.dart.weak.outline.expect │ │ │ │ ├── switch.dart.weak.transformed.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.strong.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.strong.transformed.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.textual_outline.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.textual_outline_modelled.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.weak.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.weak.modular.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.weak.outline.expect │ │ │ │ ├── top_level_field_depends_on_multiple_inheritance.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_dynamic_param_via_expr2.dart.weak.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.strong.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.strong.transformed.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.textual_outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.textual_outline_modelled.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.modular.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.outline.expect │ │ │ │ ├── unsafe_block_closure_inference_function_call_explicit_type_param_via_expr2.dart.weak.transformed.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.strong.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.strong.transformed.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.textual_outline.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.modular.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.outline.expect │ │ │ │ ├── void_return_type_subtypes_dynamic.dart.weak.transformed.expect │ │ │ │ ├── while_loop.dart │ │ │ │ ├── while_loop.dart.strong.expect │ │ │ │ ├── while_loop.dart.strong.transformed.expect │ │ │ │ ├── while_loop.dart.textual_outline.expect │ │ │ │ ├── while_loop.dart.textual_outline_modelled.expect │ │ │ │ ├── while_loop.dart.weak.expect │ │ │ │ ├── while_loop.dart.weak.modular.expect │ │ │ │ ├── while_loop.dart.weak.outline.expect │ │ │ │ └── while_loop.dart.weak.transformed.expect │ │ │ ├── inference_update_1 │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.strong.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.strong.transformed.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.textual_outline.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.textual_outline_modelled.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.weak.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.weak.modular.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.weak.outline.expect │ │ │ │ ├── downward_inference_preferred_over_horizontal.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── horizontal_inference.dart │ │ │ │ ├── horizontal_inference.dart.strong.expect │ │ │ │ ├── horizontal_inference.dart.strong.transformed.expect │ │ │ │ ├── horizontal_inference.dart.textual_outline.expect │ │ │ │ ├── horizontal_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── horizontal_inference.dart.weak.expect │ │ │ │ ├── horizontal_inference.dart.weak.modular.expect │ │ │ │ ├── horizontal_inference.dart.weak.outline.expect │ │ │ │ ├── horizontal_inference.dart.weak.transformed.expect │ │ │ │ ├── horizontal_inference_extension_method.dart │ │ │ │ ├── horizontal_inference_extension_method.dart.strong.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.strong.transformed.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.textual_outline.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.textual_outline_modelled.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.weak.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.weak.modular.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.weak.outline.expect │ │ │ │ ├── horizontal_inference_extension_method.dart.weak.transformed.expect │ │ │ │ ├── write_capture_deferral.dart │ │ │ │ ├── write_capture_deferral.dart.strong.expect │ │ │ │ ├── write_capture_deferral.dart.strong.transformed.expect │ │ │ │ ├── write_capture_deferral.dart.textual_outline.expect │ │ │ │ ├── write_capture_deferral.dart.textual_outline_modelled.expect │ │ │ │ ├── write_capture_deferral.dart.weak.expect │ │ │ │ ├── write_capture_deferral.dart.weak.modular.expect │ │ │ │ ├── write_capture_deferral.dart.weak.outline.expect │ │ │ │ └── write_capture_deferral.dart.weak.transformed.expect │ │ │ ├── inference_update_2 │ │ │ │ ├── abstract_field.dart │ │ │ │ ├── abstract_field.dart.strong.expect │ │ │ │ ├── abstract_field.dart.strong.transformed.expect │ │ │ │ ├── abstract_field.dart.textual_outline.expect │ │ │ │ ├── abstract_field.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_field.dart.weak.expect │ │ │ │ ├── abstract_field.dart.weak.modular.expect │ │ │ │ ├── abstract_field.dart.weak.outline.expect │ │ │ │ ├── abstract_field.dart.weak.transformed.expect │ │ │ │ ├── basic_field_promotion.dart │ │ │ │ ├── basic_field_promotion.dart.strong.expect │ │ │ │ ├── basic_field_promotion.dart.strong.transformed.expect │ │ │ │ ├── basic_field_promotion.dart.textual_outline.expect │ │ │ │ ├── basic_field_promotion.dart.textual_outline_modelled.expect │ │ │ │ ├── basic_field_promotion.dart.weak.expect │ │ │ │ ├── basic_field_promotion.dart.weak.modular.expect │ │ │ │ ├── basic_field_promotion.dart.weak.outline.expect │ │ │ │ ├── basic_field_promotion.dart.weak.transformed.expect │ │ │ │ ├── call_invocation_with_hoisting.dart │ │ │ │ ├── call_invocation_with_hoisting.dart.strong.expect │ │ │ │ ├── call_invocation_with_hoisting.dart.textual_outline.expect │ │ │ │ ├── call_invocation_with_hoisting.dart.textual_outline_modelled.expect │ │ │ │ ├── call_invocation_with_hoisting.dart.weak.expect │ │ │ │ ├── call_invocation_with_hoisting.dart.weak.modular.expect │ │ │ │ ├── call_invocation_with_hoisting.dart.weak.outline.expect │ │ │ │ ├── disabled.dart │ │ │ │ ├── disabled.dart.strong.expect │ │ │ │ ├── disabled.dart.strong.transformed.expect │ │ │ │ ├── disabled.dart.textual_outline.expect │ │ │ │ ├── disabled.dart.textual_outline_modelled.expect │ │ │ │ ├── disabled.dart.weak.expect │ │ │ │ ├── disabled.dart.weak.modular.expect │ │ │ │ ├── disabled.dart.weak.outline.expect │ │ │ │ ├── disabled.dart.weak.transformed.expect │ │ │ │ ├── during_top_level_type_inference.dart.textual_outline.expect │ │ │ │ ├── during_top_level_type_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── during_top_level_type_inference.dart.weak.modular.expect │ │ │ │ ├── during_top_level_type_inference.dart.weak.outline.expect │ │ │ │ ├── external_field.dart │ │ │ │ ├── external_field.dart.strong.expect │ │ │ │ ├── external_field.dart.strong.transformed.expect │ │ │ │ ├── external_field.dart.textual_outline.expect │ │ │ │ ├── external_field.dart.textual_outline_modelled.expect │ │ │ │ ├── external_field.dart.weak.expect │ │ │ │ ├── external_field.dart.weak.modular.expect │ │ │ │ ├── external_field.dart.weak.outline.expect │ │ │ │ ├── external_field.dart.weak.transformed.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart │ │ │ │ ├── field_promotion_and_no_such_method.dart.strong.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.strong.transformed.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.textual_outline.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.textual_outline_modelled.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.weak.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.weak.modular.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.weak.outline.expect │ │ │ │ ├── field_promotion_and_no_such_method.dart.weak.transformed.expect │ │ │ │ ├── field_promotion_and_no_such_method_lib.dart │ │ │ │ ├── field_promotion_name_conflicts.dart │ │ │ │ ├── field_promotion_name_conflicts.dart.strong.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.strong.transformed.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.textual_outline.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.textual_outline_modelled.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.weak.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.weak.modular.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.weak.outline.expect │ │ │ │ ├── field_promotion_name_conflicts.dart.weak.transformed.expect │ │ │ │ ├── field_promotion_name_conflicts_part.dart │ │ │ │ └── folder.options │ │ │ ├── inline_class │ │ │ │ ├── annotations.dart │ │ │ │ ├── annotations.dart.strong.expect │ │ │ │ ├── annotations.dart.strong.transformed.expect │ │ │ │ ├── annotations.dart.textual_outline.expect │ │ │ │ ├── annotations.dart.textual_outline_modelled.expect │ │ │ │ ├── annotations.dart.weak.expect │ │ │ │ ├── annotations.dart.weak.modular.expect │ │ │ │ ├── annotations.dart.weak.outline.expect │ │ │ │ ├── annotations.dart.weak.transformed.expect │ │ │ │ ├── constructor_access.dart │ │ │ │ ├── constructor_access.dart.strong.expect │ │ │ │ ├── constructor_access.dart.strong.transformed.expect │ │ │ │ ├── constructor_access.dart.textual_outline.expect │ │ │ │ ├── constructor_access.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_access.dart.weak.expect │ │ │ │ ├── constructor_access.dart.weak.modular.expect │ │ │ │ ├── constructor_access.dart.weak.outline.expect │ │ │ │ ├── constructor_access.dart.weak.transformed.expect │ │ │ │ ├── constructor_bodies.dart │ │ │ │ ├── constructor_bodies.dart.strong.expect │ │ │ │ ├── constructor_bodies.dart.strong.transformed.expect │ │ │ │ ├── constructor_bodies.dart.textual_outline.expect │ │ │ │ ├── constructor_bodies.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_bodies.dart.weak.expect │ │ │ │ ├── constructor_bodies.dart.weak.modular.expect │ │ │ │ ├── constructor_bodies.dart.weak.outline.expect │ │ │ │ ├── constructor_bodies.dart.weak.transformed.expect │ │ │ │ ├── constructor_formal_parameters.dart │ │ │ │ ├── constructor_formal_parameters.dart.strong.expect │ │ │ │ ├── constructor_formal_parameters.dart.strong.transformed.expect │ │ │ │ ├── constructor_formal_parameters.dart.textual_outline.expect │ │ │ │ ├── constructor_formal_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── constructor_formal_parameters.dart.weak.expect │ │ │ │ ├── constructor_formal_parameters.dart.weak.modular.expect │ │ │ │ ├── constructor_formal_parameters.dart.weak.outline.expect │ │ │ │ ├── constructor_formal_parameters.dart.weak.transformed.expect │ │ │ │ ├── constructors.dart │ │ │ │ ├── constructors.dart.strong.expect │ │ │ │ ├── constructors.dart.strong.transformed.expect │ │ │ │ ├── constructors.dart.textual_outline.expect │ │ │ │ ├── constructors.dart.textual_outline_modelled.expect │ │ │ │ ├── constructors.dart.weak.expect │ │ │ │ ├── constructors.dart.weak.modular.expect │ │ │ │ ├── constructors.dart.weak.outline.expect │ │ │ │ ├── constructors.dart.weak.transformed.expect │ │ │ │ ├── external.dart │ │ │ │ ├── external.dart.strong.expect │ │ │ │ ├── external.dart.strong.transformed.expect │ │ │ │ ├── external.dart.textual_outline.expect │ │ │ │ ├── external.dart.textual_outline_modelled.expect │ │ │ │ ├── external.dart.weak.expect │ │ │ │ ├── external.dart.weak.modular.expect │ │ │ │ ├── external.dart.weak.outline.expect │ │ │ │ ├── external.dart.weak.transformed.expect │ │ │ │ ├── field_access.dart │ │ │ │ ├── field_access.dart.strong.expect │ │ │ │ ├── field_access.dart.strong.transformed.expect │ │ │ │ ├── field_access.dart.textual_outline.expect │ │ │ │ ├── field_access.dart.textual_outline_modelled.expect │ │ │ │ ├── field_access.dart.weak.expect │ │ │ │ ├── field_access.dart.weak.modular.expect │ │ │ │ ├── field_access.dart.weak.outline.expect │ │ │ │ ├── field_access.dart.weak.transformed.expect │ │ │ │ ├── field_access_lib.dart │ │ │ │ ├── folder.options │ │ │ │ ├── has_export.dart │ │ │ │ ├── has_export.dart.strong.expect │ │ │ │ ├── has_export.dart.strong.transformed.expect │ │ │ │ ├── has_export.dart.textual_outline.expect │ │ │ │ ├── has_export.dart.textual_outline_modelled.expect │ │ │ │ ├── has_export.dart.weak.expect │ │ │ │ ├── has_export.dart.weak.modular.expect │ │ │ │ ├── has_export.dart.weak.outline.expect │ │ │ │ ├── has_export.dart.weak.transformed.expect │ │ │ │ ├── has_part_lib.dart │ │ │ │ ├── has_part_of_lib.dart │ │ │ │ ├── implements.dart │ │ │ │ ├── implements.dart.strong.expect │ │ │ │ ├── implements.dart.strong.transformed.expect │ │ │ │ ├── implements.dart.textual_outline.expect │ │ │ │ ├── implements.dart.textual_outline_modelled.expect │ │ │ │ ├── implements.dart.weak.expect │ │ │ │ ├── implements.dart.weak.modular.expect │ │ │ │ ├── implements.dart.weak.outline.expect │ │ │ │ ├── implements.dart.weak.transformed.expect │ │ │ │ ├── initializers.dart │ │ │ │ ├── initializers.dart.strong.expect │ │ │ │ ├── initializers.dart.strong.transformed.expect │ │ │ │ ├── initializers.dart.textual_outline.expect │ │ │ │ ├── initializers.dart.textual_outline_modelled.expect │ │ │ │ ├── initializers.dart.weak.expect │ │ │ │ ├── initializers.dart.weak.modular.expect │ │ │ │ ├── initializers.dart.weak.outline.expect │ │ │ │ ├── initializers.dart.weak.transformed.expect │ │ │ │ ├── inline_class_declaration.dart │ │ │ │ ├── inline_class_declaration.dart.strong.expect │ │ │ │ ├── inline_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── inline_class_declaration.dart.textual_outline.expect │ │ │ │ ├── inline_class_declaration.dart.weak.expect │ │ │ │ ├── inline_class_declaration.dart.weak.modular.expect │ │ │ │ ├── inline_class_declaration.dart.weak.outline.expect │ │ │ │ ├── inline_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── member_not_found.dart │ │ │ │ ├── member_not_found.dart.strong.expect │ │ │ │ ├── member_not_found.dart.strong.transformed.expect │ │ │ │ ├── member_not_found.dart.textual_outline.expect │ │ │ │ ├── member_not_found.dart.textual_outline_modelled.expect │ │ │ │ ├── member_not_found.dart.weak.expect │ │ │ │ ├── member_not_found.dart.weak.modular.expect │ │ │ │ ├── member_not_found.dart.weak.outline.expect │ │ │ │ ├── member_not_found.dart.weak.transformed.expect │ │ │ │ ├── method_access.dart │ │ │ │ ├── method_access.dart.strong.expect │ │ │ │ ├── method_access.dart.strong.transformed.expect │ │ │ │ ├── method_access.dart.textual_outline.expect │ │ │ │ ├── method_access.dart.textual_outline_modelled.expect │ │ │ │ ├── method_access.dart.weak.expect │ │ │ │ ├── method_access.dart.weak.modular.expect │ │ │ │ ├── method_access.dart.weak.outline.expect │ │ │ │ ├── method_access.dart.weak.transformed.expect │ │ │ │ ├── procedures.dart │ │ │ │ ├── procedures.dart.strong.expect │ │ │ │ ├── procedures.dart.strong.transformed.expect │ │ │ │ ├── procedures.dart.textual_outline.expect │ │ │ │ ├── procedures.dart.textual_outline_modelled.expect │ │ │ │ ├── procedures.dart.weak.expect │ │ │ │ ├── procedures.dart.weak.modular.expect │ │ │ │ ├── procedures.dart.weak.outline.expect │ │ │ │ ├── procedures.dart.weak.transformed.expect │ │ │ │ ├── representation.dart │ │ │ │ ├── representation.dart.strong.expect │ │ │ │ ├── representation.dart.strong.transformed.expect │ │ │ │ ├── representation.dart.textual_outline.expect │ │ │ │ ├── representation.dart.textual_outline_modelled.expect │ │ │ │ ├── representation.dart.weak.expect │ │ │ │ ├── representation.dart.weak.modular.expect │ │ │ │ ├── representation.dart.weak.outline.expect │ │ │ │ └── representation.dart.weak.transformed.expect │ │ │ ├── instantiate_to_bound │ │ │ │ ├── all_steps.dart │ │ │ │ ├── all_steps.dart.strong.expect │ │ │ │ ├── all_steps.dart.strong.transformed.expect │ │ │ │ ├── all_steps.dart.textual_outline.expect │ │ │ │ ├── all_steps.dart.textual_outline_modelled.expect │ │ │ │ ├── all_steps.dart.weak.expect │ │ │ │ ├── all_steps.dart.weak.modular.expect │ │ │ │ ├── all_steps.dart.weak.outline.expect │ │ │ │ ├── all_steps.dart.weak.transformed.expect │ │ │ │ ├── body_generic_classes_from_dill.dart │ │ │ │ ├── body_generic_classes_from_dill.dart.strong.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.strong.transformed.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.textual_outline.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.textual_outline_modelled.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.weak.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.weak.modular.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.weak.outline.expect │ │ │ │ ├── body_generic_classes_from_dill.dart.weak.transformed.expect │ │ │ │ ├── body_literal_list.dart │ │ │ │ ├── body_literal_list.dart.strong.expect │ │ │ │ ├── body_literal_list.dart.strong.transformed.expect │ │ │ │ ├── body_literal_list.dart.textual_outline.expect │ │ │ │ ├── body_literal_list.dart.textual_outline_modelled.expect │ │ │ │ ├── body_literal_list.dart.weak.expect │ │ │ │ ├── body_literal_list.dart.weak.modular.expect │ │ │ │ ├── body_literal_list.dart.weak.outline.expect │ │ │ │ ├── body_literal_list.dart.weak.transformed.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart │ │ │ │ ├── body_literal_list_with_generic_argument.dart.strong.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.strong.transformed.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.textual_outline.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.textual_outline_modelled.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.weak.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.weak.modular.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.weak.outline.expect │ │ │ │ ├── body_literal_list_with_generic_argument.dart.weak.transformed.expect │ │ │ │ ├── body_literal_map.dart │ │ │ │ ├── body_literal_map.dart.strong.expect │ │ │ │ ├── body_literal_map.dart.strong.transformed.expect │ │ │ │ ├── body_literal_map.dart.textual_outline.expect │ │ │ │ ├── body_literal_map.dart.textual_outline_modelled.expect │ │ │ │ ├── body_literal_map.dart.weak.expect │ │ │ │ ├── body_literal_map.dart.weak.modular.expect │ │ │ │ ├── body_literal_map.dart.weak.outline.expect │ │ │ │ ├── body_literal_map.dart.weak.transformed.expect │ │ │ │ ├── body_omitted_bound.dart │ │ │ │ ├── body_omitted_bound.dart.strong.expect │ │ │ │ ├── body_omitted_bound.dart.strong.transformed.expect │ │ │ │ ├── body_omitted_bound.dart.textual_outline.expect │ │ │ │ ├── body_omitted_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── body_omitted_bound.dart.weak.expect │ │ │ │ ├── body_omitted_bound.dart.weak.modular.expect │ │ │ │ ├── body_omitted_bound.dart.weak.outline.expect │ │ │ │ ├── body_omitted_bound.dart.weak.transformed.expect │ │ │ │ ├── body_super_bounded_type.dart │ │ │ │ ├── body_super_bounded_type.dart.strong.expect │ │ │ │ ├── body_super_bounded_type.dart.strong.transformed.expect │ │ │ │ ├── body_super_bounded_type.dart.textual_outline.expect │ │ │ │ ├── body_super_bounded_type.dart.textual_outline_modelled.expect │ │ │ │ ├── body_super_bounded_type.dart.weak.expect │ │ │ │ ├── body_super_bounded_type.dart.weak.modular.expect │ │ │ │ ├── body_super_bounded_type.dart.weak.outline.expect │ │ │ │ ├── body_super_bounded_type.dart.weak.transformed.expect │ │ │ │ ├── body_typedef_literal_list.dart │ │ │ │ ├── body_typedef_literal_list.dart.strong.expect │ │ │ │ ├── body_typedef_literal_list.dart.strong.transformed.expect │ │ │ │ ├── body_typedef_literal_list.dart.textual_outline.expect │ │ │ │ ├── body_typedef_literal_list.dart.textual_outline_modelled.expect │ │ │ │ ├── body_typedef_literal_list.dart.weak.expect │ │ │ │ ├── body_typedef_literal_list.dart.weak.modular.expect │ │ │ │ ├── body_typedef_literal_list.dart.weak.outline.expect │ │ │ │ ├── body_typedef_literal_list.dart.weak.transformed.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.strong.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.strong.transformed.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.textual_outline.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.textual_outline_modelled.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.weak.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.weak.modular.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.weak.outline.expect │ │ │ │ ├── body_typedef_literal_list_with_generic_argument.dart.weak.transformed.expect │ │ │ │ ├── body_typedef_literal_map.dart │ │ │ │ ├── body_typedef_literal_map.dart.strong.expect │ │ │ │ ├── body_typedef_literal_map.dart.strong.transformed.expect │ │ │ │ ├── body_typedef_literal_map.dart.textual_outline.expect │ │ │ │ ├── body_typedef_literal_map.dart.textual_outline_modelled.expect │ │ │ │ ├── body_typedef_literal_map.dart.weak.expect │ │ │ │ ├── body_typedef_literal_map.dart.weak.modular.expect │ │ │ │ ├── body_typedef_literal_map.dart.weak.outline.expect │ │ │ │ ├── body_typedef_literal_map.dart.weak.transformed.expect │ │ │ │ ├── body_typedef_omitted_bound.dart │ │ │ │ ├── body_typedef_omitted_bound.dart.strong.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.strong.transformed.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.textual_outline.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.weak.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.weak.modular.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.weak.outline.expect │ │ │ │ ├── body_typedef_omitted_bound.dart.weak.transformed.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart │ │ │ │ ├── body_typedef_super_bounded_type.dart.strong.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.strong.transformed.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.textual_outline.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.textual_outline_modelled.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.weak.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.weak.modular.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.weak.outline.expect │ │ │ │ ├── body_typedef_super_bounded_type.dart.weak.transformed.expect │ │ │ │ ├── contravariant_dependence.dart │ │ │ │ ├── contravariant_dependence.dart.strong.expect │ │ │ │ ├── contravariant_dependence.dart.strong.transformed.expect │ │ │ │ ├── contravariant_dependence.dart.textual_outline.expect │ │ │ │ ├── contravariant_dependence.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_dependence.dart.weak.expect │ │ │ │ ├── contravariant_dependence.dart.weak.modular.expect │ │ │ │ ├── contravariant_dependence.dart.weak.outline.expect │ │ │ │ ├── contravariant_dependence.dart.weak.transformed.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart │ │ │ │ ├── contravariant_dependence_in_literals.dart.strong.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.strong.transformed.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.textual_outline.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.weak.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.weak.modular.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.weak.outline.expect │ │ │ │ ├── contravariant_dependence_in_literals.dart.weak.transformed.expect │ │ │ │ ├── contravariant_mutual_dependence.dart │ │ │ │ ├── contravariant_mutual_dependence.dart.strong.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.strong.transformed.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.textual_outline.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.weak.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.weak.modular.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.weak.outline.expect │ │ │ │ ├── contravariant_mutual_dependence.dart.weak.transformed.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.strong.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.strong.transformed.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.textual_outline.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.weak.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.weak.modular.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.weak.outline.expect │ │ │ │ ├── contravariant_mutual_dependence_in_literals.dart.weak.transformed.expect │ │ │ │ ├── covariant_dependence.dart │ │ │ │ ├── covariant_dependence.dart.strong.expect │ │ │ │ ├── covariant_dependence.dart.strong.transformed.expect │ │ │ │ ├── covariant_dependence.dart.textual_outline.expect │ │ │ │ ├── covariant_dependence.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_dependence.dart.weak.expect │ │ │ │ ├── covariant_dependence.dart.weak.modular.expect │ │ │ │ ├── covariant_dependence.dart.weak.outline.expect │ │ │ │ ├── covariant_dependence.dart.weak.transformed.expect │ │ │ │ ├── covariant_dependence_in_literals.dart │ │ │ │ ├── covariant_dependence_in_literals.dart.strong.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.strong.transformed.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.textual_outline.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.weak.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.weak.modular.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.weak.outline.expect │ │ │ │ ├── covariant_dependence_in_literals.dart.weak.transformed.expect │ │ │ │ ├── covariant_mutual_dependence.dart │ │ │ │ ├── covariant_mutual_dependence.dart.strong.expect │ │ │ │ ├── covariant_mutual_dependence.dart.strong.transformed.expect │ │ │ │ ├── covariant_mutual_dependence.dart.textual_outline.expect │ │ │ │ ├── covariant_mutual_dependence.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_mutual_dependence.dart.weak.expect │ │ │ │ ├── covariant_mutual_dependence.dart.weak.modular.expect │ │ │ │ ├── covariant_mutual_dependence.dart.weak.outline.expect │ │ │ │ ├── covariant_mutual_dependence.dart.weak.transformed.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.strong.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.strong.transformed.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.textual_outline.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.weak.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.weak.modular.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.weak.outline.expect │ │ │ │ ├── covariant_mutual_dependence_in_literals.dart.weak.transformed.expect │ │ │ │ ├── dependence.dart │ │ │ │ ├── dependence.dart.strong.expect │ │ │ │ ├── dependence.dart.strong.transformed.expect │ │ │ │ ├── dependence.dart.textual_outline.expect │ │ │ │ ├── dependence.dart.textual_outline_modelled.expect │ │ │ │ ├── dependence.dart.weak.expect │ │ │ │ ├── dependence.dart.weak.modular.expect │ │ │ │ ├── dependence.dart.weak.outline.expect │ │ │ │ ├── dependence.dart.weak.transformed.expect │ │ │ │ ├── dependence_in_literals.dart │ │ │ │ ├── dependence_in_literals.dart.strong.expect │ │ │ │ ├── dependence_in_literals.dart.strong.transformed.expect │ │ │ │ ├── dependence_in_literals.dart.textual_outline.expect │ │ │ │ ├── dependence_in_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── dependence_in_literals.dart.weak.expect │ │ │ │ ├── dependence_in_literals.dart.weak.modular.expect │ │ │ │ ├── dependence_in_literals.dart.weak.outline.expect │ │ │ │ ├── dependence_in_literals.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── generic_classes_from_dill.dart │ │ │ │ ├── generic_classes_from_dill.dart.strong.expect │ │ │ │ ├── generic_classes_from_dill.dart.strong.transformed.expect │ │ │ │ ├── generic_classes_from_dill.dart.textual_outline.expect │ │ │ │ ├── generic_classes_from_dill.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_classes_from_dill.dart.weak.expect │ │ │ │ ├── generic_classes_from_dill.dart.weak.modular.expect │ │ │ │ ├── generic_classes_from_dill.dart.weak.outline.expect │ │ │ │ ├── generic_classes_from_dill.dart.weak.transformed.expect │ │ │ │ ├── inference_constrained_by_bound.dart │ │ │ │ ├── inference_constrained_by_bound.dart.strong.expect │ │ │ │ ├── inference_constrained_by_bound.dart.strong.transformed.expect │ │ │ │ ├── inference_constrained_by_bound.dart.textual_outline.expect │ │ │ │ ├── inference_constrained_by_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── inference_constrained_by_bound.dart.weak.expect │ │ │ │ ├── inference_constrained_by_bound.dart.weak.modular.expect │ │ │ │ ├── inference_constrained_by_bound.dart.weak.outline.expect │ │ │ │ ├── inference_constrained_by_bound.dart.weak.transformed.expect │ │ │ │ ├── inference_defaults_to_bound.dart │ │ │ │ ├── inference_defaults_to_bound.dart.strong.expect │ │ │ │ ├── inference_defaults_to_bound.dart.strong.transformed.expect │ │ │ │ ├── inference_defaults_to_bound.dart.textual_outline.expect │ │ │ │ ├── inference_defaults_to_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── inference_defaults_to_bound.dart.weak.expect │ │ │ │ ├── inference_defaults_to_bound.dart.weak.modular.expect │ │ │ │ ├── inference_defaults_to_bound.dart.weak.outline.expect │ │ │ │ ├── inference_defaults_to_bound.dart.weak.transformed.expect │ │ │ │ ├── inference_gives_input.dart │ │ │ │ ├── inference_gives_input.dart.strong.expect │ │ │ │ ├── inference_gives_input.dart.strong.transformed.expect │ │ │ │ ├── inference_gives_input.dart.textual_outline.expect │ │ │ │ ├── inference_gives_input.dart.textual_outline_modelled.expect │ │ │ │ ├── inference_gives_input.dart.weak.expect │ │ │ │ ├── inference_gives_input.dart.weak.modular.expect │ │ │ │ ├── inference_gives_input.dart.weak.outline.expect │ │ │ │ ├── inference_gives_input.dart.weak.transformed.expect │ │ │ │ ├── inference_super_bounded_rejected.dart │ │ │ │ ├── inference_super_bounded_rejected.dart.strong.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.strong.transformed.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.textual_outline.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.textual_outline_modelled.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.weak.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.weak.modular.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.weak.outline.expect │ │ │ │ ├── inference_super_bounded_rejected.dart.weak.transformed.expect │ │ │ │ ├── instantiated_in_outline.dart │ │ │ │ ├── instantiated_in_outline.dart.strong.expect │ │ │ │ ├── instantiated_in_outline.dart.strong.transformed.expect │ │ │ │ ├── instantiated_in_outline.dart.textual_outline.expect │ │ │ │ ├── instantiated_in_outline.dart.textual_outline_modelled.expect │ │ │ │ ├── instantiated_in_outline.dart.weak.expect │ │ │ │ ├── instantiated_in_outline.dart.weak.modular.expect │ │ │ │ ├── instantiated_in_outline.dart.weak.outline.expect │ │ │ │ ├── instantiated_in_outline.dart.weak.transformed.expect │ │ │ │ ├── literal_list.dart │ │ │ │ ├── literal_list.dart.strong.expect │ │ │ │ ├── literal_list.dart.strong.transformed.expect │ │ │ │ ├── literal_list.dart.textual_outline.expect │ │ │ │ ├── literal_list.dart.textual_outline_modelled.expect │ │ │ │ ├── literal_list.dart.weak.expect │ │ │ │ ├── literal_list.dart.weak.modular.expect │ │ │ │ ├── literal_list.dart.weak.outline.expect │ │ │ │ ├── literal_list.dart.weak.transformed.expect │ │ │ │ ├── literal_list_with_generic_argument.dart │ │ │ │ ├── literal_list_with_generic_argument.dart.strong.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.strong.transformed.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.textual_outline.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.textual_outline_modelled.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.weak.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.weak.modular.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.weak.outline.expect │ │ │ │ ├── literal_list_with_generic_argument.dart.weak.transformed.expect │ │ │ │ ├── literal_map.dart │ │ │ │ ├── literal_map.dart.strong.expect │ │ │ │ ├── literal_map.dart.strong.transformed.expect │ │ │ │ ├── literal_map.dart.textual_outline.expect │ │ │ │ ├── literal_map.dart.textual_outline_modelled.expect │ │ │ │ ├── literal_map.dart.weak.expect │ │ │ │ ├── literal_map.dart.weak.modular.expect │ │ │ │ ├── literal_map.dart.weak.outline.expect │ │ │ │ ├── literal_map.dart.weak.transformed.expect │ │ │ │ ├── multiple_strongly_connected.dart │ │ │ │ ├── multiple_strongly_connected.dart.strong.expect │ │ │ │ ├── multiple_strongly_connected.dart.strong.transformed.expect │ │ │ │ ├── multiple_strongly_connected.dart.textual_outline.expect │ │ │ │ ├── multiple_strongly_connected.dart.textual_outline_modelled.expect │ │ │ │ ├── multiple_strongly_connected.dart.weak.expect │ │ │ │ ├── multiple_strongly_connected.dart.weak.modular.expect │ │ │ │ ├── multiple_strongly_connected.dart.weak.outline.expect │ │ │ │ ├── multiple_strongly_connected.dart.weak.transformed.expect │ │ │ │ ├── mutual_dependence.dart │ │ │ │ ├── mutual_dependence.dart.strong.expect │ │ │ │ ├── mutual_dependence.dart.strong.transformed.expect │ │ │ │ ├── mutual_dependence.dart.textual_outline.expect │ │ │ │ ├── mutual_dependence.dart.textual_outline_modelled.expect │ │ │ │ ├── mutual_dependence.dart.weak.expect │ │ │ │ ├── mutual_dependence.dart.weak.modular.expect │ │ │ │ ├── mutual_dependence.dart.weak.outline.expect │ │ │ │ ├── mutual_dependence.dart.weak.transformed.expect │ │ │ │ ├── mutual_dependence_in_literals.dart │ │ │ │ ├── mutual_dependence_in_literals.dart.strong.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.strong.transformed.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.textual_outline.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.weak.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.weak.modular.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.weak.outline.expect │ │ │ │ ├── mutual_dependence_in_literals.dart.weak.transformed.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.strong.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.strong.transformed.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.textual_outline.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.weak.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.weak.modular.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.weak.outline.expect │ │ │ │ ├── non_simple_bound_due_to_non_simple.dart.weak.transformed.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart │ │ │ │ ├── non_simple_bound_due_to_variables.dart.strong.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.strong.transformed.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.textual_outline.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.weak.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.weak.modular.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.weak.outline.expect │ │ │ │ ├── non_simple_bound_due_to_variables.dart.weak.transformed.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.strong.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.strong.transformed.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.textual_outline.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.weak.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.weak.modular.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.weak.outline.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle.dart.weak.transformed.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.strong.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.strong.transformed.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.textual_outline.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.weak.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.weak.modular.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.weak.outline.expect │ │ │ │ ├── non_simple_class_parametrized_typedef_cycle2.dart.weak.transformed.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart │ │ │ │ ├── non_simple_class_typedef_cycle.dart.strong.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.strong.transformed.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.textual_outline.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.weak.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.weak.modular.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.weak.outline.expect │ │ │ │ ├── non_simple_class_typedef_cycle.dart.weak.transformed.expect │ │ │ │ ├── non_simple_co_inductive.dart │ │ │ │ ├── non_simple_co_inductive.dart.strong.expect │ │ │ │ ├── non_simple_co_inductive.dart.strong.transformed.expect │ │ │ │ ├── non_simple_co_inductive.dart.textual_outline.expect │ │ │ │ ├── non_simple_co_inductive.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.modular.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.outline.expect │ │ │ │ ├── non_simple_co_inductive.dart.weak.transformed.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart │ │ │ │ ├── non_simple_co_inductive_for_each.dart.strong.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.strong.transformed.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.textual_outline.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.modular.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.outline.expect │ │ │ │ ├── non_simple_co_inductive_for_each.dart.weak.transformed.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.strong.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.strong.transformed.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.textual_outline.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.modular.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.outline.expect │ │ │ │ ├── non_simple_co_inductive_no_dup.dart.weak.transformed.expect │ │ │ │ ├── non_simple_folded_regress.dart │ │ │ │ ├── non_simple_folded_regress.dart.strong.expect │ │ │ │ ├── non_simple_folded_regress.dart.strong.transformed.expect │ │ │ │ ├── non_simple_folded_regress.dart.textual_outline.expect │ │ │ │ ├── non_simple_folded_regress.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_folded_regress.dart.weak.expect │ │ │ │ ├── non_simple_folded_regress.dart.weak.modular.expect │ │ │ │ ├── non_simple_folded_regress.dart.weak.outline.expect │ │ │ │ ├── non_simple_folded_regress.dart.weak.transformed.expect │ │ │ │ ├── non_simple_for_each.dart │ │ │ │ ├── non_simple_for_each.dart.strong.expect │ │ │ │ ├── non_simple_for_each.dart.strong.transformed.expect │ │ │ │ ├── non_simple_for_each.dart.textual_outline.expect │ │ │ │ ├── non_simple_for_each.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_for_each.dart.weak.expect │ │ │ │ ├── non_simple_for_each.dart.weak.modular.expect │ │ │ │ ├── non_simple_for_each.dart.weak.outline.expect │ │ │ │ ├── non_simple_for_each.dart.weak.transformed.expect │ │ │ │ ├── non_simple_from_compiled.dart │ │ │ │ ├── non_simple_from_compiled.dart.strong.expect │ │ │ │ ├── non_simple_from_compiled.dart.strong.transformed.expect │ │ │ │ ├── non_simple_from_compiled.dart.textual_outline.expect │ │ │ │ ├── non_simple_from_compiled.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_from_compiled.dart.weak.expect │ │ │ │ ├── non_simple_from_compiled.dart.weak.modular.expect │ │ │ │ ├── non_simple_from_compiled.dart.weak.outline.expect │ │ │ │ ├── non_simple_from_compiled.dart.weak.transformed.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.strong.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.strong.transformed.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.textual_outline.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.weak.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.weak.modular.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.weak.outline.expect │ │ │ │ ├── non_simple_generic_function_in_bound_regress.dart.weak.transformed.expect │ │ │ │ ├── non_simple_many.dart │ │ │ │ ├── non_simple_many.dart.strong.expect │ │ │ │ ├── non_simple_many.dart.strong.transformed.expect │ │ │ │ ├── non_simple_many.dart.textual_outline.expect │ │ │ │ ├── non_simple_many.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_many.dart.weak.expect │ │ │ │ ├── non_simple_many.dart.weak.modular.expect │ │ │ │ ├── non_simple_many.dart.weak.outline.expect │ │ │ │ ├── non_simple_many.dart.weak.transformed.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.strong.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.strong.transformed.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.textual_outline.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.modular.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.outline.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle.dart.weak.transformed.expect │ │ │ │ ├── non_simple_many_libs_same_name_cycle_lib.dart │ │ │ │ ├── non_simple_no_dup.dart │ │ │ │ ├── non_simple_no_dup.dart.strong.expect │ │ │ │ ├── non_simple_no_dup.dart.strong.transformed.expect │ │ │ │ ├── non_simple_no_dup.dart.textual_outline.expect │ │ │ │ ├── non_simple_no_dup.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_no_dup.dart.weak.expect │ │ │ │ ├── non_simple_no_dup.dart.weak.modular.expect │ │ │ │ ├── non_simple_no_dup.dart.weak.outline.expect │ │ │ │ ├── non_simple_no_dup.dart.weak.transformed.expect │ │ │ │ ├── non_simple_suppress_consequence.dart │ │ │ │ ├── non_simple_suppress_consequence.dart.strong.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.strong.transformed.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.textual_outline.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.weak.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.weak.modular.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.weak.outline.expect │ │ │ │ ├── non_simple_suppress_consequence.dart.weak.transformed.expect │ │ │ │ ├── non_simple_variables_from_same.dart │ │ │ │ ├── non_simple_variables_from_same.dart.strong.expect │ │ │ │ ├── non_simple_variables_from_same.dart.strong.transformed.expect │ │ │ │ ├── non_simple_variables_from_same.dart.textual_outline.expect │ │ │ │ ├── non_simple_variables_from_same.dart.textual_outline_modelled.expect │ │ │ │ ├── non_simple_variables_from_same.dart.weak.expect │ │ │ │ ├── non_simple_variables_from_same.dart.weak.modular.expect │ │ │ │ ├── non_simple_variables_from_same.dart.weak.outline.expect │ │ │ │ ├── non_simple_variables_from_same.dart.weak.transformed.expect │ │ │ │ ├── omitted_bound.dart │ │ │ │ ├── omitted_bound.dart.strong.expect │ │ │ │ ├── omitted_bound.dart.strong.transformed.expect │ │ │ │ ├── omitted_bound.dart.textual_outline.expect │ │ │ │ ├── omitted_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── omitted_bound.dart.weak.expect │ │ │ │ ├── omitted_bound.dart.weak.modular.expect │ │ │ │ ├── omitted_bound.dart.weak.outline.expect │ │ │ │ ├── omitted_bound.dart.weak.transformed.expect │ │ │ │ ├── raw_in_bound.dart │ │ │ │ ├── raw_in_bound.dart.strong.expect │ │ │ │ ├── raw_in_bound.dart.strong.transformed.expect │ │ │ │ ├── raw_in_bound.dart.textual_outline.expect │ │ │ │ ├── raw_in_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── raw_in_bound.dart.weak.expect │ │ │ │ ├── raw_in_bound.dart.weak.modular.expect │ │ │ │ ├── raw_in_bound.dart.weak.outline.expect │ │ │ │ ├── raw_in_bound.dart.weak.transformed.expect │ │ │ │ ├── super_bounded_in_bound.dart │ │ │ │ ├── super_bounded_in_bound.dart.strong.expect │ │ │ │ ├── super_bounded_in_bound.dart.strong.transformed.expect │ │ │ │ ├── super_bounded_in_bound.dart.textual_outline.expect │ │ │ │ ├── super_bounded_in_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── super_bounded_in_bound.dart.weak.expect │ │ │ │ ├── super_bounded_in_bound.dart.weak.modular.expect │ │ │ │ ├── super_bounded_in_bound.dart.weak.outline.expect │ │ │ │ ├── super_bounded_in_bound.dart.weak.transformed.expect │ │ │ │ ├── super_bounded_type.dart │ │ │ │ ├── super_bounded_type.dart.strong.expect │ │ │ │ ├── super_bounded_type.dart.strong.transformed.expect │ │ │ │ ├── super_bounded_type.dart.textual_outline.expect │ │ │ │ ├── super_bounded_type.dart.textual_outline_modelled.expect │ │ │ │ ├── super_bounded_type.dart.weak.expect │ │ │ │ ├── super_bounded_type.dart.weak.modular.expect │ │ │ │ ├── super_bounded_type.dart.weak.outline.expect │ │ │ │ ├── super_bounded_type.dart.weak.transformed.expect │ │ │ │ ├── supertypes.dart │ │ │ │ ├── supertypes.dart.strong.expect │ │ │ │ ├── supertypes.dart.strong.transformed.expect │ │ │ │ ├── supertypes.dart.textual_outline.expect │ │ │ │ ├── supertypes.dart.textual_outline_modelled.expect │ │ │ │ ├── supertypes.dart.weak.expect │ │ │ │ ├── supertypes.dart.weak.modular.expect │ │ │ │ ├── supertypes.dart.weak.outline.expect │ │ │ │ ├── supertypes.dart.weak.transformed.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart │ │ │ │ ├── typedef_instantiated_in_outline.dart.strong.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.strong.transformed.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.textual_outline.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.weak.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.weak.modular.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.weak.outline.expect │ │ │ │ ├── typedef_instantiated_in_outline.dart.weak.transformed.expect │ │ │ │ ├── typedef_literal_list.dart │ │ │ │ ├── typedef_literal_list.dart.strong.expect │ │ │ │ ├── typedef_literal_list.dart.strong.transformed.expect │ │ │ │ ├── typedef_literal_list.dart.textual_outline.expect │ │ │ │ ├── typedef_literal_list.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_literal_list.dart.weak.expect │ │ │ │ ├── typedef_literal_list.dart.weak.modular.expect │ │ │ │ ├── typedef_literal_list.dart.weak.outline.expect │ │ │ │ ├── typedef_literal_list.dart.weak.transformed.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.strong.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.strong.transformed.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.textual_outline.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.weak.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.weak.modular.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.weak.outline.expect │ │ │ │ ├── typedef_literal_list_with_generic_argument.dart.weak.transformed.expect │ │ │ │ ├── typedef_literal_map.dart │ │ │ │ ├── typedef_literal_map.dart.strong.expect │ │ │ │ ├── typedef_literal_map.dart.strong.transformed.expect │ │ │ │ ├── typedef_literal_map.dart.textual_outline.expect │ │ │ │ ├── typedef_literal_map.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_literal_map.dart.weak.expect │ │ │ │ ├── typedef_literal_map.dart.weak.modular.expect │ │ │ │ ├── typedef_literal_map.dart.weak.outline.expect │ │ │ │ ├── typedef_literal_map.dart.weak.transformed.expect │ │ │ │ ├── typedef_omitted_bound.dart │ │ │ │ ├── typedef_omitted_bound.dart.strong.expect │ │ │ │ ├── typedef_omitted_bound.dart.strong.transformed.expect │ │ │ │ ├── typedef_omitted_bound.dart.textual_outline.expect │ │ │ │ ├── typedef_omitted_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_omitted_bound.dart.weak.expect │ │ │ │ ├── typedef_omitted_bound.dart.weak.modular.expect │ │ │ │ ├── typedef_omitted_bound.dart.weak.outline.expect │ │ │ │ ├── typedef_omitted_bound.dart.weak.transformed.expect │ │ │ │ ├── typedef_raw_in_bound.dart │ │ │ │ ├── typedef_raw_in_bound.dart.strong.expect │ │ │ │ ├── typedef_raw_in_bound.dart.strong.transformed.expect │ │ │ │ ├── typedef_raw_in_bound.dart.textual_outline.expect │ │ │ │ ├── typedef_raw_in_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_raw_in_bound.dart.weak.expect │ │ │ │ ├── typedef_raw_in_bound.dart.weak.modular.expect │ │ │ │ ├── typedef_raw_in_bound.dart.weak.outline.expect │ │ │ │ ├── typedef_raw_in_bound.dart.weak.transformed.expect │ │ │ │ ├── typedef_super_bounded_type.dart │ │ │ │ ├── typedef_super_bounded_type.dart.strong.expect │ │ │ │ ├── typedef_super_bounded_type.dart.strong.transformed.expect │ │ │ │ ├── typedef_super_bounded_type.dart.textual_outline.expect │ │ │ │ ├── typedef_super_bounded_type.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_super_bounded_type.dart.weak.expect │ │ │ │ ├── typedef_super_bounded_type.dart.weak.modular.expect │ │ │ │ ├── typedef_super_bounded_type.dart.weak.outline.expect │ │ │ │ └── typedef_super_bounded_type.dart.weak.transformed.expect │ │ │ ├── late_lowering │ │ │ │ ├── caching.dart │ │ │ │ ├── caching.dart.strong.expect │ │ │ │ ├── caching.dart.strong.transformed.expect │ │ │ │ ├── caching.dart.textual_outline.expect │ │ │ │ ├── caching.dart.textual_outline_modelled.expect │ │ │ │ ├── caching.dart.weak.expect │ │ │ │ ├── caching.dart.weak.modular.expect │ │ │ │ ├── caching.dart.weak.outline.expect │ │ │ │ ├── caching.dart.weak.transformed.expect │ │ │ │ ├── compound.dart │ │ │ │ ├── compound.dart.strong.expect │ │ │ │ ├── compound.dart.strong.transformed.expect │ │ │ │ ├── compound.dart.textual_outline.expect │ │ │ │ ├── compound.dart.textual_outline_modelled.expect │ │ │ │ ├── compound.dart.weak.expect │ │ │ │ ├── compound.dart.weak.modular.expect │ │ │ │ ├── compound.dart.weak.outline.expect │ │ │ │ ├── compound.dart.weak.transformed.expect │ │ │ │ ├── covariant_late_field.dart │ │ │ │ ├── covariant_late_field.dart.strong.expect │ │ │ │ ├── covariant_late_field.dart.textual_outline.expect │ │ │ │ ├── covariant_late_field.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_late_field.dart.weak.expect │ │ │ │ ├── covariant_late_field.dart.weak.modular.expect │ │ │ │ ├── covariant_late_field.dart.weak.outline.expect │ │ │ │ ├── definitely_assigned.dart │ │ │ │ ├── definitely_assigned.dart.strong.expect │ │ │ │ ├── definitely_assigned.dart.strong.transformed.expect │ │ │ │ ├── definitely_assigned.dart.textual_outline.expect │ │ │ │ ├── definitely_assigned.dart.textual_outline_modelled.expect │ │ │ │ ├── definitely_assigned.dart.weak.expect │ │ │ │ ├── definitely_assigned.dart.weak.modular.expect │ │ │ │ ├── definitely_assigned.dart.weak.outline.expect │ │ │ │ ├── definitely_assigned.dart.weak.transformed.expect │ │ │ │ ├── definitely_unassigned.dart │ │ │ │ ├── definitely_unassigned.dart.strong.expect │ │ │ │ ├── definitely_unassigned.dart.strong.transformed.expect │ │ │ │ ├── definitely_unassigned.dart.textual_outline.expect │ │ │ │ ├── definitely_unassigned.dart.textual_outline_modelled.expect │ │ │ │ ├── definitely_unassigned.dart.weak.expect │ │ │ │ ├── definitely_unassigned.dart.weak.modular.expect │ │ │ │ ├── definitely_unassigned.dart.weak.outline.expect │ │ │ │ ├── definitely_unassigned.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── getter_vs_setter_type.dart │ │ │ │ ├── getter_vs_setter_type.dart.strong.expect │ │ │ │ ├── getter_vs_setter_type.dart.strong.transformed.expect │ │ │ │ ├── getter_vs_setter_type.dart.textual_outline.expect │ │ │ │ ├── getter_vs_setter_type.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.modular.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.outline.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.transformed.expect │ │ │ │ ├── infer_from_late_variable.dart │ │ │ │ ├── infer_from_late_variable.dart.strong.expect │ │ │ │ ├── infer_from_late_variable.dart.strong.transformed.expect │ │ │ │ ├── infer_from_late_variable.dart.textual_outline.expect │ │ │ │ ├── infer_from_late_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.modular.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.outline.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.transformed.expect │ │ │ │ ├── infer_late_field_type.dart │ │ │ │ ├── infer_late_field_type.dart.strong.expect │ │ │ │ ├── infer_late_field_type.dart.strong.transformed.expect │ │ │ │ ├── infer_late_field_type.dart.textual_outline.expect │ │ │ │ ├── infer_late_field_type.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_late_field_type.dart.weak.expect │ │ │ │ ├── infer_late_field_type.dart.weak.modular.expect │ │ │ │ ├── infer_late_field_type.dart.weak.outline.expect │ │ │ │ ├── infer_late_field_type.dart.weak.transformed.expect │ │ │ │ ├── initializer_rewrite.dart │ │ │ │ ├── initializer_rewrite.dart.strong.expect │ │ │ │ ├── initializer_rewrite.dart.strong.transformed.expect │ │ │ │ ├── initializer_rewrite.dart.textual_outline.expect │ │ │ │ ├── initializer_rewrite.dart.textual_outline_modelled.expect │ │ │ │ ├── initializer_rewrite.dart.weak.expect │ │ │ │ ├── initializer_rewrite.dart.weak.modular.expect │ │ │ │ ├── initializer_rewrite.dart.weak.outline.expect │ │ │ │ ├── initializer_rewrite.dart.weak.transformed.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.strong.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.strong.transformed.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.weak.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── initializer_rewrite_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── initializer_rewrite_from_opt_out_lib.dart │ │ │ │ ├── injected_late_field_checks │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── instance_field_with_initializer.dart │ │ │ │ ├── instance_field_with_initializer.dart.strong.expect │ │ │ │ ├── instance_field_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── instance_field_with_initializer.dart.textual_outline.expect │ │ │ │ ├── instance_field_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_field_with_initializer.dart.weak.expect │ │ │ │ ├── instance_field_with_initializer.dart.weak.modular.expect │ │ │ │ ├── instance_field_with_initializer.dart.weak.outline.expect │ │ │ │ ├── instance_field_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── instance_field_without_initializer.dart │ │ │ │ ├── instance_field_without_initializer.dart.strong.expect │ │ │ │ ├── instance_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── instance_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── instance_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_field_without_initializer.dart.weak.expect │ │ │ │ ├── instance_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── instance_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── instance_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── instance_final_field_without_initializer.dart │ │ │ │ ├── instance_final_field_without_initializer.dart.strong.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.weak.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── instance_final_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart │ │ │ │ ├── instance_nullable_field_with_initializer.dart.strong.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.textual_outline.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.weak.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.weak.modular.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.weak.outline.expect │ │ │ │ ├── instance_nullable_field_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart │ │ │ │ ├── instance_nullable_field_without_initializer.dart.strong.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.weak.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── instance_nullable_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.strong.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.weak.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── instance_nullable_final_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── issue40093.dart │ │ │ │ ├── issue40093.dart.strong.expect │ │ │ │ ├── issue40093.dart.strong.transformed.expect │ │ │ │ ├── issue40093.dart.textual_outline.expect │ │ │ │ ├── issue40093.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40093.dart.weak.expect │ │ │ │ ├── issue40093.dart.weak.modular.expect │ │ │ │ ├── issue40093.dart.weak.outline.expect │ │ │ │ ├── issue40093.dart.weak.transformed.expect │ │ │ │ ├── issue40373.dart │ │ │ │ ├── issue40373.dart.strong.expect │ │ │ │ ├── issue40373.dart.strong.transformed.expect │ │ │ │ ├── issue40373.dart.textual_outline.expect │ │ │ │ ├── issue40373.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40373.dart.weak.expect │ │ │ │ ├── issue40373.dart.weak.modular.expect │ │ │ │ ├── issue40373.dart.weak.outline.expect │ │ │ │ ├── issue40373.dart.weak.transformed.expect │ │ │ │ ├── issue40373b.dart │ │ │ │ ├── issue40373b.dart.strong.expect │ │ │ │ ├── issue40373b.dart.strong.transformed.expect │ │ │ │ ├── issue40373b.dart.textual_outline.expect │ │ │ │ ├── issue40373b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40373b.dart.weak.expect │ │ │ │ ├── issue40373b.dart.weak.modular.expect │ │ │ │ ├── issue40373b.dart.weak.outline.expect │ │ │ │ ├── issue40373b.dart.weak.transformed.expect │ │ │ │ ├── issue40601.dart │ │ │ │ ├── issue40601.dart.strong.expect │ │ │ │ ├── issue40601.dart.strong.transformed.expect │ │ │ │ ├── issue40601.dart.textual_outline.expect │ │ │ │ ├── issue40601.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40601.dart.weak.expect │ │ │ │ ├── issue40601.dart.weak.modular.expect │ │ │ │ ├── issue40601.dart.weak.outline.expect │ │ │ │ ├── issue40601.dart.weak.transformed.expect │ │ │ │ ├── issue40805.dart │ │ │ │ ├── issue40805.dart.strong.expect │ │ │ │ ├── issue40805.dart.strong.transformed.expect │ │ │ │ ├── issue40805.dart.textual_outline.expect │ │ │ │ ├── issue40805.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40805.dart.weak.expect │ │ │ │ ├── issue40805.dart.weak.modular.expect │ │ │ │ ├── issue40805.dart.weak.outline.expect │ │ │ │ ├── issue40805.dart.weak.transformed.expect │ │ │ │ ├── issue41436 │ │ │ │ │ ├── issue41436.dart │ │ │ │ │ ├── issue41436.dart.strong.expect │ │ │ │ │ ├── issue41436.dart.strong.transformed.expect │ │ │ │ │ ├── issue41436.dart.textual_outline.expect │ │ │ │ │ ├── issue41436.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41436.dart.weak.expect │ │ │ │ │ ├── issue41436.dart.weak.modular.expect │ │ │ │ │ ├── issue41436.dart.weak.outline.expect │ │ │ │ │ ├── issue41436.dart.weak.transformed.expect │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── issue41436b.dart │ │ │ │ ├── issue41436b.dart.strong.expect │ │ │ │ ├── issue41436b.dart.strong.transformed.expect │ │ │ │ ├── issue41436b.dart.textual_outline.expect │ │ │ │ ├── issue41436b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41436b.dart.weak.expect │ │ │ │ ├── issue41436b.dart.weak.modular.expect │ │ │ │ ├── issue41436b.dart.weak.outline.expect │ │ │ │ ├── issue41436b.dart.weak.transformed.expect │ │ │ │ ├── issue41436c │ │ │ │ │ ├── issue41436c.dart │ │ │ │ │ ├── issue41436c.dart.strong.expect │ │ │ │ │ ├── issue41436c.dart.strong.transformed.expect │ │ │ │ │ ├── issue41436c.dart.textual_outline.expect │ │ │ │ │ ├── issue41436c.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41436c.dart.weak.expect │ │ │ │ │ ├── issue41436c.dart.weak.modular.expect │ │ │ │ │ ├── issue41436c.dart.weak.outline.expect │ │ │ │ │ ├── issue41436c.dart.weak.transformed.expect │ │ │ │ │ ├── issue41436c_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue41922.dart │ │ │ │ ├── issue41922.dart.strong.expect │ │ │ │ ├── issue41922.dart.strong.transformed.expect │ │ │ │ ├── issue41922.dart.textual_outline.expect │ │ │ │ ├── issue41922.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41922.dart.weak.expect │ │ │ │ ├── issue41922.dart.weak.modular.expect │ │ │ │ ├── issue41922.dart.weak.outline.expect │ │ │ │ ├── issue41922.dart.weak.transformed.expect │ │ │ │ ├── issue42407.dart │ │ │ │ ├── issue42407.dart.strong.expect │ │ │ │ ├── issue42407.dart.strong.transformed.expect │ │ │ │ ├── issue42407.dart.textual_outline.expect │ │ │ │ ├── issue42407.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42407.dart.weak.expect │ │ │ │ ├── issue42407.dart.weak.modular.expect │ │ │ │ ├── issue42407.dart.weak.outline.expect │ │ │ │ ├── issue42407.dart.weak.transformed.expect │ │ │ │ ├── issue44372.dart │ │ │ │ ├── issue44372.dart.strong.expect │ │ │ │ ├── issue44372.dart.strong.transformed.expect │ │ │ │ ├── issue44372.dart.textual_outline.expect │ │ │ │ ├── issue44372.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44372.dart.weak.expect │ │ │ │ ├── issue44372.dart.weak.modular.expect │ │ │ │ ├── issue44372.dart.weak.outline.expect │ │ │ │ ├── issue44372.dart.weak.transformed.expect │ │ │ │ ├── issue51449.dart │ │ │ │ ├── issue51449.dart.strong.expect │ │ │ │ ├── issue51449.dart.strong.transformed.expect │ │ │ │ ├── issue51449.dart.textual_outline.expect │ │ │ │ ├── issue51449.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51449.dart.weak.expect │ │ │ │ ├── issue51449.dart.weak.modular.expect │ │ │ │ ├── issue51449.dart.weak.outline.expect │ │ │ │ ├── issue51449.dart.weak.transformed.expect │ │ │ │ ├── late_annotations.dart │ │ │ │ ├── late_annotations.dart.strong.expect │ │ │ │ ├── late_annotations.dart.strong.transformed.expect │ │ │ │ ├── late_annotations.dart.textual_outline.expect │ │ │ │ ├── late_annotations.dart.textual_outline_modelled.expect │ │ │ │ ├── late_annotations.dart.weak.expect │ │ │ │ ├── late_annotations.dart.weak.modular.expect │ │ │ │ ├── late_annotations.dart.weak.outline.expect │ │ │ │ ├── late_annotations.dart.weak.transformed.expect │ │ │ │ ├── late_field_inference.dart │ │ │ │ ├── late_field_inference.dart.strong.expect │ │ │ │ ├── late_field_inference.dart.strong.transformed.expect │ │ │ │ ├── late_field_inference.dart.textual_outline.expect │ │ │ │ ├── late_field_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── late_field_inference.dart.weak.expect │ │ │ │ ├── late_field_inference.dart.weak.modular.expect │ │ │ │ ├── late_field_inference.dart.weak.outline.expect │ │ │ │ ├── late_field_inference.dart.weak.transformed.expect │ │ │ │ ├── late_field_with_initializer.dart │ │ │ │ ├── late_field_with_initializer.dart.strong.expect │ │ │ │ ├── late_field_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_field_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_field_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_field_with_initializer.dart.weak.expect │ │ │ │ ├── late_field_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_field_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_field_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_field_without_initializer.dart │ │ │ │ ├── late_field_without_initializer.dart.strong.expect │ │ │ │ ├── late_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_field_without_initializer.dart.weak.expect │ │ │ │ ├── late_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_field_with_initializer.dart │ │ │ │ ├── late_final_field_with_initializer.dart.strong.expect │ │ │ │ ├── late_final_field_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_field_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_field_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_field_with_initializer.dart.weak.expect │ │ │ │ ├── late_final_field_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_field_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_field_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_field_without_initializer.dart │ │ │ │ ├── late_final_field_without_initializer.dart.strong.expect │ │ │ │ ├── late_final_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_field_without_initializer.dart.weak.expect │ │ │ │ ├── late_final_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_local_with_initializer.dart │ │ │ │ ├── late_final_local_with_initializer.dart.strong.expect │ │ │ │ ├── late_final_local_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_local_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_local_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_local_with_initializer.dart.weak.expect │ │ │ │ ├── late_final_local_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_local_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_local_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_local_without_initializer.dart │ │ │ │ ├── late_final_local_without_initializer.dart.strong.expect │ │ │ │ ├── late_final_local_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_local_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_local_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_local_without_initializer.dart.weak.expect │ │ │ │ ├── late_final_local_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_local_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_local_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.strong.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.weak.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_nullable_field_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.strong.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.weak.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_nullable_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.strong.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.weak.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_nullable_local_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.strong.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.weak.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_final_nullable_local_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_future_or.dart │ │ │ │ ├── late_future_or.dart.strong.expect │ │ │ │ ├── late_future_or.dart.strong.transformed.expect │ │ │ │ ├── late_future_or.dart.textual_outline.expect │ │ │ │ ├── late_future_or.dart.textual_outline_modelled.expect │ │ │ │ ├── late_future_or.dart.weak.expect │ │ │ │ ├── late_future_or.dart.weak.modular.expect │ │ │ │ ├── late_future_or.dart.weak.outline.expect │ │ │ │ ├── late_future_or.dart.weak.transformed.expect │ │ │ │ ├── late_local_with_initializer.dart │ │ │ │ ├── late_local_with_initializer.dart.strong.expect │ │ │ │ ├── late_local_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_local_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_local_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_local_with_initializer.dart.weak.expect │ │ │ │ ├── late_local_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_local_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_local_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_local_without_initializer.dart │ │ │ │ ├── late_local_without_initializer.dart.strong.expect │ │ │ │ ├── late_local_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_local_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_local_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_local_without_initializer.dart.weak.expect │ │ │ │ ├── late_local_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_local_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_local_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_lowering_bitmasks.dart │ │ │ │ ├── late_lowering_bitmasks.dart.strong.expect │ │ │ │ ├── late_lowering_bitmasks.dart.strong.transformed.expect │ │ │ │ ├── late_lowering_bitmasks.dart.textual_outline.expect │ │ │ │ ├── late_lowering_bitmasks.dart.textual_outline_modelled.expect │ │ │ │ ├── late_lowering_bitmasks.dart.weak.expect │ │ │ │ ├── late_lowering_bitmasks.dart.weak.modular.expect │ │ │ │ ├── late_lowering_bitmasks.dart.weak.outline.expect │ │ │ │ ├── late_lowering_bitmasks.dart.weak.transformed.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart │ │ │ │ ├── late_nullable_field_with_initializer.dart.strong.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.weak.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_nullable_field_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart │ │ │ │ ├── late_nullable_field_without_initializer.dart.strong.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.weak.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_nullable_field_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart │ │ │ │ ├── late_nullable_local_with_initializer.dart.strong.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.textual_outline.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.weak.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.weak.modular.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.weak.outline.expect │ │ │ │ ├── late_nullable_local_with_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart │ │ │ │ ├── late_nullable_local_without_initializer.dart.strong.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.strong.transformed.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.textual_outline.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.weak.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.weak.modular.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.weak.outline.expect │ │ │ │ ├── late_nullable_local_without_initializer.dart.weak.transformed.expect │ │ │ │ ├── late_override.dart │ │ │ │ ├── late_override.dart.strong.expect │ │ │ │ ├── late_override.dart.strong.transformed.expect │ │ │ │ ├── late_override.dart.textual_outline.expect │ │ │ │ ├── late_override.dart.textual_outline_modelled.expect │ │ │ │ ├── late_override.dart.weak.expect │ │ │ │ ├── late_override.dart.weak.modular.expect │ │ │ │ ├── late_override.dart.weak.outline.expect │ │ │ │ ├── late_override.dart.weak.transformed.expect │ │ │ │ ├── later.dart │ │ │ │ ├── later.dart.strong.expect │ │ │ │ ├── later.dart.strong.transformed.expect │ │ │ │ ├── later.dart.textual_outline.expect │ │ │ │ ├── later.dart.weak.expect │ │ │ │ ├── later.dart.weak.modular.expect │ │ │ │ ├── later.dart.weak.outline.expect │ │ │ │ ├── later.dart.weak.transformed.expect │ │ │ │ ├── non_nullable_from_opt_out.dart │ │ │ │ ├── non_nullable_from_opt_out.dart.strong.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.strong.transformed.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.weak.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── non_nullable_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── non_nullable_from_opt_out_lib.dart │ │ │ │ ├── override.dart │ │ │ │ ├── override.dart.strong.expect │ │ │ │ ├── override.dart.strong.transformed.expect │ │ │ │ ├── override.dart.textual_outline.expect │ │ │ │ ├── override.dart.textual_outline_modelled.expect │ │ │ │ ├── override.dart.weak.expect │ │ │ │ ├── override.dart.weak.modular.expect │ │ │ │ ├── override.dart.weak.outline.expect │ │ │ │ ├── override.dart.weak.transformed.expect │ │ │ │ ├── override_getter_setter.dart │ │ │ │ ├── override_getter_setter.dart.strong.expect │ │ │ │ ├── override_getter_setter.dart.strong.transformed.expect │ │ │ │ ├── override_getter_setter.dart.textual_outline.expect │ │ │ │ ├── override_getter_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── override_getter_setter.dart.weak.expect │ │ │ │ ├── override_getter_setter.dart.weak.modular.expect │ │ │ │ ├── override_getter_setter.dart.weak.outline.expect │ │ │ │ ├── override_getter_setter.dart.weak.transformed.expect │ │ │ │ ├── pattern_assignment_final.dart │ │ │ │ ├── pattern_assignment_final.dart.strong.expect │ │ │ │ ├── pattern_assignment_final.dart.strong.transformed.expect │ │ │ │ ├── pattern_assignment_final.dart.textual_outline.expect │ │ │ │ ├── pattern_assignment_final.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.modular.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.outline.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.transformed.expect │ │ │ │ ├── private_members.dart │ │ │ │ ├── private_members.dart.strong.expect │ │ │ │ ├── private_members.dart.strong.transformed.expect │ │ │ │ ├── private_members.dart.textual_outline.expect │ │ │ │ ├── private_members.dart.textual_outline_modelled.expect │ │ │ │ ├── private_members.dart.weak.expect │ │ │ │ ├── private_members.dart.weak.modular.expect │ │ │ │ ├── private_members.dart.weak.outline.expect │ │ │ │ ├── private_members.dart.weak.transformed.expect │ │ │ │ ├── private_members_part.dart │ │ │ │ ├── return_late.dart │ │ │ │ ├── return_late.dart.strong.expect │ │ │ │ ├── return_late.dart.strong.transformed.expect │ │ │ │ ├── return_late.dart.textual_outline.expect │ │ │ │ ├── return_late.dart.textual_outline_modelled.expect │ │ │ │ ├── return_late.dart.weak.expect │ │ │ │ ├── return_late.dart.weak.modular.expect │ │ │ │ ├── return_late.dart.weak.outline.expect │ │ │ │ ├── return_late.dart.weak.transformed.expect │ │ │ │ ├── skip_late_final_uninitialized_instance_fields │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ └── main.dart.weak.transformed.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.strong.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.strong.transformed.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.textual_outline.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.modular.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.outline.expect │ │ │ │ └── uninitialized_non_nullable_late_fields.dart.weak.transformed.expect │ │ │ ├── late_lowering_sentinel │ │ │ │ ├── folder.options │ │ │ │ ├── late_fields.dart │ │ │ │ ├── late_fields.dart.strong.expect │ │ │ │ ├── late_fields.dart.strong.transformed.expect │ │ │ │ ├── late_fields.dart.textual_outline.expect │ │ │ │ ├── late_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── late_fields.dart.weak.expect │ │ │ │ ├── late_fields.dart.weak.modular.expect │ │ │ │ ├── late_fields.dart.weak.outline.expect │ │ │ │ ├── late_fields.dart.weak.transformed.expect │ │ │ │ ├── late_locals.dart │ │ │ │ ├── late_locals.dart.strong.expect │ │ │ │ ├── late_locals.dart.strong.transformed.expect │ │ │ │ ├── late_locals.dart.textual_outline.expect │ │ │ │ ├── late_locals.dart.textual_outline_modelled.expect │ │ │ │ ├── late_locals.dart.weak.expect │ │ │ │ ├── late_locals.dart.weak.modular.expect │ │ │ │ ├── late_locals.dart.weak.outline.expect │ │ │ │ └── late_locals.dart.weak.transformed.expect │ │ │ ├── macros │ │ │ │ ├── augment_class.dart │ │ │ │ ├── augment_class.dart.strong.expect │ │ │ │ ├── augment_class.dart.strong.transformed.expect │ │ │ │ ├── augment_class.dart.textual_outline.expect │ │ │ │ ├── augment_class.dart.weak.expect │ │ │ │ ├── augment_class.dart.weak.modular.expect │ │ │ │ ├── augment_class.dart.weak.outline.expect │ │ │ │ ├── augment_class.dart.weak.transformed.expect │ │ │ │ ├── augment_concrete.dart │ │ │ │ ├── augment_concrete.dart.strong.expect │ │ │ │ ├── augment_concrete.dart.strong.transformed.expect │ │ │ │ ├── augment_concrete.dart.textual_outline.expect │ │ │ │ ├── augment_concrete.dart.weak.expect │ │ │ │ ├── augment_concrete.dart.weak.modular.expect │ │ │ │ ├── augment_concrete.dart.weak.outline.expect │ │ │ │ ├── augment_concrete.dart.weak.transformed.expect │ │ │ │ ├── augment_concrete_lib1.dart │ │ │ │ ├── augment_concrete_lib2.dart │ │ │ │ ├── augment_super.dart │ │ │ │ ├── augment_super.dart.strong.expect │ │ │ │ ├── augment_super.dart.strong.transformed.expect │ │ │ │ ├── augment_super.dart.textual_outline.expect │ │ │ │ ├── augment_super.dart.weak.expect │ │ │ │ ├── augment_super.dart.weak.modular.expect │ │ │ │ ├── augment_super.dart.weak.outline.expect │ │ │ │ ├── augment_super.dart.weak.transformed.expect │ │ │ │ ├── augment_super_lib.dart │ │ │ │ ├── class_members.dart │ │ │ │ ├── class_members.dart.strong.expect │ │ │ │ ├── class_members.dart.strong.transformed.expect │ │ │ │ ├── class_members.dart.textual_outline.expect │ │ │ │ ├── class_members.dart.weak.expect │ │ │ │ ├── class_members.dart.weak.modular.expect │ │ │ │ ├── class_members.dart.weak.outline.expect │ │ │ │ ├── class_members.dart.weak.transformed.expect │ │ │ │ ├── class_members_lib.dart │ │ │ │ ├── class_members_part.dart │ │ │ │ ├── duplicate_augment.dart │ │ │ │ ├── duplicate_augment.dart.strong.expect │ │ │ │ ├── duplicate_augment.dart.strong.transformed.expect │ │ │ │ ├── duplicate_augment.dart.textual_outline.expect │ │ │ │ ├── duplicate_augment.dart.weak.expect │ │ │ │ ├── duplicate_augment.dart.weak.modular.expect │ │ │ │ ├── duplicate_augment.dart.weak.outline.expect │ │ │ │ ├── duplicate_augment.dart.weak.transformed.expect │ │ │ │ ├── duplicate_augment_lib.dart │ │ │ │ ├── extend_augmented.dart │ │ │ │ ├── extend_augmented.dart.strong.expect │ │ │ │ ├── extend_augmented.dart.strong.transformed.expect │ │ │ │ ├── extend_augmented.dart.textual_outline.expect │ │ │ │ ├── extend_augmented.dart.weak.expect │ │ │ │ ├── extend_augmented.dart.weak.modular.expect │ │ │ │ ├── extend_augmented.dart.weak.outline.expect │ │ │ │ ├── extend_augmented.dart.weak.transformed.expect │ │ │ │ ├── extend_augmented_lib.dart │ │ │ │ ├── folder.options │ │ │ │ ├── inject_constructor.dart │ │ │ │ ├── inject_constructor.dart.strong.expect │ │ │ │ ├── inject_constructor.dart.strong.transformed.expect │ │ │ │ ├── inject_constructor.dart.textual_outline.expect │ │ │ │ ├── inject_constructor.dart.weak.expect │ │ │ │ ├── inject_constructor.dart.weak.modular.expect │ │ │ │ ├── inject_constructor.dart.weak.outline.expect │ │ │ │ ├── inject_constructor.dart.weak.transformed.expect │ │ │ │ ├── inject_constructor_lib.dart │ │ │ │ ├── library_members.dart │ │ │ │ ├── library_members.dart.strong.expect │ │ │ │ ├── library_members.dart.strong.transformed.expect │ │ │ │ ├── library_members.dart.textual_outline.expect │ │ │ │ ├── library_members.dart.weak.expect │ │ │ │ ├── library_members.dart.weak.modular.expect │ │ │ │ ├── library_members.dart.weak.outline.expect │ │ │ │ ├── library_members.dart.weak.transformed.expect │ │ │ │ ├── library_members_lib.dart │ │ │ │ ├── macro_class.dart │ │ │ │ ├── macro_class.dart.strong.expect │ │ │ │ ├── macro_class.dart.strong.transformed.expect │ │ │ │ ├── macro_class.dart.textual_outline.expect │ │ │ │ ├── macro_class.dart.weak.expect │ │ │ │ ├── macro_class.dart.weak.modular.expect │ │ │ │ ├── macro_class.dart.weak.outline.expect │ │ │ │ ├── macro_class.dart.weak.transformed.expect │ │ │ │ ├── multiple_augment_class.dart │ │ │ │ ├── multiple_augment_class.dart.strong.expect │ │ │ │ ├── multiple_augment_class.dart.strong.transformed.expect │ │ │ │ ├── multiple_augment_class.dart.textual_outline.expect │ │ │ │ ├── multiple_augment_class.dart.weak.expect │ │ │ │ ├── multiple_augment_class.dart.weak.modular.expect │ │ │ │ ├── multiple_augment_class.dart.weak.outline.expect │ │ │ │ ├── multiple_augment_class.dart.weak.transformed.expect │ │ │ │ ├── multiple_augment_class_lib1.dart │ │ │ │ ├── multiple_augment_class_lib2.dart │ │ │ │ ├── multiple_imports.dart │ │ │ │ ├── multiple_imports.dart.strong.expect │ │ │ │ ├── multiple_imports.dart.strong.transformed.expect │ │ │ │ ├── multiple_imports.dart.textual_outline.expect │ │ │ │ ├── multiple_imports.dart.weak.expect │ │ │ │ ├── multiple_imports.dart.weak.modular.expect │ │ │ │ ├── multiple_imports.dart.weak.outline.expect │ │ │ │ ├── multiple_imports.dart.weak.transformed.expect │ │ │ │ ├── multiple_imports_lib.dart │ │ │ │ ├── part_import_augment.dart │ │ │ │ ├── part_import_augment.dart.strong.expect │ │ │ │ ├── part_import_augment.dart.strong.transformed.expect │ │ │ │ ├── part_import_augment.dart.textual_outline.expect │ │ │ │ ├── part_import_augment.dart.textual_outline_modelled.expect │ │ │ │ ├── part_import_augment.dart.weak.expect │ │ │ │ ├── part_import_augment.dart.weak.modular.expect │ │ │ │ ├── part_import_augment.dart.weak.outline.expect │ │ │ │ ├── part_import_augment.dart.weak.transformed.expect │ │ │ │ ├── part_import_augment_lib.dart │ │ │ │ ├── part_import_augment_part.dart │ │ │ │ ├── scope_access.dart │ │ │ │ ├── scope_access.dart.strong.expect │ │ │ │ ├── scope_access.dart.strong.transformed.expect │ │ │ │ ├── scope_access.dart.textual_outline.expect │ │ │ │ ├── scope_access.dart.weak.expect │ │ │ │ ├── scope_access.dart.weak.modular.expect │ │ │ │ ├── scope_access.dart.weak.outline.expect │ │ │ │ ├── scope_access.dart.weak.transformed.expect │ │ │ │ ├── scope_access_lib1.dart │ │ │ │ ├── scope_access_lib2.dart │ │ │ │ └── scope_access_lib3.dart │ │ │ ├── modular.status │ │ │ ├── named_arguments_anywhere │ │ │ │ ├── all_kinds.dart │ │ │ │ ├── all_kinds.dart.strong.expect │ │ │ │ ├── all_kinds.dart.strong.transformed.expect │ │ │ │ ├── all_kinds.dart.textual_outline.expect │ │ │ │ ├── all_kinds.dart.textual_outline_modelled.expect │ │ │ │ ├── all_kinds.dart.weak.expect │ │ │ │ ├── all_kinds.dart.weak.modular.expect │ │ │ │ ├── all_kinds.dart.weak.outline.expect │ │ │ │ ├── all_kinds.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── issue50910.dart │ │ │ │ ├── issue50910.dart.strong.expect │ │ │ │ ├── issue50910.dart.strong.transformed.expect │ │ │ │ ├── issue50910.dart.textual_outline.expect │ │ │ │ ├── issue50910.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50910.dart.weak.expect │ │ │ │ ├── issue50910.dart.weak.modular.expect │ │ │ │ ├── issue50910.dart.weak.outline.expect │ │ │ │ ├── issue50910.dart.weak.transformed.expect │ │ │ │ ├── redirecting_constructor_initializers.dart │ │ │ │ ├── redirecting_constructor_initializers.dart.strong.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.strong.transformed.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.textual_outline.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.textual_outline_modelled.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.weak.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.weak.modular.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.weak.outline.expect │ │ │ │ ├── redirecting_constructor_initializers.dart.weak.transformed.expect │ │ │ │ ├── trailing_comma1.dart │ │ │ │ ├── trailing_comma1.dart.strong.expect │ │ │ │ ├── trailing_comma1.dart.strong.transformed.expect │ │ │ │ ├── trailing_comma1.dart.textual_outline.expect │ │ │ │ ├── trailing_comma1.dart.textual_outline_modelled.expect │ │ │ │ ├── trailing_comma1.dart.weak.expect │ │ │ │ ├── trailing_comma1.dart.weak.modular.expect │ │ │ │ ├── trailing_comma1.dart.weak.outline.expect │ │ │ │ ├── trailing_comma1.dart.weak.transformed.expect │ │ │ │ ├── trailing_comma2.dart │ │ │ │ ├── trailing_comma2.dart.strong.expect │ │ │ │ ├── trailing_comma2.dart.strong.transformed.expect │ │ │ │ ├── trailing_comma2.dart.textual_outline.expect │ │ │ │ ├── trailing_comma2.dart.textual_outline_modelled.expect │ │ │ │ ├── trailing_comma2.dart.weak.expect │ │ │ │ ├── trailing_comma2.dart.weak.modular.expect │ │ │ │ ├── trailing_comma2.dart.weak.outline.expect │ │ │ │ └── trailing_comma2.dart.weak.transformed.expect │ │ │ ├── new_const_insertion │ │ │ │ ├── folder.options │ │ │ │ ├── simple.dart │ │ │ │ ├── simple.dart.strong.expect │ │ │ │ ├── simple.dart.strong.transformed.expect │ │ │ │ ├── simple.dart.textual_outline.expect │ │ │ │ ├── simple.dart.textual_outline_modelled.expect │ │ │ │ ├── simple.dart.weak.expect │ │ │ │ ├── simple.dart.weak.modular.expect │ │ │ │ ├── simple.dart.weak.outline.expect │ │ │ │ └── simple.dart.weak.transformed.expect │ │ │ ├── nnbd │ │ │ │ ├── abstract_field_errors.dart │ │ │ │ ├── abstract_field_errors.dart.strong.expect │ │ │ │ ├── abstract_field_errors.dart.strong.transformed.expect │ │ │ │ ├── abstract_field_errors.dart.textual_outline.expect │ │ │ │ ├── abstract_field_errors.dart.weak.expect │ │ │ │ ├── abstract_field_errors.dart.weak.modular.expect │ │ │ │ ├── abstract_field_errors.dart.weak.outline.expect │ │ │ │ ├── abstract_field_errors.dart.weak.transformed.expect │ │ │ │ ├── abstract_fields.dart │ │ │ │ ├── abstract_fields.dart.strong.expect │ │ │ │ ├── abstract_fields.dart.strong.transformed.expect │ │ │ │ ├── abstract_fields.dart.textual_outline.expect │ │ │ │ ├── abstract_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_fields.dart.weak.expect │ │ │ │ ├── abstract_fields.dart.weak.modular.expect │ │ │ │ ├── abstract_fields.dart.weak.outline.expect │ │ │ │ ├── abstract_fields.dart.weak.transformed.expect │ │ │ │ ├── abstract_fields_spec.dart │ │ │ │ ├── abstract_fields_spec.dart.strong.expect │ │ │ │ ├── abstract_fields_spec.dart.strong.transformed.expect │ │ │ │ ├── abstract_fields_spec.dart.textual_outline.expect │ │ │ │ ├── abstract_fields_spec.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_fields_spec.dart.weak.expect │ │ │ │ ├── abstract_fields_spec.dart.weak.modular.expect │ │ │ │ ├── abstract_fields_spec.dart.weak.outline.expect │ │ │ │ ├── abstract_fields_spec.dart.weak.transformed.expect │ │ │ │ ├── ambiguous_main_export.dart │ │ │ │ ├── ambiguous_main_export.dart.strong.expect │ │ │ │ ├── ambiguous_main_export.dart.strong.transformed.expect │ │ │ │ ├── ambiguous_main_export.dart.textual_outline.expect │ │ │ │ ├── ambiguous_main_export.dart.textual_outline_modelled.expect │ │ │ │ ├── ambiguous_main_export.dart.weak.expect │ │ │ │ ├── ambiguous_main_export.dart.weak.modular.expect │ │ │ │ ├── ambiguous_main_export.dart.weak.outline.expect │ │ │ │ ├── ambiguous_main_export.dart.weak.transformed.expect │ │ │ │ ├── ambiguous_main_export_lib0.dart │ │ │ │ ├── ambiguous_main_export_lib1.dart │ │ │ │ ├── ambiguous_main_export_lib2.dart │ │ │ │ ├── assign_type_variable.dart │ │ │ │ ├── assign_type_variable.dart.strong.expect │ │ │ │ ├── assign_type_variable.dart.strong.transformed.expect │ │ │ │ ├── assign_type_variable.dart.textual_outline.expect │ │ │ │ ├── assign_type_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── assign_type_variable.dart.weak.expect │ │ │ │ ├── assign_type_variable.dart.weak.modular.expect │ │ │ │ ├── assign_type_variable.dart.weak.outline.expect │ │ │ │ ├── assign_type_variable.dart.weak.transformed.expect │ │ │ │ ├── assignability.dart │ │ │ │ ├── assignability.dart.strong.expect │ │ │ │ ├── assignability.dart.strong.transformed.expect │ │ │ │ ├── assignability.dart.textual_outline.expect │ │ │ │ ├── assignability.dart.textual_outline_modelled.expect │ │ │ │ ├── assignability.dart.weak.expect │ │ │ │ ├── assignability.dart.weak.modular.expect │ │ │ │ ├── assignability.dart.weak.outline.expect │ │ │ │ ├── assignability.dart.weak.transformed.expect │ │ │ │ ├── assignability_error_messages.dart │ │ │ │ ├── assignability_error_messages.dart.strong.expect │ │ │ │ ├── assignability_error_messages.dart.strong.transformed.expect │ │ │ │ ├── assignability_error_messages.dart.textual_outline.expect │ │ │ │ ├── assignability_error_messages.dart.textual_outline_modelled.expect │ │ │ │ ├── assignability_error_messages.dart.weak.expect │ │ │ │ ├── assignability_error_messages.dart.weak.modular.expect │ │ │ │ ├── assignability_error_messages.dart.weak.outline.expect │ │ │ │ ├── assignability_error_messages.dart.weak.transformed.expect │ │ │ │ ├── assignment_final.dart │ │ │ │ ├── assignment_final.dart.strong.expect │ │ │ │ ├── assignment_final.dart.strong.transformed.expect │ │ │ │ ├── assignment_final.dart.textual_outline.expect │ │ │ │ ├── assignment_final.dart.textual_outline_modelled.expect │ │ │ │ ├── assignment_final.dart.weak.expect │ │ │ │ ├── assignment_final.dart.weak.modular.expect │ │ │ │ ├── assignment_final.dart.weak.outline.expect │ │ │ │ ├── assignment_final.dart.weak.transformed.expect │ │ │ │ ├── bounds_checks.dart │ │ │ │ ├── bounds_checks.dart.strong.expect │ │ │ │ ├── bounds_checks.dart.strong.transformed.expect │ │ │ │ ├── bounds_checks.dart.textual_outline.expect │ │ │ │ ├── bounds_checks.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_checks.dart.weak.expect │ │ │ │ ├── bounds_checks.dart.weak.modular.expect │ │ │ │ ├── bounds_checks.dart.weak.outline.expect │ │ │ │ ├── bounds_checks.dart.weak.transformed.expect │ │ │ │ ├── build_issue_2688.dart │ │ │ │ ├── build_issue_2688.dart.strong.expect │ │ │ │ ├── build_issue_2688.dart.strong.transformed.expect │ │ │ │ ├── build_issue_2688.dart.textual_outline.expect │ │ │ │ ├── build_issue_2688.dart.textual_outline_modelled.expect │ │ │ │ ├── build_issue_2688.dart.weak.expect │ │ │ │ ├── build_issue_2688.dart.weak.modular.expect │ │ │ │ ├── build_issue_2688.dart.weak.outline.expect │ │ │ │ ├── build_issue_2688.dart.weak.transformed.expect │ │ │ │ ├── call.dart │ │ │ │ ├── call.dart.strong.expect │ │ │ │ ├── call.dart.strong.transformed.expect │ │ │ │ ├── call.dart.textual_outline.expect │ │ │ │ ├── call.dart.textual_outline_modelled.expect │ │ │ │ ├── call.dart.weak.expect │ │ │ │ ├── call.dart.weak.modular.expect │ │ │ │ ├── call.dart.weak.outline.expect │ │ │ │ ├── call.dart.weak.transformed.expect │ │ │ │ ├── combined_required.dart │ │ │ │ ├── combined_required.dart.strong.expect │ │ │ │ ├── combined_required.dart.strong.transformed.expect │ │ │ │ ├── combined_required.dart.textual_outline.expect │ │ │ │ ├── combined_required.dart.textual_outline_modelled.expect │ │ │ │ ├── combined_required.dart.weak.expect │ │ │ │ ├── combined_required.dart.weak.modular.expect │ │ │ │ ├── combined_required.dart.weak.outline.expect │ │ │ │ ├── combined_required.dart.weak.transformed.expect │ │ │ │ ├── const_canonical_type.dart │ │ │ │ ├── const_canonical_type.dart.strong.expect │ │ │ │ ├── const_canonical_type.dart.strong.transformed.expect │ │ │ │ ├── const_canonical_type.dart.textual_outline.expect │ │ │ │ ├── const_canonical_type.dart.textual_outline_modelled.expect │ │ │ │ ├── const_canonical_type.dart.weak.expect │ │ │ │ ├── const_canonical_type.dart.weak.modular.expect │ │ │ │ ├── const_canonical_type.dart.weak.outline.expect │ │ │ │ ├── const_canonical_type.dart.weak.transformed.expect │ │ │ │ ├── const_is.dart │ │ │ │ ├── const_is.dart.strong.expect │ │ │ │ ├── const_is.dart.strong.transformed.expect │ │ │ │ ├── const_is.dart.textual_outline.expect │ │ │ │ ├── const_is.dart.textual_outline_modelled.expect │ │ │ │ ├── const_is.dart.weak.expect │ │ │ │ ├── const_is.dart.weak.modular.expect │ │ │ │ ├── const_is.dart.weak.outline.expect │ │ │ │ ├── const_is.dart.weak.transformed.expect │ │ │ │ ├── constant_null_check.dart │ │ │ │ ├── constant_null_check.dart.strong.expect │ │ │ │ ├── constant_null_check.dart.strong.transformed.expect │ │ │ │ ├── constant_null_check.dart.textual_outline.expect │ │ │ │ ├── constant_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_null_check.dart.weak.expect │ │ │ │ ├── constant_null_check.dart.weak.modular.expect │ │ │ │ ├── constant_null_check.dart.weak.outline.expect │ │ │ │ ├── constant_null_check.dart.weak.transformed.expect │ │ │ │ ├── constant_null_is.dart │ │ │ │ ├── constant_null_is.dart.strong.expect │ │ │ │ ├── constant_null_is.dart.strong.transformed.expect │ │ │ │ ├── constant_null_is.dart.textual_outline.expect │ │ │ │ ├── constant_null_is.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_null_is.dart.weak.expect │ │ │ │ ├── constant_null_is.dart.weak.modular.expect │ │ │ │ ├── constant_null_is.dart.weak.outline.expect │ │ │ │ ├── constant_null_is.dart.weak.transformed.expect │ │ │ │ ├── constants.dart │ │ │ │ ├── constants.dart.strong.expect │ │ │ │ ├── constants.dart.strong.transformed.expect │ │ │ │ ├── constants.dart.textual_outline.expect │ │ │ │ ├── constants.dart.textual_outline_modelled.expect │ │ │ │ ├── constants.dart.weak.expect │ │ │ │ ├── constants.dart.weak.modular.expect │ │ │ │ ├── constants.dart.weak.outline.expect │ │ │ │ ├── constants.dart.weak.transformed.expect │ │ │ │ ├── constants_lib.dart │ │ │ │ ├── covariant_equals.dart │ │ │ │ ├── covariant_equals.dart.strong.expect │ │ │ │ ├── covariant_equals.dart.strong.transformed.expect │ │ │ │ ├── covariant_equals.dart.textual_outline.expect │ │ │ │ ├── covariant_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_equals.dart.weak.expect │ │ │ │ ├── covariant_equals.dart.weak.modular.expect │ │ │ │ ├── covariant_equals.dart.weak.outline.expect │ │ │ │ ├── covariant_equals.dart.weak.transformed.expect │ │ │ │ ├── covariant_late_field.dart │ │ │ │ ├── covariant_late_field.dart.strong.expect │ │ │ │ ├── covariant_late_field.dart.textual_outline.expect │ │ │ │ ├── covariant_late_field.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_late_field.dart.weak.expect │ │ │ │ ├── covariant_late_field.dart.weak.modular.expect │ │ │ │ ├── covariant_late_field.dart.weak.outline.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart │ │ │ │ ├── covariant_nnbd_top_merge.dart.strong.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.strong.transformed.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.textual_outline.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.weak.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.weak.modular.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.weak.outline.expect │ │ │ │ ├── covariant_nnbd_top_merge.dart.weak.transformed.expect │ │ │ │ ├── definite_assignment_and_completion.dart │ │ │ │ ├── definite_assignment_and_completion.dart.strong.expect │ │ │ │ ├── definite_assignment_and_completion.dart.strong.transformed.expect │ │ │ │ ├── definite_assignment_and_completion.dart.textual_outline.expect │ │ │ │ ├── definite_assignment_and_completion.dart.textual_outline_modelled.expect │ │ │ │ ├── definite_assignment_and_completion.dart.weak.expect │ │ │ │ ├── definite_assignment_and_completion.dart.weak.modular.expect │ │ │ │ ├── definite_assignment_and_completion.dart.weak.outline.expect │ │ │ │ ├── definite_assignment_and_completion.dart.weak.transformed.expect │ │ │ │ ├── definitely_assigned.dart │ │ │ │ ├── definitely_assigned.dart.strong.expect │ │ │ │ ├── definitely_assigned.dart.strong.transformed.expect │ │ │ │ ├── definitely_assigned.dart.textual_outline.expect │ │ │ │ ├── definitely_assigned.dart.textual_outline_modelled.expect │ │ │ │ ├── definitely_assigned.dart.weak.expect │ │ │ │ ├── definitely_assigned.dart.weak.modular.expect │ │ │ │ ├── definitely_assigned.dart.weak.outline.expect │ │ │ │ ├── definitely_assigned.dart.weak.transformed.expect │ │ │ │ ├── definitely_unassigned.dart │ │ │ │ ├── definitely_unassigned.dart.strong.expect │ │ │ │ ├── definitely_unassigned.dart.strong.transformed.expect │ │ │ │ ├── definitely_unassigned.dart.textual_outline.expect │ │ │ │ ├── definitely_unassigned.dart.textual_outline_modelled.expect │ │ │ │ ├── definitely_unassigned.dart.weak.expect │ │ │ │ ├── definitely_unassigned.dart.weak.modular.expect │ │ │ │ ├── definitely_unassigned.dart.weak.outline.expect │ │ │ │ ├── definitely_unassigned.dart.weak.transformed.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.strong.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.strong.transformed.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.textual_outline.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.weak.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.weak.modular.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.weak.outline.expect │ │ │ │ ├── definitely_unassigned_late_local_variables.dart.weak.transformed.expect │ │ │ │ ├── demote_closure_types.dart │ │ │ │ ├── demote_closure_types.dart.strong.expect │ │ │ │ ├── demote_closure_types.dart.strong.transformed.expect │ │ │ │ ├── demote_closure_types.dart.textual_outline.expect │ │ │ │ ├── demote_closure_types.dart.textual_outline_modelled.expect │ │ │ │ ├── demote_closure_types.dart.weak.expect │ │ │ │ ├── demote_closure_types.dart.weak.modular.expect │ │ │ │ ├── demote_closure_types.dart.weak.outline.expect │ │ │ │ ├── demote_closure_types.dart.weak.transformed.expect │ │ │ │ ├── duplicate_import.dart │ │ │ │ ├── duplicate_import.dart.strong.expect │ │ │ │ ├── duplicate_import.dart.strong.transformed.expect │ │ │ │ ├── duplicate_import.dart.textual_outline.expect │ │ │ │ ├── duplicate_import.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicate_import.dart.weak.expect │ │ │ │ ├── duplicate_import.dart.weak.modular.expect │ │ │ │ ├── duplicate_import.dart.weak.outline.expect │ │ │ │ ├── duplicate_import.dart.weak.transformed.expect │ │ │ │ ├── duplicate_import_lib1.dart │ │ │ │ ├── duplicate_import_lib2.dart │ │ │ │ ├── duplicates_instance.dart │ │ │ │ ├── duplicates_instance.dart.strong.expect │ │ │ │ ├── duplicates_instance.dart.strong.transformed.expect │ │ │ │ ├── duplicates_instance.dart.textual_outline.expect │ │ │ │ ├── duplicates_instance.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicates_instance.dart.weak.expect │ │ │ │ ├── duplicates_instance.dart.weak.modular.expect │ │ │ │ ├── duplicates_instance.dart.weak.outline.expect │ │ │ │ ├── duplicates_instance.dart.weak.transformed.expect │ │ │ │ ├── duplicates_instance_extension.dart │ │ │ │ ├── duplicates_instance_extension.dart.strong.expect │ │ │ │ ├── duplicates_instance_extension.dart.strong.transformed.expect │ │ │ │ ├── duplicates_instance_extension.dart.textual_outline.expect │ │ │ │ ├── duplicates_instance_extension.dart.weak.expect │ │ │ │ ├── duplicates_instance_extension.dart.weak.modular.expect │ │ │ │ ├── duplicates_instance_extension.dart.weak.outline.expect │ │ │ │ ├── duplicates_instance_extension.dart.weak.transformed.expect │ │ │ │ ├── duplicates_static.dart │ │ │ │ ├── duplicates_static.dart.strong.expect │ │ │ │ ├── duplicates_static.dart.strong.transformed.expect │ │ │ │ ├── duplicates_static.dart.textual_outline.expect │ │ │ │ ├── duplicates_static.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicates_static.dart.weak.expect │ │ │ │ ├── duplicates_static.dart.weak.modular.expect │ │ │ │ ├── duplicates_static.dart.weak.outline.expect │ │ │ │ ├── duplicates_static.dart.weak.transformed.expect │ │ │ │ ├── duplicates_static_extension.dart │ │ │ │ ├── duplicates_static_extension.dart.strong.expect │ │ │ │ ├── duplicates_static_extension.dart.strong.transformed.expect │ │ │ │ ├── duplicates_static_extension.dart.textual_outline.expect │ │ │ │ ├── duplicates_static_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicates_static_extension.dart.weak.expect │ │ │ │ ├── duplicates_static_extension.dart.weak.modular.expect │ │ │ │ ├── duplicates_static_extension.dart.weak.outline.expect │ │ │ │ ├── duplicates_static_extension.dart.weak.transformed.expect │ │ │ │ ├── duplicates_toplevel.dart │ │ │ │ ├── duplicates_toplevel.dart.strong.expect │ │ │ │ ├── duplicates_toplevel.dart.strong.transformed.expect │ │ │ │ ├── duplicates_toplevel.dart.textual_outline.expect │ │ │ │ ├── duplicates_toplevel.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicates_toplevel.dart.weak.expect │ │ │ │ ├── duplicates_toplevel.dart.weak.modular.expect │ │ │ │ ├── duplicates_toplevel.dart.weak.outline.expect │ │ │ │ ├── duplicates_toplevel.dart.weak.transformed.expect │ │ │ │ ├── dynamic_object_call.dart │ │ │ │ ├── dynamic_object_call.dart.strong.expect │ │ │ │ ├── dynamic_object_call.dart.strong.transformed.expect │ │ │ │ ├── dynamic_object_call.dart.textual_outline.expect │ │ │ │ ├── dynamic_object_call.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_object_call.dart.weak.expect │ │ │ │ ├── dynamic_object_call.dart.weak.modular.expect │ │ │ │ ├── dynamic_object_call.dart.weak.outline.expect │ │ │ │ ├── dynamic_object_call.dart.weak.transformed.expect │ │ │ │ ├── export_main_declaration.dart │ │ │ │ ├── export_main_declaration.dart.strong.expect │ │ │ │ ├── export_main_declaration.dart.strong.transformed.expect │ │ │ │ ├── export_main_declaration.dart.textual_outline.expect │ │ │ │ ├── export_main_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── export_main_declaration.dart.weak.expect │ │ │ │ ├── export_main_declaration.dart.weak.modular.expect │ │ │ │ ├── export_main_declaration.dart.weak.outline.expect │ │ │ │ ├── export_main_declaration.dart.weak.transformed.expect │ │ │ │ ├── export_main_declaration_class_lib.dart │ │ │ │ ├── export_main_declaration_extension_lib.dart │ │ │ │ ├── export_main_declaration_field_lib.dart │ │ │ │ ├── export_main_declaration_getter_lib.dart │ │ │ │ ├── export_main_declaration_method_extra_optional_parameters_lib.dart │ │ │ │ ├── export_main_declaration_method_named_parameters_lib.dart │ │ │ │ ├── export_main_declaration_method_one_optional_parameter_lib.dart │ │ │ │ ├── export_main_declaration_method_one_parameter_lib.dart │ │ │ │ ├── export_main_declaration_method_one_required_optional_lib.dart │ │ │ │ ├── export_main_declaration_method_required_named_parameters_lib.dart │ │ │ │ ├── export_main_declaration_method_too_many_parameters_lib.dart │ │ │ │ ├── export_main_declaration_method_two_optional_parameters_lib.dart │ │ │ │ ├── export_main_declaration_method_two_parameters_lib.dart │ │ │ │ ├── export_main_declaration_method_wrong_parameter_type_lib.dart │ │ │ │ ├── export_main_declaration_setter_lib.dart │ │ │ │ ├── export_main_declaration_typedef_lib.dart │ │ │ │ ├── extension_bounds.dart │ │ │ │ ├── extension_bounds.dart.strong.expect │ │ │ │ ├── extension_bounds.dart.strong.transformed.expect │ │ │ │ ├── extension_bounds.dart.textual_outline.expect │ │ │ │ ├── extension_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_bounds.dart.weak.expect │ │ │ │ ├── extension_bounds.dart.weak.modular.expect │ │ │ │ ├── extension_bounds.dart.weak.outline.expect │ │ │ │ ├── extension_bounds.dart.weak.transformed.expect │ │ │ │ ├── extension_never.dart │ │ │ │ ├── extension_never.dart.strong.expect │ │ │ │ ├── extension_never.dart.strong.transformed.expect │ │ │ │ ├── extension_never.dart.textual_outline.expect │ │ │ │ ├── extension_never.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_never.dart.weak.expect │ │ │ │ ├── extension_never.dart.weak.modular.expect │ │ │ │ ├── extension_never.dart.weak.outline.expect │ │ │ │ ├── extension_never.dart.weak.transformed.expect │ │ │ │ ├── extension_type_variable_bound.dart │ │ │ │ ├── extension_type_variable_bound.dart.strong.expect │ │ │ │ ├── extension_type_variable_bound.dart.strong.transformed.expect │ │ │ │ ├── extension_type_variable_bound.dart.textual_outline.expect │ │ │ │ ├── extension_type_variable_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_type_variable_bound.dart.weak.expect │ │ │ │ ├── extension_type_variable_bound.dart.weak.modular.expect │ │ │ │ ├── extension_type_variable_bound.dart.weak.outline.expect │ │ │ │ ├── extension_type_variable_bound.dart.weak.transformed.expect │ │ │ │ ├── external_field_errors.dart │ │ │ │ ├── external_field_errors.dart.strong.expect │ │ │ │ ├── external_field_errors.dart.strong.transformed.expect │ │ │ │ ├── external_field_errors.dart.textual_outline.expect │ │ │ │ ├── external_field_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── external_field_errors.dart.weak.expect │ │ │ │ ├── external_field_errors.dart.weak.modular.expect │ │ │ │ ├── external_field_errors.dart.weak.outline.expect │ │ │ │ ├── external_field_errors.dart.weak.transformed.expect │ │ │ │ ├── external_fields.dart │ │ │ │ ├── external_fields.dart.strong.expect │ │ │ │ ├── external_fields.dart.strong.transformed.expect │ │ │ │ ├── external_fields.dart.textual_outline.expect │ │ │ │ ├── external_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── external_fields.dart.weak.expect │ │ │ │ ├── external_fields.dart.weak.modular.expect │ │ │ │ ├── external_fields.dart.weak.outline.expect │ │ │ │ ├── external_fields.dart.weak.transformed.expect │ │ │ │ ├── external_fields_spec.dart │ │ │ │ ├── external_fields_spec.dart.strong.expect │ │ │ │ ├── external_fields_spec.dart.strong.transformed.expect │ │ │ │ ├── external_fields_spec.dart.textual_outline.expect │ │ │ │ ├── external_fields_spec.dart.textual_outline_modelled.expect │ │ │ │ ├── external_fields_spec.dart.weak.expect │ │ │ │ ├── external_fields_spec.dart.weak.modular.expect │ │ │ │ ├── external_fields_spec.dart.weak.outline.expect │ │ │ │ ├── external_fields_spec.dart.weak.transformed.expect │ │ │ │ ├── ffi_sample.dart │ │ │ │ ├── ffi_sample.dart.strong.expect │ │ │ │ ├── ffi_sample.dart.strong.transformed.expect │ │ │ │ ├── ffi_sample.dart.textual_outline.expect │ │ │ │ ├── ffi_sample.dart.textual_outline_modelled.expect │ │ │ │ ├── ffi_sample.dart.weak.expect │ │ │ │ ├── ffi_sample.dart.weak.modular.expect │ │ │ │ ├── ffi_sample.dart.weak.outline.expect │ │ │ │ ├── ffi_sample.dart.weak.transformed.expect │ │ │ │ ├── ffi_struct_inline_array.dart │ │ │ │ ├── ffi_struct_inline_array.dart.strong.expect │ │ │ │ ├── ffi_struct_inline_array.dart.strong.transformed.expect │ │ │ │ ├── ffi_struct_inline_array.dart.textual_outline.expect │ │ │ │ ├── ffi_struct_inline_array.dart.textual_outline_modelled.expect │ │ │ │ ├── ffi_struct_inline_array.dart.weak.expect │ │ │ │ ├── ffi_struct_inline_array.dart.weak.modular.expect │ │ │ │ ├── ffi_struct_inline_array.dart.weak.outline.expect │ │ │ │ ├── ffi_struct_inline_array.dart.weak.transformed.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.strong.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.strong.transformed.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.textual_outline.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.textual_outline_modelled.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.weak.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.weak.modular.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.weak.outline.expect │ │ │ │ ├── ffi_struct_inline_array_multi_dimensional.dart.weak.transformed.expect │ │ │ │ ├── field_setter_conflict.dart │ │ │ │ ├── field_setter_conflict.dart.strong.expect │ │ │ │ ├── field_setter_conflict.dart.strong.transformed.expect │ │ │ │ ├── field_setter_conflict.dart.textual_outline.expect │ │ │ │ ├── field_setter_conflict.dart.textual_outline_modelled.expect │ │ │ │ ├── field_setter_conflict.dart.weak.expect │ │ │ │ ├── field_setter_conflict.dart.weak.modular.expect │ │ │ │ ├── field_setter_conflict.dart.weak.outline.expect │ │ │ │ ├── field_setter_conflict.dart.weak.transformed.expect │ │ │ │ ├── field_setter_conflict_part.dart │ │ │ │ ├── field_vs_setter.dart │ │ │ │ ├── field_vs_setter.dart.strong.expect │ │ │ │ ├── field_vs_setter.dart.strong.transformed.expect │ │ │ │ ├── field_vs_setter.dart.textual_outline.expect │ │ │ │ ├── field_vs_setter.dart.weak.expect │ │ │ │ ├── field_vs_setter.dart.weak.modular.expect │ │ │ │ ├── field_vs_setter.dart.weak.outline.expect │ │ │ │ ├── field_vs_setter.dart.weak.transformed.expect │ │ │ │ ├── flutter_issue64155.dart │ │ │ │ ├── flutter_issue64155.dart.strong.expect │ │ │ │ ├── flutter_issue64155.dart.strong.transformed.expect │ │ │ │ ├── flutter_issue64155.dart.textual_outline.expect │ │ │ │ ├── flutter_issue64155.dart.textual_outline_modelled.expect │ │ │ │ ├── flutter_issue64155.dart.weak.expect │ │ │ │ ├── flutter_issue64155.dart.weak.modular.expect │ │ │ │ ├── flutter_issue64155.dart.weak.outline.expect │ │ │ │ ├── flutter_issue64155.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── forbidden_supers.dart │ │ │ │ ├── forbidden_supers.dart.strong.expect │ │ │ │ ├── forbidden_supers.dart.strong.transformed.expect │ │ │ │ ├── forbidden_supers.dart.textual_outline.expect │ │ │ │ ├── forbidden_supers.dart.weak.expect │ │ │ │ ├── forbidden_supers.dart.weak.modular.expect │ │ │ │ ├── forbidden_supers.dart.weak.outline.expect │ │ │ │ ├── forbidden_supers.dart.weak.transformed.expect │ │ │ │ ├── forin.dart │ │ │ │ ├── forin.dart.strong.expect │ │ │ │ ├── forin.dart.strong.transformed.expect │ │ │ │ ├── forin.dart.textual_outline.expect │ │ │ │ ├── forin.dart.textual_outline_modelled.expect │ │ │ │ ├── forin.dart.weak.expect │ │ │ │ ├── forin.dart.weak.modular.expect │ │ │ │ ├── forin.dart.weak.outline.expect │ │ │ │ ├── forin.dart.weak.transformed.expect │ │ │ │ ├── from_agnostic │ │ │ │ │ ├── from_agnostic.dart │ │ │ │ │ ├── from_agnostic.dart.strong.expect │ │ │ │ │ ├── from_agnostic.dart.strong.transformed.expect │ │ │ │ │ ├── from_agnostic.dart.textual_outline.expect │ │ │ │ │ ├── from_agnostic.dart.textual_outline_modelled.expect │ │ │ │ │ ├── from_agnostic.dart.weak.expect │ │ │ │ │ ├── from_agnostic.dart.weak.modular.expect │ │ │ │ │ ├── from_agnostic.dart.weak.outline.expect │ │ │ │ │ ├── from_agnostic.dart.weak.transformed.expect │ │ │ │ │ ├── from_agnostic_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── function_types.dart │ │ │ │ ├── function_types.dart.strong.expect │ │ │ │ ├── function_types.dart.strong.transformed.expect │ │ │ │ ├── function_types.dart.textual_outline.expect │ │ │ │ ├── function_types.dart.textual_outline_modelled.expect │ │ │ │ ├── function_types.dart.weak.expect │ │ │ │ ├── function_types.dart.weak.modular.expect │ │ │ │ ├── function_types.dart.weak.outline.expect │ │ │ │ ├── function_types.dart.weak.transformed.expect │ │ │ │ ├── future_or_variables.dart │ │ │ │ ├── future_or_variables.dart.strong.expect │ │ │ │ ├── future_or_variables.dart.strong.transformed.expect │ │ │ │ ├── future_or_variables.dart.textual_outline.expect │ │ │ │ ├── future_or_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── future_or_variables.dart.weak.expect │ │ │ │ ├── future_or_variables.dart.weak.modular.expect │ │ │ │ ├── future_or_variables.dart.weak.outline.expect │ │ │ │ ├── future_or_variables.dart.weak.transformed.expect │ │ │ │ ├── getter_vs_setter_type.dart │ │ │ │ ├── getter_vs_setter_type.dart.strong.expect │ │ │ │ ├── getter_vs_setter_type.dart.textual_outline.expect │ │ │ │ ├── getter_vs_setter_type.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.modular.expect │ │ │ │ ├── getter_vs_setter_type.dart.weak.outline.expect │ │ │ │ ├── getter_vs_setter_type_late.dart │ │ │ │ ├── getter_vs_setter_type_late.dart.strong.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.strong.transformed.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.textual_outline.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.weak.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.weak.modular.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.weak.outline.expect │ │ │ │ ├── getter_vs_setter_type_late.dart.weak.transformed.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.strong.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.strong.transformed.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.textual_outline.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.textual_outline_modelled.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.weak.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.weak.modular.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.weak.outline.expect │ │ │ │ ├── getter_vs_setter_type_nnbd.dart.weak.transformed.expect │ │ │ │ ├── infer_from_late_variable.dart │ │ │ │ ├── infer_from_late_variable.dart.strong.expect │ │ │ │ ├── infer_from_late_variable.dart.strong.transformed.expect │ │ │ │ ├── infer_from_late_variable.dart.textual_outline.expect │ │ │ │ ├── infer_from_late_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.modular.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.outline.expect │ │ │ │ ├── infer_from_late_variable.dart.weak.transformed.expect │ │ │ │ ├── infer_from_promoted.dart │ │ │ │ ├── infer_from_promoted.dart.strong.expect │ │ │ │ ├── infer_from_promoted.dart.strong.transformed.expect │ │ │ │ ├── infer_from_promoted.dart.textual_outline.expect │ │ │ │ ├── infer_from_promoted.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_promoted.dart.weak.expect │ │ │ │ ├── infer_from_promoted.dart.weak.modular.expect │ │ │ │ ├── infer_from_promoted.dart.weak.outline.expect │ │ │ │ ├── infer_from_promoted.dart.weak.transformed.expect │ │ │ │ ├── infer_if_null.dart │ │ │ │ ├── infer_if_null.dart.strong.expect │ │ │ │ ├── infer_if_null.dart.strong.transformed.expect │ │ │ │ ├── infer_if_null.dart.textual_outline.expect │ │ │ │ ├── infer_if_null.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_if_null.dart.weak.expect │ │ │ │ ├── infer_if_null.dart.weak.modular.expect │ │ │ │ ├── infer_if_null.dart.weak.outline.expect │ │ │ │ ├── infer_if_null.dart.weak.transformed.expect │ │ │ │ ├── infer_method_types.dart │ │ │ │ ├── infer_method_types.dart.strong.expect │ │ │ │ ├── infer_method_types.dart.strong.transformed.expect │ │ │ │ ├── infer_method_types.dart.textual_outline.expect │ │ │ │ ├── infer_method_types.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_method_types.dart.weak.expect │ │ │ │ ├── infer_method_types.dart.weak.modular.expect │ │ │ │ ├── infer_method_types.dart.weak.outline.expect │ │ │ │ ├── infer_method_types.dart.weak.transformed.expect │ │ │ │ ├── infer_object_from_dynamic.dart │ │ │ │ ├── infer_object_from_dynamic.dart.strong.expect │ │ │ │ ├── infer_object_from_dynamic.dart.strong.transformed.expect │ │ │ │ ├── infer_object_from_dynamic.dart.textual_outline.expect │ │ │ │ ├── infer_object_from_dynamic.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_object_from_dynamic.dart.weak.expect │ │ │ │ ├── infer_object_from_dynamic.dart.weak.modular.expect │ │ │ │ ├── infer_object_from_dynamic.dart.weak.outline.expect │ │ │ │ ├── infer_object_from_dynamic.dart.weak.transformed.expect │ │ │ │ ├── injected_late_field_checks │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── instance_duplicates.dart │ │ │ │ ├── instance_duplicates.dart.strong.expect │ │ │ │ ├── instance_duplicates.dart.strong.transformed.expect │ │ │ │ ├── instance_duplicates.dart.textual_outline.expect │ │ │ │ ├── instance_duplicates.dart.textual_outline_modelled.expect │ │ │ │ ├── instance_duplicates.dart.weak.expect │ │ │ │ ├── instance_duplicates.dart.weak.modular.expect │ │ │ │ ├── instance_duplicates.dart.weak.outline.expect │ │ │ │ ├── instance_duplicates.dart.weak.transformed.expect │ │ │ │ ├── intersection_types.dart │ │ │ │ ├── intersection_types.dart.strong.expect │ │ │ │ ├── intersection_types.dart.strong.transformed.expect │ │ │ │ ├── intersection_types.dart.textual_outline.expect │ │ │ │ ├── intersection_types.dart.textual_outline_modelled.expect │ │ │ │ ├── intersection_types.dart.weak.expect │ │ │ │ ├── intersection_types.dart.weak.modular.expect │ │ │ │ ├── intersection_types.dart.weak.outline.expect │ │ │ │ ├── intersection_types.dart.weak.transformed.expect │ │ │ │ ├── invalid_combined_member_signature.dart │ │ │ │ ├── invalid_combined_member_signature.dart.strong.expect │ │ │ │ ├── invalid_combined_member_signature.dart.strong.transformed.expect │ │ │ │ ├── invalid_combined_member_signature.dart.textual_outline.expect │ │ │ │ ├── invalid_combined_member_signature.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_combined_member_signature.dart.weak.expect │ │ │ │ ├── invalid_combined_member_signature.dart.weak.modular.expect │ │ │ │ ├── invalid_combined_member_signature.dart.weak.outline.expect │ │ │ │ ├── invalid_combined_member_signature.dart.weak.transformed.expect │ │ │ │ ├── issue34803.dart │ │ │ │ ├── issue34803.dart.strong.expect │ │ │ │ ├── issue34803.dart.strong.transformed.expect │ │ │ │ ├── issue34803.dart.textual_outline.expect │ │ │ │ ├── issue34803.dart.textual_outline_modelled.expect │ │ │ │ ├── issue34803.dart.weak.expect │ │ │ │ ├── issue34803.dart.weak.modular.expect │ │ │ │ ├── issue34803.dart.weak.outline.expect │ │ │ │ ├── issue34803.dart.weak.transformed.expect │ │ │ │ ├── issue39659.dart │ │ │ │ ├── issue39659.dart.strong.expect │ │ │ │ ├── issue39659.dart.strong.transformed.expect │ │ │ │ ├── issue39659.dart.textual_outline.expect │ │ │ │ ├── issue39659.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39659.dart.weak.expect │ │ │ │ ├── issue39659.dart.weak.modular.expect │ │ │ │ ├── issue39659.dart.weak.outline.expect │ │ │ │ ├── issue39659.dart.weak.transformed.expect │ │ │ │ ├── issue39822.dart │ │ │ │ ├── issue39822.dart.strong.expect │ │ │ │ ├── issue39822.dart.strong.transformed.expect │ │ │ │ ├── issue39822.dart.textual_outline.expect │ │ │ │ ├── issue39822.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39822.dart.weak.expect │ │ │ │ ├── issue39822.dart.weak.modular.expect │ │ │ │ ├── issue39822.dart.weak.outline.expect │ │ │ │ ├── issue39822.dart.weak.transformed.expect │ │ │ │ ├── issue40093.dart │ │ │ │ ├── issue40093.dart.strong.expect │ │ │ │ ├── issue40093.dart.strong.transformed.expect │ │ │ │ ├── issue40093.dart.textual_outline.expect │ │ │ │ ├── issue40093.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40093.dart.weak.expect │ │ │ │ ├── issue40093.dart.weak.modular.expect │ │ │ │ ├── issue40093.dart.weak.outline.expect │ │ │ │ ├── issue40093.dart.weak.transformed.expect │ │ │ │ ├── issue40134.dart │ │ │ │ ├── issue40134.dart.strong.expect │ │ │ │ ├── issue40134.dart.strong.transformed.expect │ │ │ │ ├── issue40134.dart.textual_outline.expect │ │ │ │ ├── issue40134.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40134.dart.weak.expect │ │ │ │ ├── issue40134.dart.weak.modular.expect │ │ │ │ ├── issue40134.dart.weak.outline.expect │ │ │ │ ├── issue40134.dart.weak.transformed.expect │ │ │ │ ├── issue40600.dart │ │ │ │ ├── issue40600.dart.strong.expect │ │ │ │ ├── issue40600.dart.strong.transformed.expect │ │ │ │ ├── issue40600.dart.textual_outline.expect │ │ │ │ ├── issue40600.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40600.dart.weak.expect │ │ │ │ ├── issue40600.dart.weak.modular.expect │ │ │ │ ├── issue40600.dart.weak.outline.expect │ │ │ │ ├── issue40600.dart.weak.transformed.expect │ │ │ │ ├── issue40601.dart │ │ │ │ ├── issue40601.dart.strong.expect │ │ │ │ ├── issue40601.dart.strong.transformed.expect │ │ │ │ ├── issue40601.dart.textual_outline.expect │ │ │ │ ├── issue40601.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40601.dart.weak.expect │ │ │ │ ├── issue40601.dart.weak.modular.expect │ │ │ │ ├── issue40601.dart.weak.outline.expect │ │ │ │ ├── issue40601.dart.weak.transformed.expect │ │ │ │ ├── issue40805.dart │ │ │ │ ├── issue40805.dart.strong.expect │ │ │ │ ├── issue40805.dart.strong.transformed.expect │ │ │ │ ├── issue40805.dart.textual_outline.expect │ │ │ │ ├── issue40805.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40805.dart.weak.expect │ │ │ │ ├── issue40805.dart.weak.modular.expect │ │ │ │ ├── issue40805.dart.weak.outline.expect │ │ │ │ ├── issue40805.dart.weak.transformed.expect │ │ │ │ ├── issue40945.dart │ │ │ │ ├── issue40945.dart.strong.expect │ │ │ │ ├── issue40945.dart.strong.transformed.expect │ │ │ │ ├── issue40945.dart.textual_outline.expect │ │ │ │ ├── issue40945.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40945.dart.weak.expect │ │ │ │ ├── issue40945.dart.weak.modular.expect │ │ │ │ ├── issue40945.dart.weak.outline.expect │ │ │ │ ├── issue40945.dart.weak.transformed.expect │ │ │ │ ├── issue40951.dart │ │ │ │ ├── issue40951.dart.strong.expect │ │ │ │ ├── issue40951.dart.strong.transformed.expect │ │ │ │ ├── issue40951.dart.textual_outline.expect │ │ │ │ ├── issue40951.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40951.dart.weak.expect │ │ │ │ ├── issue40951.dart.weak.modular.expect │ │ │ │ ├── issue40951.dart.weak.outline.expect │ │ │ │ ├── issue40951.dart.weak.transformed.expect │ │ │ │ ├── issue40954.dart │ │ │ │ ├── issue40954.dart.strong.expect │ │ │ │ ├── issue40954.dart.strong.transformed.expect │ │ │ │ ├── issue40954.dart.textual_outline.expect │ │ │ │ ├── issue40954.dart.textual_outline_modelled.expect │ │ │ │ ├── issue40954.dart.weak.expect │ │ │ │ ├── issue40954.dart.weak.modular.expect │ │ │ │ ├── issue40954.dart.weak.outline.expect │ │ │ │ ├── issue40954.dart.weak.transformed.expect │ │ │ │ ├── issue41102.dart │ │ │ │ ├── issue41102.dart.strong.expect │ │ │ │ ├── issue41102.dart.strong.transformed.expect │ │ │ │ ├── issue41102.dart.textual_outline.expect │ │ │ │ ├── issue41102.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41102.dart.weak.expect │ │ │ │ ├── issue41102.dart.weak.modular.expect │ │ │ │ ├── issue41102.dart.weak.outline.expect │ │ │ │ ├── issue41102.dart.weak.transformed.expect │ │ │ │ ├── issue41103.dart │ │ │ │ ├── issue41103.dart.strong.expect │ │ │ │ ├── issue41103.dart.strong.transformed.expect │ │ │ │ ├── issue41103.dart.textual_outline.expect │ │ │ │ ├── issue41103.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41103.dart.weak.expect │ │ │ │ ├── issue41103.dart.weak.modular.expect │ │ │ │ ├── issue41103.dart.weak.outline.expect │ │ │ │ ├── issue41103.dart.weak.transformed.expect │ │ │ │ ├── issue41108.dart │ │ │ │ ├── issue41108.dart.strong.expect │ │ │ │ ├── issue41108.dart.strong.transformed.expect │ │ │ │ ├── issue41108.dart.textual_outline.expect │ │ │ │ ├── issue41108.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41108.dart.weak.expect │ │ │ │ ├── issue41108.dart.weak.modular.expect │ │ │ │ ├── issue41108.dart.weak.outline.expect │ │ │ │ ├── issue41108.dart.weak.transformed.expect │ │ │ │ ├── issue41114.dart │ │ │ │ ├── issue41114.dart.strong.expect │ │ │ │ ├── issue41114.dart.strong.transformed.expect │ │ │ │ ├── issue41114.dart.textual_outline.expect │ │ │ │ ├── issue41114.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41114.dart.weak.expect │ │ │ │ ├── issue41114.dart.weak.modular.expect │ │ │ │ ├── issue41114.dart.weak.outline.expect │ │ │ │ ├── issue41114.dart.weak.transformed.expect │ │ │ │ ├── issue41156.dart │ │ │ │ ├── issue41156.dart.strong.expect │ │ │ │ ├── issue41156.dart.strong.transformed.expect │ │ │ │ ├── issue41156.dart.textual_outline.expect │ │ │ │ ├── issue41156.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41156.dart.weak.expect │ │ │ │ ├── issue41156.dart.weak.modular.expect │ │ │ │ ├── issue41156.dart.weak.outline.expect │ │ │ │ ├── issue41156.dart.weak.transformed.expect │ │ │ │ ├── issue41273.dart │ │ │ │ ├── issue41273.dart.strong.expect │ │ │ │ ├── issue41273.dart.strong.transformed.expect │ │ │ │ ├── issue41273.dart.textual_outline.expect │ │ │ │ ├── issue41273.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41273.dart.weak.expect │ │ │ │ ├── issue41273.dart.weak.modular.expect │ │ │ │ ├── issue41273.dart.weak.outline.expect │ │ │ │ ├── issue41273.dart.weak.transformed.expect │ │ │ │ ├── issue41349.dart │ │ │ │ ├── issue41349.dart.strong.expect │ │ │ │ ├── issue41349.dart.strong.transformed.expect │ │ │ │ ├── issue41349.dart.textual_outline.expect │ │ │ │ ├── issue41349.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41349.dart.weak.expect │ │ │ │ ├── issue41349.dart.weak.modular.expect │ │ │ │ ├── issue41349.dart.weak.outline.expect │ │ │ │ ├── issue41349.dart.weak.transformed.expect │ │ │ │ ├── issue41386.dart │ │ │ │ ├── issue41386.dart.strong.expect │ │ │ │ ├── issue41386.dart.strong.transformed.expect │ │ │ │ ├── issue41386.dart.textual_outline.expect │ │ │ │ ├── issue41386.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41386.dart.weak.expect │ │ │ │ ├── issue41386.dart.weak.modular.expect │ │ │ │ ├── issue41386.dart.weak.outline.expect │ │ │ │ ├── issue41386.dart.weak.transformed.expect │ │ │ │ ├── issue41386b.dart │ │ │ │ ├── issue41386b.dart.strong.expect │ │ │ │ ├── issue41386b.dart.strong.transformed.expect │ │ │ │ ├── issue41386b.dart.textual_outline.expect │ │ │ │ ├── issue41386b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41386b.dart.weak.expect │ │ │ │ ├── issue41386b.dart.weak.modular.expect │ │ │ │ ├── issue41386b.dart.weak.outline.expect │ │ │ │ ├── issue41386b.dart.weak.transformed.expect │ │ │ │ ├── issue41415.dart │ │ │ │ ├── issue41415.dart.strong.expect │ │ │ │ ├── issue41415.dart.strong.transformed.expect │ │ │ │ ├── issue41415.dart.textual_outline.expect │ │ │ │ ├── issue41415.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41415.dart.weak.expect │ │ │ │ ├── issue41415.dart.weak.modular.expect │ │ │ │ ├── issue41415.dart.weak.outline.expect │ │ │ │ ├── issue41415.dart.weak.transformed.expect │ │ │ │ ├── issue41437a.dart │ │ │ │ ├── issue41437a.dart.strong.expect │ │ │ │ ├── issue41437a.dart.strong.transformed.expect │ │ │ │ ├── issue41437a.dart.textual_outline.expect │ │ │ │ ├── issue41437a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41437a.dart.weak.expect │ │ │ │ ├── issue41437a.dart.weak.modular.expect │ │ │ │ ├── issue41437a.dart.weak.outline.expect │ │ │ │ ├── issue41437a.dart.weak.transformed.expect │ │ │ │ ├── issue41437b.dart │ │ │ │ ├── issue41437b.dart.strong.expect │ │ │ │ ├── issue41437b.dart.strong.transformed.expect │ │ │ │ ├── issue41437b.dart.textual_outline.expect │ │ │ │ ├── issue41437b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41437b.dart.weak.expect │ │ │ │ ├── issue41437b.dart.weak.modular.expect │ │ │ │ ├── issue41437b.dart.weak.outline.expect │ │ │ │ ├── issue41437b.dart.weak.transformed.expect │ │ │ │ ├── issue41437c.dart │ │ │ │ ├── issue41437c.dart.strong.expect │ │ │ │ ├── issue41437c.dart.strong.transformed.expect │ │ │ │ ├── issue41437c.dart.textual_outline.expect │ │ │ │ ├── issue41437c.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41437c.dart.weak.expect │ │ │ │ ├── issue41437c.dart.weak.modular.expect │ │ │ │ ├── issue41437c.dart.weak.outline.expect │ │ │ │ ├── issue41437c.dart.weak.transformed.expect │ │ │ │ ├── issue41495.dart │ │ │ │ ├── issue41495.dart.strong.expect │ │ │ │ ├── issue41495.dart.strong.transformed.expect │ │ │ │ ├── issue41495.dart.textual_outline.expect │ │ │ │ ├── issue41495.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41495.dart.weak.expect │ │ │ │ ├── issue41495.dart.weak.modular.expect │ │ │ │ ├── issue41495.dart.weak.outline.expect │ │ │ │ ├── issue41495.dart.weak.transformed.expect │ │ │ │ ├── issue41520.dart │ │ │ │ ├── issue41520.dart.strong.expect │ │ │ │ ├── issue41520.dart.strong.transformed.expect │ │ │ │ ├── issue41520.dart.textual_outline.expect │ │ │ │ ├── issue41520.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41520.dart.weak.expect │ │ │ │ ├── issue41520.dart.weak.modular.expect │ │ │ │ ├── issue41520.dart.weak.outline.expect │ │ │ │ ├── issue41520.dart.weak.transformed.expect │ │ │ │ ├── issue41602.dart │ │ │ │ ├── issue41602.dart.strong.expect │ │ │ │ ├── issue41602.dart.strong.transformed.expect │ │ │ │ ├── issue41602.dart.textual_outline.expect │ │ │ │ ├── issue41602.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41602.dart.weak.expect │ │ │ │ ├── issue41602.dart.weak.modular.expect │ │ │ │ ├── issue41602.dart.weak.outline.expect │ │ │ │ ├── issue41602.dart.weak.transformed.expect │ │ │ │ ├── issue41657.dart │ │ │ │ ├── issue41657.dart.strong.expect │ │ │ │ ├── issue41657.dart.strong.transformed.expect │ │ │ │ ├── issue41657.dart.textual_outline.expect │ │ │ │ ├── issue41657.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41657.dart.weak.expect │ │ │ │ ├── issue41657.dart.weak.modular.expect │ │ │ │ ├── issue41657.dart.weak.outline.expect │ │ │ │ ├── issue41657.dart.weak.transformed.expect │ │ │ │ ├── issue41697.dart │ │ │ │ ├── issue41697.dart.strong.expect │ │ │ │ ├── issue41697.dart.strong.transformed.expect │ │ │ │ ├── issue41697.dart.textual_outline.expect │ │ │ │ ├── issue41697.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41697.dart.weak.expect │ │ │ │ ├── issue41697.dart.weak.modular.expect │ │ │ │ ├── issue41697.dart.weak.outline.expect │ │ │ │ ├── issue41697.dart.weak.transformed.expect │ │ │ │ ├── issue41697b.dart │ │ │ │ ├── issue41697b.dart.strong.expect │ │ │ │ ├── issue41697b.dart.strong.transformed.expect │ │ │ │ ├── issue41697b.dart.textual_outline.expect │ │ │ │ ├── issue41697b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41697b.dart.weak.expect │ │ │ │ ├── issue41697b.dart.weak.modular.expect │ │ │ │ ├── issue41697b.dart.weak.outline.expect │ │ │ │ ├── issue41697b.dart.weak.transformed.expect │ │ │ │ ├── issue41700a.dart │ │ │ │ ├── issue41700a.dart.strong.expect │ │ │ │ ├── issue41700a.dart.strong.transformed.expect │ │ │ │ ├── issue41700a.dart.textual_outline.expect │ │ │ │ ├── issue41700a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41700a.dart.weak.expect │ │ │ │ ├── issue41700a.dart.weak.modular.expect │ │ │ │ ├── issue41700a.dart.weak.outline.expect │ │ │ │ ├── issue41700a.dart.weak.transformed.expect │ │ │ │ ├── issue41700b.dart │ │ │ │ ├── issue41700b.dart.strong.expect │ │ │ │ ├── issue41700b.dart.strong.transformed.expect │ │ │ │ ├── issue41700b.dart.textual_outline.expect │ │ │ │ ├── issue41700b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41700b.dart.weak.expect │ │ │ │ ├── issue41700b.dart.weak.modular.expect │ │ │ │ ├── issue41700b.dart.weak.outline.expect │ │ │ │ ├── issue41700b.dart.weak.transformed.expect │ │ │ │ ├── issue41952.dart │ │ │ │ ├── issue41952.dart.strong.expect │ │ │ │ ├── issue41952.dart.strong.transformed.expect │ │ │ │ ├── issue41952.dart.textual_outline.expect │ │ │ │ ├── issue41952.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41952.dart.weak.expect │ │ │ │ ├── issue41952.dart.weak.modular.expect │ │ │ │ ├── issue41952.dart.weak.outline.expect │ │ │ │ ├── issue41952.dart.weak.transformed.expect │ │ │ │ ├── issue42089.dart │ │ │ │ ├── issue42089.dart.strong.expect │ │ │ │ ├── issue42089.dart.strong.transformed.expect │ │ │ │ ├── issue42089.dart.textual_outline.expect │ │ │ │ ├── issue42089.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42089.dart.weak.expect │ │ │ │ ├── issue42089.dart.weak.modular.expect │ │ │ │ ├── issue42089.dart.weak.outline.expect │ │ │ │ ├── issue42089.dart.weak.transformed.expect │ │ │ │ ├── issue42143.dart │ │ │ │ ├── issue42143.dart.strong.expect │ │ │ │ ├── issue42143.dart.strong.transformed.expect │ │ │ │ ├── issue42143.dart.textual_outline.expect │ │ │ │ ├── issue42143.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42143.dart.weak.expect │ │ │ │ ├── issue42143.dart.weak.modular.expect │ │ │ │ ├── issue42143.dart.weak.outline.expect │ │ │ │ ├── issue42143.dart.weak.transformed.expect │ │ │ │ ├── issue42199.dart │ │ │ │ ├── issue42199.dart.strong.expect │ │ │ │ ├── issue42199.dart.strong.transformed.expect │ │ │ │ ├── issue42199.dart.textual_outline.expect │ │ │ │ ├── issue42199.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42199.dart.weak.expect │ │ │ │ ├── issue42199.dart.weak.modular.expect │ │ │ │ ├── issue42199.dart.weak.outline.expect │ │ │ │ ├── issue42199.dart.weak.transformed.expect │ │ │ │ ├── issue42362.dart │ │ │ │ ├── issue42362.dart.strong.expect │ │ │ │ ├── issue42362.dart.strong.transformed.expect │ │ │ │ ├── issue42362.dart.textual_outline.expect │ │ │ │ ├── issue42362.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42362.dart.weak.expect │ │ │ │ ├── issue42362.dart.weak.modular.expect │ │ │ │ ├── issue42362.dart.weak.outline.expect │ │ │ │ ├── issue42362.dart.weak.transformed.expect │ │ │ │ ├── issue42429.dart │ │ │ │ ├── issue42429.dart.strong.expect │ │ │ │ ├── issue42429.dart.strong.transformed.expect │ │ │ │ ├── issue42429.dart.textual_outline.expect │ │ │ │ ├── issue42429.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42429.dart.weak.expect │ │ │ │ ├── issue42429.dart.weak.modular.expect │ │ │ │ ├── issue42429.dart.weak.outline.expect │ │ │ │ ├── issue42429.dart.weak.transformed.expect │ │ │ │ ├── issue42433.dart │ │ │ │ ├── issue42433.dart.strong.expect │ │ │ │ ├── issue42433.dart.strong.transformed.expect │ │ │ │ ├── issue42433.dart.textual_outline.expect │ │ │ │ ├── issue42433.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42433.dart.weak.expect │ │ │ │ ├── issue42433.dart.weak.modular.expect │ │ │ │ ├── issue42433.dart.weak.outline.expect │ │ │ │ ├── issue42433.dart.weak.transformed.expect │ │ │ │ ├── issue42434.dart │ │ │ │ ├── issue42434.dart.strong.expect │ │ │ │ ├── issue42434.dart.strong.transformed.expect │ │ │ │ ├── issue42434.dart.textual_outline.expect │ │ │ │ ├── issue42434.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42434.dart.weak.expect │ │ │ │ ├── issue42434.dart.weak.modular.expect │ │ │ │ ├── issue42434.dart.weak.outline.expect │ │ │ │ ├── issue42434.dart.weak.transformed.expect │ │ │ │ ├── issue42434_2.dart │ │ │ │ ├── issue42434_2.dart.strong.expect │ │ │ │ ├── issue42434_2.dart.strong.transformed.expect │ │ │ │ ├── issue42434_2.dart.textual_outline.expect │ │ │ │ ├── issue42434_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42434_2.dart.weak.expect │ │ │ │ ├── issue42434_2.dart.weak.modular.expect │ │ │ │ ├── issue42434_2.dart.weak.outline.expect │ │ │ │ ├── issue42434_2.dart.weak.transformed.expect │ │ │ │ ├── issue42459.dart │ │ │ │ ├── issue42459.dart.strong.expect │ │ │ │ ├── issue42459.dart.strong.transformed.expect │ │ │ │ ├── issue42459.dart.textual_outline.expect │ │ │ │ ├── issue42459.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42459.dart.weak.expect │ │ │ │ ├── issue42459.dart.weak.modular.expect │ │ │ │ ├── issue42459.dart.weak.outline.expect │ │ │ │ ├── issue42459.dart.weak.transformed.expect │ │ │ │ ├── issue42504.dart │ │ │ │ ├── issue42504.dart.strong.expect │ │ │ │ ├── issue42504.dart.strong.transformed.expect │ │ │ │ ├── issue42504.dart.textual_outline.expect │ │ │ │ ├── issue42504.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42504.dart.weak.expect │ │ │ │ ├── issue42504.dart.weak.modular.expect │ │ │ │ ├── issue42504.dart.weak.outline.expect │ │ │ │ ├── issue42504.dart.weak.transformed.expect │ │ │ │ ├── issue42540.dart │ │ │ │ ├── issue42540.dart.strong.expect │ │ │ │ ├── issue42540.dart.strong.transformed.expect │ │ │ │ ├── issue42540.dart.textual_outline.expect │ │ │ │ ├── issue42540.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42540.dart.weak.expect │ │ │ │ ├── issue42540.dart.weak.modular.expect │ │ │ │ ├── issue42540.dart.weak.outline.expect │ │ │ │ ├── issue42540.dart.weak.transformed.expect │ │ │ │ ├── issue42546.dart │ │ │ │ ├── issue42546.dart.strong.expect │ │ │ │ ├── issue42546.dart.strong.transformed.expect │ │ │ │ ├── issue42546.dart.textual_outline.expect │ │ │ │ ├── issue42546.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42546.dart.weak.expect │ │ │ │ ├── issue42546.dart.weak.modular.expect │ │ │ │ ├── issue42546.dart.weak.outline.expect │ │ │ │ ├── issue42546.dart.weak.transformed.expect │ │ │ │ ├── issue42579.dart │ │ │ │ ├── issue42579.dart.strong.expect │ │ │ │ ├── issue42579.dart.strong.transformed.expect │ │ │ │ ├── issue42579.dart.textual_outline.expect │ │ │ │ ├── issue42579.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42579.dart.weak.expect │ │ │ │ ├── issue42579.dart.weak.modular.expect │ │ │ │ ├── issue42579.dart.weak.outline.expect │ │ │ │ ├── issue42579.dart.weak.transformed.expect │ │ │ │ ├── issue42579_2.dart │ │ │ │ ├── issue42579_2.dart.strong.expect │ │ │ │ ├── issue42579_2.dart.strong.transformed.expect │ │ │ │ ├── issue42579_2.dart.textual_outline.expect │ │ │ │ ├── issue42579_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42579_2.dart.weak.expect │ │ │ │ ├── issue42579_2.dart.weak.modular.expect │ │ │ │ ├── issue42579_2.dart.weak.outline.expect │ │ │ │ ├── issue42579_2.dart.weak.transformed.expect │ │ │ │ ├── issue42579_3.dart │ │ │ │ ├── issue42579_3.dart.strong.expect │ │ │ │ ├── issue42579_3.dart.strong.transformed.expect │ │ │ │ ├── issue42579_3.dart.textual_outline.expect │ │ │ │ ├── issue42579_3.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42579_3.dart.weak.expect │ │ │ │ ├── issue42579_3.dart.weak.modular.expect │ │ │ │ ├── issue42579_3.dart.weak.outline.expect │ │ │ │ ├── issue42579_3.dart.weak.transformed.expect │ │ │ │ ├── issue42603.dart │ │ │ │ ├── issue42603.dart.strong.expect │ │ │ │ ├── issue42603.dart.textual_outline.expect │ │ │ │ ├── issue42603.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42603.dart.weak.expect │ │ │ │ ├── issue42603.dart.weak.modular.expect │ │ │ │ ├── issue42603.dart.weak.outline.expect │ │ │ │ ├── issue42607.dart │ │ │ │ ├── issue42607.dart.strong.expect │ │ │ │ ├── issue42607.dart.strong.transformed.expect │ │ │ │ ├── issue42607.dart.textual_outline.expect │ │ │ │ ├── issue42607.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42607.dart.weak.expect │ │ │ │ ├── issue42607.dart.weak.modular.expect │ │ │ │ ├── issue42607.dart.weak.outline.expect │ │ │ │ ├── issue42607.dart.weak.transformed.expect │ │ │ │ ├── issue42743.dart │ │ │ │ ├── issue42743.dart.strong.expect │ │ │ │ ├── issue42743.dart.strong.transformed.expect │ │ │ │ ├── issue42743.dart.textual_outline.expect │ │ │ │ ├── issue42743.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42743.dart.weak.expect │ │ │ │ ├── issue42743.dart.weak.modular.expect │ │ │ │ ├── issue42743.dart.weak.outline.expect │ │ │ │ ├── issue42743.dart.weak.transformed.expect │ │ │ │ ├── issue42758.dart │ │ │ │ ├── issue42758.dart.strong.expect │ │ │ │ ├── issue42758.dart.strong.transformed.expect │ │ │ │ ├── issue42758.dart.textual_outline.expect │ │ │ │ ├── issue42758.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42758.dart.weak.expect │ │ │ │ ├── issue42758.dart.weak.modular.expect │ │ │ │ ├── issue42758.dart.weak.outline.expect │ │ │ │ ├── issue42758.dart.weak.transformed.expect │ │ │ │ ├── issue42844_1.dart │ │ │ │ ├── issue42844_1.dart.strong.expect │ │ │ │ ├── issue42844_1.dart.strong.transformed.expect │ │ │ │ ├── issue42844_1.dart.textual_outline.expect │ │ │ │ ├── issue42844_1.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42844_1.dart.weak.expect │ │ │ │ ├── issue42844_1.dart.weak.modular.expect │ │ │ │ ├── issue42844_1.dart.weak.outline.expect │ │ │ │ ├── issue42844_1.dart.weak.transformed.expect │ │ │ │ ├── issue42844_2.dart │ │ │ │ ├── issue42844_2.dart.strong.expect │ │ │ │ ├── issue42844_2.dart.strong.transformed.expect │ │ │ │ ├── issue42844_2.dart.textual_outline.expect │ │ │ │ ├── issue42844_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42844_2.dart.weak.expect │ │ │ │ ├── issue42844_2.dart.weak.modular.expect │ │ │ │ ├── issue42844_2.dart.weak.outline.expect │ │ │ │ ├── issue42844_2.dart.weak.transformed.expect │ │ │ │ ├── issue42967.dart │ │ │ │ ├── issue42967.dart.strong.expect │ │ │ │ ├── issue42967.dart.strong.transformed.expect │ │ │ │ ├── issue42967.dart.textual_outline.expect │ │ │ │ ├── issue42967.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42967.dart.weak.expect │ │ │ │ ├── issue42967.dart.weak.modular.expect │ │ │ │ ├── issue42967.dart.weak.outline.expect │ │ │ │ ├── issue42967.dart.weak.transformed.expect │ │ │ │ ├── issue43174.dart │ │ │ │ ├── issue43174.dart.strong.expect │ │ │ │ ├── issue43174.dart.strong.transformed.expect │ │ │ │ ├── issue43174.dart.textual_outline.expect │ │ │ │ ├── issue43174.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43174.dart.weak.expect │ │ │ │ ├── issue43174.dart.weak.modular.expect │ │ │ │ ├── issue43174.dart.weak.outline.expect │ │ │ │ ├── issue43174.dart.weak.transformed.expect │ │ │ │ ├── issue43211.dart │ │ │ │ ├── issue43211.dart.strong.expect │ │ │ │ ├── issue43211.dart.strong.transformed.expect │ │ │ │ ├── issue43211.dart.textual_outline.expect │ │ │ │ ├── issue43211.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43211.dart.weak.expect │ │ │ │ ├── issue43211.dart.weak.modular.expect │ │ │ │ ├── issue43211.dart.weak.outline.expect │ │ │ │ ├── issue43211.dart.weak.transformed.expect │ │ │ │ ├── issue43256.dart │ │ │ │ ├── issue43256.dart.strong.expect │ │ │ │ ├── issue43256.dart.strong.transformed.expect │ │ │ │ ├── issue43256.dart.textual_outline.expect │ │ │ │ ├── issue43256.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43256.dart.weak.expect │ │ │ │ ├── issue43256.dart.weak.modular.expect │ │ │ │ ├── issue43256.dart.weak.outline.expect │ │ │ │ ├── issue43256.dart.weak.transformed.expect │ │ │ │ ├── issue43276.dart │ │ │ │ ├── issue43276.dart.strong.expect │ │ │ │ ├── issue43276.dart.strong.transformed.expect │ │ │ │ ├── issue43276.dart.textual_outline.expect │ │ │ │ ├── issue43276.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43276.dart.weak.expect │ │ │ │ ├── issue43276.dart.weak.modular.expect │ │ │ │ ├── issue43276.dart.weak.outline.expect │ │ │ │ ├── issue43276.dart.weak.transformed.expect │ │ │ │ ├── issue43278.dart │ │ │ │ ├── issue43278.dart.strong.expect │ │ │ │ ├── issue43278.dart.strong.transformed.expect │ │ │ │ ├── issue43278.dart.textual_outline.expect │ │ │ │ ├── issue43278.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43278.dart.weak.expect │ │ │ │ ├── issue43278.dart.weak.modular.expect │ │ │ │ ├── issue43278.dart.weak.outline.expect │ │ │ │ ├── issue43278.dart.weak.transformed.expect │ │ │ │ ├── issue43354.dart │ │ │ │ ├── issue43354.dart.strong.expect │ │ │ │ ├── issue43354.dart.strong.transformed.expect │ │ │ │ ├── issue43354.dart.textual_outline.expect │ │ │ │ ├── issue43354.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43354.dart.weak.expect │ │ │ │ ├── issue43354.dart.weak.modular.expect │ │ │ │ ├── issue43354.dart.weak.outline.expect │ │ │ │ ├── issue43354.dart.weak.transformed.expect │ │ │ │ ├── issue43455.dart │ │ │ │ ├── issue43455.dart.strong.expect │ │ │ │ ├── issue43455.dart.strong.transformed.expect │ │ │ │ ├── issue43455.dart.textual_outline.expect │ │ │ │ ├── issue43455.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43455.dart.weak.expect │ │ │ │ ├── issue43455.dart.weak.modular.expect │ │ │ │ ├── issue43455.dart.weak.outline.expect │ │ │ │ ├── issue43455.dart.weak.transformed.expect │ │ │ │ ├── issue43495.dart │ │ │ │ ├── issue43495.dart.strong.expect │ │ │ │ ├── issue43495.dart.strong.transformed.expect │ │ │ │ ├── issue43495.dart.textual_outline.expect │ │ │ │ ├── issue43495.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43495.dart.weak.expect │ │ │ │ ├── issue43495.dart.weak.modular.expect │ │ │ │ ├── issue43495.dart.weak.outline.expect │ │ │ │ ├── issue43495.dart.weak.transformed.expect │ │ │ │ ├── issue43536.dart │ │ │ │ ├── issue43536.dart.strong.expect │ │ │ │ ├── issue43536.dart.strong.transformed.expect │ │ │ │ ├── issue43536.dart.textual_outline.expect │ │ │ │ ├── issue43536.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43536.dart.weak.expect │ │ │ │ ├── issue43536.dart.weak.modular.expect │ │ │ │ ├── issue43536.dart.weak.outline.expect │ │ │ │ ├── issue43536.dart.weak.transformed.expect │ │ │ │ ├── issue43591.dart │ │ │ │ ├── issue43591.dart.strong.expect │ │ │ │ ├── issue43591.dart.strong.transformed.expect │ │ │ │ ├── issue43591.dart.textual_outline.expect │ │ │ │ ├── issue43591.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43591.dart.weak.expect │ │ │ │ ├── issue43591.dart.weak.modular.expect │ │ │ │ ├── issue43591.dart.weak.outline.expect │ │ │ │ ├── issue43591.dart.weak.transformed.expect │ │ │ │ ├── issue43689.dart │ │ │ │ ├── issue43689.dart.strong.expect │ │ │ │ ├── issue43689.dart.strong.transformed.expect │ │ │ │ ├── issue43689.dart.textual_outline.expect │ │ │ │ ├── issue43689.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43689.dart.weak.expect │ │ │ │ ├── issue43689.dart.weak.modular.expect │ │ │ │ ├── issue43689.dart.weak.outline.expect │ │ │ │ ├── issue43689.dart.weak.transformed.expect │ │ │ │ ├── issue43716a.dart │ │ │ │ ├── issue43716a.dart.strong.expect │ │ │ │ ├── issue43716a.dart.strong.transformed.expect │ │ │ │ ├── issue43716a.dart.textual_outline.expect │ │ │ │ ├── issue43716a.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43716a.dart.weak.expect │ │ │ │ ├── issue43716a.dart.weak.modular.expect │ │ │ │ ├── issue43716a.dart.weak.outline.expect │ │ │ │ ├── issue43716a.dart.weak.transformed.expect │ │ │ │ ├── issue43716b.dart │ │ │ │ ├── issue43716b.dart.strong.expect │ │ │ │ ├── issue43716b.dart.strong.transformed.expect │ │ │ │ ├── issue43716b.dart.textual_outline.expect │ │ │ │ ├── issue43716b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43716b.dart.weak.expect │ │ │ │ ├── issue43716b.dart.weak.modular.expect │ │ │ │ ├── issue43716b.dart.weak.outline.expect │ │ │ │ ├── issue43716b.dart.weak.transformed.expect │ │ │ │ ├── issue43721.dart │ │ │ │ ├── issue43721.dart.strong.expect │ │ │ │ ├── issue43721.dart.strong.transformed.expect │ │ │ │ ├── issue43721.dart.textual_outline.expect │ │ │ │ ├── issue43721.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43721.dart.weak.expect │ │ │ │ ├── issue43721.dart.weak.modular.expect │ │ │ │ ├── issue43721.dart.weak.outline.expect │ │ │ │ ├── issue43721.dart.weak.transformed.expect │ │ │ │ ├── issue43918.dart │ │ │ │ ├── issue43918.dart.strong.expect │ │ │ │ ├── issue43918.dart.strong.transformed.expect │ │ │ │ ├── issue43918.dart.textual_outline.expect │ │ │ │ ├── issue43918.dart.textual_outline_modelled.expect │ │ │ │ ├── issue43918.dart.weak.expect │ │ │ │ ├── issue43918.dart.weak.modular.expect │ │ │ │ ├── issue43918.dart.weak.outline.expect │ │ │ │ ├── issue43918.dart.weak.transformed.expect │ │ │ │ ├── issue44276.dart │ │ │ │ ├── issue44276.dart.strong.expect │ │ │ │ ├── issue44276.dart.strong.transformed.expect │ │ │ │ ├── issue44276.dart.textual_outline.expect │ │ │ │ ├── issue44276.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44276.dart.weak.expect │ │ │ │ ├── issue44276.dart.weak.modular.expect │ │ │ │ ├── issue44276.dart.weak.outline.expect │ │ │ │ ├── issue44276.dart.weak.transformed.expect │ │ │ │ ├── issue44362.dart │ │ │ │ ├── issue44362.dart.strong.expect │ │ │ │ ├── issue44362.dart.strong.transformed.expect │ │ │ │ ├── issue44362.dart.textual_outline.expect │ │ │ │ ├── issue44362.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44362.dart.weak.expect │ │ │ │ ├── issue44362.dart.weak.modular.expect │ │ │ │ ├── issue44362.dart.weak.outline.expect │ │ │ │ ├── issue44362.dart.weak.transformed.expect │ │ │ │ ├── issue44455.dart │ │ │ │ ├── issue44455.dart.strong.expect │ │ │ │ ├── issue44455.dart.strong.transformed.expect │ │ │ │ ├── issue44455.dart.textual_outline.expect │ │ │ │ ├── issue44455.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44455.dart.weak.expect │ │ │ │ ├── issue44455.dart.weak.modular.expect │ │ │ │ ├── issue44455.dart.weak.outline.expect │ │ │ │ ├── issue44455.dart.weak.transformed.expect │ │ │ │ ├── issue44595.dart │ │ │ │ ├── issue44595.dart.strong.expect │ │ │ │ ├── issue44595.dart.strong.transformed.expect │ │ │ │ ├── issue44595.dart.textual_outline.expect │ │ │ │ ├── issue44595.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44595.dart.weak.expect │ │ │ │ ├── issue44595.dart.weak.modular.expect │ │ │ │ ├── issue44595.dart.weak.outline.expect │ │ │ │ ├── issue44595.dart.weak.transformed.expect │ │ │ │ ├── issue44857.dart │ │ │ │ ├── issue44857.dart.strong.expect │ │ │ │ ├── issue44857.dart.strong.transformed.expect │ │ │ │ ├── issue44857.dart.textual_outline.expect │ │ │ │ ├── issue44857.dart.textual_outline_modelled.expect │ │ │ │ ├── issue44857.dart.weak.expect │ │ │ │ ├── issue44857.dart.weak.modular.expect │ │ │ │ ├── issue44857.dart.weak.outline.expect │ │ │ │ ├── issue44857.dart.weak.transformed.expect │ │ │ │ ├── issue45598.dart │ │ │ │ ├── issue45598.dart.strong.expect │ │ │ │ ├── issue45598.dart.strong.transformed.expect │ │ │ │ ├── issue45598.dart.textual_outline.expect │ │ │ │ ├── issue45598.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45598.dart.weak.expect │ │ │ │ ├── issue45598.dart.weak.modular.expect │ │ │ │ ├── issue45598.dart.weak.outline.expect │ │ │ │ ├── issue45598.dart.weak.transformed.expect │ │ │ │ ├── issue45598_2.dart │ │ │ │ ├── issue45598_2.dart.strong.expect │ │ │ │ ├── issue45598_2.dart.strong.transformed.expect │ │ │ │ ├── issue45598_2.dart.textual_outline.expect │ │ │ │ ├── issue45598_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45598_2.dart.weak.expect │ │ │ │ ├── issue45598_2.dart.weak.modular.expect │ │ │ │ ├── issue45598_2.dart.weak.outline.expect │ │ │ │ ├── issue45598_2.dart.weak.transformed.expect │ │ │ │ ├── issue47311.dart │ │ │ │ ├── issue47311.dart.strong.expect │ │ │ │ ├── issue47311.dart.strong.transformed.expect │ │ │ │ ├── issue47311.dart.textual_outline.expect │ │ │ │ ├── issue47311.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47311.dart.weak.expect │ │ │ │ ├── issue47311.dart.weak.modular.expect │ │ │ │ ├── issue47311.dart.weak.outline.expect │ │ │ │ ├── issue47311.dart.weak.transformed.expect │ │ │ │ ├── issue47795.dart │ │ │ │ ├── issue47795.dart.strong.expect │ │ │ │ ├── issue47795.dart.strong.transformed.expect │ │ │ │ ├── issue47795.dart.textual_outline.expect │ │ │ │ ├── issue47795.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47795.dart.weak.expect │ │ │ │ ├── issue47795.dart.weak.modular.expect │ │ │ │ ├── issue47795.dart.weak.outline.expect │ │ │ │ ├── issue47795.dart.weak.transformed.expect │ │ │ │ ├── issue48131.dart │ │ │ │ ├── issue48131.dart.strong.expect │ │ │ │ ├── issue48131.dart.strong.transformed.expect │ │ │ │ ├── issue48131.dart.textual_outline.expect │ │ │ │ ├── issue48131.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48131.dart.weak.expect │ │ │ │ ├── issue48131.dart.weak.modular.expect │ │ │ │ ├── issue48131.dart.weak.outline.expect │ │ │ │ ├── issue48131.dart.weak.transformed.expect │ │ │ │ ├── issue48631_1.dart │ │ │ │ ├── issue48631_1.dart.strong.expect │ │ │ │ ├── issue48631_1.dart.strong.transformed.expect │ │ │ │ ├── issue48631_1.dart.textual_outline.expect │ │ │ │ ├── issue48631_1.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48631_1.dart.weak.expect │ │ │ │ ├── issue48631_1.dart.weak.modular.expect │ │ │ │ ├── issue48631_1.dart.weak.outline.expect │ │ │ │ ├── issue48631_1.dart.weak.transformed.expect │ │ │ │ ├── issue48631_2.dart │ │ │ │ ├── issue48631_2.dart.strong.expect │ │ │ │ ├── issue48631_2.dart.strong.transformed.expect │ │ │ │ ├── issue48631_2.dart.textual_outline.expect │ │ │ │ ├── issue48631_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48631_2.dart.weak.expect │ │ │ │ ├── issue48631_2.dart.weak.modular.expect │ │ │ │ ├── issue48631_2.dart.weak.outline.expect │ │ │ │ ├── issue48631_2.dart.weak.transformed.expect │ │ │ │ ├── issue48768.dart │ │ │ │ ├── issue48768.dart.strong.expect │ │ │ │ ├── issue48768.dart.strong.transformed.expect │ │ │ │ ├── issue48768.dart.textual_outline.expect │ │ │ │ ├── issue48768.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48768.dart.weak.expect │ │ │ │ ├── issue48768.dart.weak.modular.expect │ │ │ │ ├── issue48768.dart.weak.outline.expect │ │ │ │ ├── issue48768.dart.weak.transformed.expect │ │ │ │ ├── issue49044.dart │ │ │ │ ├── issue49044.dart.strong.expect │ │ │ │ ├── issue49044.dart.strong.transformed.expect │ │ │ │ ├── issue49044.dart.textual_outline.expect │ │ │ │ ├── issue49044.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49044.dart.weak.expect │ │ │ │ ├── issue49044.dart.weak.modular.expect │ │ │ │ ├── issue49044.dart.weak.outline.expect │ │ │ │ ├── issue49044.dart.weak.transformed.expect │ │ │ │ ├── issue49198.dart │ │ │ │ ├── issue49198.dart.strong.expect │ │ │ │ ├── issue49198.dart.strong.transformed.expect │ │ │ │ ├── issue49198.dart.textual_outline.expect │ │ │ │ ├── issue49198.dart.textual_outline_modelled.expect │ │ │ │ ├── issue49198.dart.weak.expect │ │ │ │ ├── issue49198.dart.weak.modular.expect │ │ │ │ ├── issue49198.dart.weak.outline.expect │ │ │ │ ├── issue49198.dart.weak.transformed.expect │ │ │ │ ├── issue_39286.dart │ │ │ │ ├── issue_39286.dart.strong.expect │ │ │ │ ├── issue_39286.dart.strong.transformed.expect │ │ │ │ ├── issue_39286.dart.textual_outline.expect │ │ │ │ ├── issue_39286.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_39286.dart.weak.expect │ │ │ │ ├── issue_39286.dart.weak.modular.expect │ │ │ │ ├── issue_39286.dart.weak.outline.expect │ │ │ │ ├── issue_39286.dart.weak.transformed.expect │ │ │ │ ├── issue_39286_2.dart │ │ │ │ ├── issue_39286_2.dart.strong.expect │ │ │ │ ├── issue_39286_2.dart.strong.transformed.expect │ │ │ │ ├── issue_39286_2.dart.textual_outline.expect │ │ │ │ ├── issue_39286_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_39286_2.dart.weak.expect │ │ │ │ ├── issue_39286_2.dart.weak.modular.expect │ │ │ │ ├── issue_39286_2.dart.weak.outline.expect │ │ │ │ ├── issue_39286_2.dart.weak.transformed.expect │ │ │ │ ├── language_issue1182.dart │ │ │ │ ├── language_issue1182.dart.strong.expect │ │ │ │ ├── language_issue1182.dart.strong.transformed.expect │ │ │ │ ├── language_issue1182.dart.textual_outline.expect │ │ │ │ ├── language_issue1182.dart.textual_outline_modelled.expect │ │ │ │ ├── language_issue1182.dart.weak.expect │ │ │ │ ├── language_issue1182.dart.weak.modular.expect │ │ │ │ ├── language_issue1182.dart.weak.outline.expect │ │ │ │ ├── language_issue1182.dart.weak.transformed.expect │ │ │ │ ├── late.dart │ │ │ │ ├── late.dart.strong.expect │ │ │ │ ├── late.dart.strong.transformed.expect │ │ │ │ ├── late.dart.textual_outline.expect │ │ │ │ ├── late.dart.textual_outline_modelled.expect │ │ │ │ ├── late.dart.weak.expect │ │ │ │ ├── late.dart.weak.modular.expect │ │ │ │ ├── late.dart.weak.outline.expect │ │ │ │ ├── late.dart.weak.transformed.expect │ │ │ │ ├── later.dart │ │ │ │ ├── later.dart.strong.expect │ │ │ │ ├── later.dart.strong.transformed.expect │ │ │ │ ├── later.dart.textual_outline.expect │ │ │ │ ├── later.dart.weak.expect │ │ │ │ ├── later.dart.weak.modular.expect │ │ │ │ ├── later.dart.weak.outline.expect │ │ │ │ ├── later.dart.weak.transformed.expect │ │ │ │ ├── lhs_of_if_null.dart │ │ │ │ ├── lhs_of_if_null.dart.strong.expect │ │ │ │ ├── lhs_of_if_null.dart.strong.transformed.expect │ │ │ │ ├── lhs_of_if_null.dart.textual_outline.expect │ │ │ │ ├── lhs_of_if_null.dart.textual_outline_modelled.expect │ │ │ │ ├── lhs_of_if_null.dart.weak.expect │ │ │ │ ├── lhs_of_if_null.dart.weak.modular.expect │ │ │ │ ├── lhs_of_if_null.dart.weak.outline.expect │ │ │ │ ├── lhs_of_if_null.dart.weak.transformed.expect │ │ │ │ ├── load_library.dart │ │ │ │ ├── load_library.dart.strong.expect │ │ │ │ ├── load_library.dart.strong.transformed.expect │ │ │ │ ├── load_library.dart.textual_outline.expect │ │ │ │ ├── load_library.dart.textual_outline_modelled.expect │ │ │ │ ├── load_library.dart.weak.expect │ │ │ │ ├── load_library.dart.weak.modular.expect │ │ │ │ ├── load_library.dart.weak.outline.expect │ │ │ │ ├── load_library.dart.weak.transformed.expect │ │ │ │ ├── main_declaration.dart │ │ │ │ ├── main_declaration.dart.strong.expect │ │ │ │ ├── main_declaration.dart.strong.transformed.expect │ │ │ │ ├── main_declaration.dart.textual_outline.expect │ │ │ │ ├── main_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── main_declaration.dart.weak.expect │ │ │ │ ├── main_declaration.dart.weak.modular.expect │ │ │ │ ├── main_declaration.dart.weak.outline.expect │ │ │ │ ├── main_declaration.dart.weak.transformed.expect │ │ │ │ ├── main_declaration_class_lib.dart │ │ │ │ ├── main_declaration_extension_lib.dart │ │ │ │ ├── main_declaration_field_lib.dart │ │ │ │ ├── main_declaration_getter_lib.dart │ │ │ │ ├── main_declaration_method_extra_optional_parameters_lib.dart │ │ │ │ ├── main_declaration_method_named_parameters_lib.dart │ │ │ │ ├── main_declaration_method_one_optional_parameter_lib.dart │ │ │ │ ├── main_declaration_method_one_parameter_lib.dart │ │ │ │ ├── main_declaration_method_one_required_optional_lib.dart │ │ │ │ ├── main_declaration_method_required_named_parameters_lib.dart │ │ │ │ ├── main_declaration_method_too_many_parameters_lib.dart │ │ │ │ ├── main_declaration_method_two_optional_parameters_lib.dart │ │ │ │ ├── main_declaration_method_two_parameters_lib.dart │ │ │ │ ├── main_declaration_method_wrong_parameter_type_lib.dart │ │ │ │ ├── main_declaration_setter_lib.dart │ │ │ │ ├── main_declaration_typedef_lib.dart │ │ │ │ ├── missing_required_named_parameter.dart │ │ │ │ ├── missing_required_named_parameter.dart.strong.expect │ │ │ │ ├── missing_required_named_parameter.dart.strong.transformed.expect │ │ │ │ ├── missing_required_named_parameter.dart.textual_outline.expect │ │ │ │ ├── missing_required_named_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── missing_required_named_parameter.dart.weak.expect │ │ │ │ ├── missing_required_named_parameter.dart.weak.modular.expect │ │ │ │ ├── missing_required_named_parameter.dart.weak.outline.expect │ │ │ │ ├── missing_required_named_parameter.dart.weak.transformed.expect │ │ │ │ ├── mix_in_field.dart │ │ │ │ ├── mix_in_field.dart.strong.expect │ │ │ │ ├── mix_in_field.dart.strong.transformed.expect │ │ │ │ ├── mix_in_field.dart.textual_outline.expect │ │ │ │ ├── mix_in_field.dart.textual_outline_modelled.expect │ │ │ │ ├── mix_in_field.dart.weak.expect │ │ │ │ ├── mix_in_field.dart.weak.modular.expect │ │ │ │ ├── mix_in_field.dart.weak.outline.expect │ │ │ │ ├── mix_in_field.dart.weak.transformed.expect │ │ │ │ ├── mutual_subtype_norm.dart │ │ │ │ ├── mutual_subtype_norm.dart.strong.expect │ │ │ │ ├── mutual_subtype_norm.dart.strong.transformed.expect │ │ │ │ ├── mutual_subtype_norm.dart.textual_outline.expect │ │ │ │ ├── mutual_subtype_norm.dart.textual_outline_modelled.expect │ │ │ │ ├── mutual_subtype_norm.dart.weak.expect │ │ │ │ ├── mutual_subtype_norm.dart.weak.modular.expect │ │ │ │ ├── mutual_subtype_norm.dart.weak.outline.expect │ │ │ │ ├── mutual_subtype_norm.dart.weak.transformed.expect │ │ │ │ ├── never_bound.dart │ │ │ │ ├── never_bound.dart.strong.expect │ │ │ │ ├── never_bound.dart.strong.transformed.expect │ │ │ │ ├── never_bound.dart.textual_outline.expect │ │ │ │ ├── never_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── never_bound.dart.weak.expect │ │ │ │ ├── never_bound.dart.weak.modular.expect │ │ │ │ ├── never_bound.dart.weak.outline.expect │ │ │ │ ├── never_bound.dart.weak.transformed.expect │ │ │ │ ├── never_calls.dart │ │ │ │ ├── never_calls.dart.strong.expect │ │ │ │ ├── never_calls.dart.strong.transformed.expect │ │ │ │ ├── never_calls.dart.textual_outline.expect │ │ │ │ ├── never_calls.dart.textual_outline_modelled.expect │ │ │ │ ├── never_calls.dart.weak.expect │ │ │ │ ├── never_calls.dart.weak.modular.expect │ │ │ │ ├── never_calls.dart.weak.outline.expect │ │ │ │ ├── never_calls.dart.weak.transformed.expect │ │ │ │ ├── never_equals.dart │ │ │ │ ├── never_equals.dart.strong.expect │ │ │ │ ├── never_equals.dart.strong.transformed.expect │ │ │ │ ├── never_equals.dart.textual_outline.expect │ │ │ │ ├── never_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── never_equals.dart.weak.expect │ │ │ │ ├── never_equals.dart.weak.modular.expect │ │ │ │ ├── never_equals.dart.weak.outline.expect │ │ │ │ ├── never_equals.dart.weak.transformed.expect │ │ │ │ ├── never_receiver.dart │ │ │ │ ├── never_receiver.dart.strong.expect │ │ │ │ ├── never_receiver.dart.strong.transformed.expect │ │ │ │ ├── never_receiver.dart.textual_outline.expect │ │ │ │ ├── never_receiver.dart.textual_outline_modelled.expect │ │ │ │ ├── never_receiver.dart.weak.expect │ │ │ │ ├── never_receiver.dart.weak.modular.expect │ │ │ │ ├── never_receiver.dart.weak.outline.expect │ │ │ │ ├── never_receiver.dart.weak.transformed.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.strong.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.strong.transformed.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.textual_outline.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.textual_outline_modelled.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.weak.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.weak.modular.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.weak.outline.expect │ │ │ │ ├── no_support_for_old_null_aware_index_access_syntax.dart.weak.transformed.expect │ │ │ │ ├── non_nullable_field_initialization.dart │ │ │ │ ├── non_nullable_field_initialization.dart.strong.expect │ │ │ │ ├── non_nullable_field_initialization.dart.strong.transformed.expect │ │ │ │ ├── non_nullable_field_initialization.dart.textual_outline.expect │ │ │ │ ├── non_nullable_field_initialization.dart.textual_outline_modelled.expect │ │ │ │ ├── non_nullable_field_initialization.dart.weak.expect │ │ │ │ ├── non_nullable_field_initialization.dart.weak.modular.expect │ │ │ │ ├── non_nullable_field_initialization.dart.weak.outline.expect │ │ │ │ ├── non_nullable_field_initialization.dart.weak.transformed.expect │ │ │ │ ├── non_nullable_optional.dart │ │ │ │ ├── non_nullable_optional.dart.strong.expect │ │ │ │ ├── non_nullable_optional.dart.strong.transformed.expect │ │ │ │ ├── non_nullable_optional.dart.textual_outline.expect │ │ │ │ ├── non_nullable_optional.dart.textual_outline_modelled.expect │ │ │ │ ├── non_nullable_optional.dart.weak.expect │ │ │ │ ├── non_nullable_optional.dart.weak.modular.expect │ │ │ │ ├── non_nullable_optional.dart.weak.outline.expect │ │ │ │ ├── non_nullable_optional.dart.weak.transformed.expect │ │ │ │ ├── non_nullable_optional_part.dart │ │ │ │ ├── nonfield_vs_setter.dart │ │ │ │ ├── nonfield_vs_setter.dart.strong.expect │ │ │ │ ├── nonfield_vs_setter.dart.strong.transformed.expect │ │ │ │ ├── nonfield_vs_setter.dart.textual_outline.expect │ │ │ │ ├── nonfield_vs_setter.dart.weak.expect │ │ │ │ ├── nonfield_vs_setter.dart.weak.modular.expect │ │ │ │ ├── nonfield_vs_setter.dart.weak.outline.expect │ │ │ │ ├── nonfield_vs_setter.dart.weak.transformed.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.strong.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.strong.transformed.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.textual_outline.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.weak.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.weak.modular.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.weak.outline.expect │ │ │ │ ├── not_definitely_unassigned_late_local_variables.dart.weak.transformed.expect │ │ │ │ ├── null_access.dart │ │ │ │ ├── null_access.dart.strong.expect │ │ │ │ ├── null_access.dart.strong.transformed.expect │ │ │ │ ├── null_access.dart.textual_outline.expect │ │ │ │ ├── null_access.dart.textual_outline_modelled.expect │ │ │ │ ├── null_access.dart.weak.expect │ │ │ │ ├── null_access.dart.weak.modular.expect │ │ │ │ ├── null_access.dart.weak.outline.expect │ │ │ │ ├── null_access.dart.weak.transformed.expect │ │ │ │ ├── null_aware_chain.dart │ │ │ │ ├── null_aware_chain.dart.strong.expect │ │ │ │ ├── null_aware_chain.dart.strong.transformed.expect │ │ │ │ ├── null_aware_chain.dart.textual_outline.expect │ │ │ │ ├── null_aware_chain.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_chain.dart.weak.expect │ │ │ │ ├── null_aware_chain.dart.weak.modular.expect │ │ │ │ ├── null_aware_chain.dart.weak.outline.expect │ │ │ │ ├── null_aware_chain.dart.weak.transformed.expect │ │ │ │ ├── null_aware_static_access.dart │ │ │ │ ├── null_aware_static_access.dart.strong.expect │ │ │ │ ├── null_aware_static_access.dart.strong.transformed.expect │ │ │ │ ├── null_aware_static_access.dart.textual_outline.expect │ │ │ │ ├── null_aware_static_access.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_static_access.dart.weak.expect │ │ │ │ ├── null_aware_static_access.dart.weak.modular.expect │ │ │ │ ├── null_aware_static_access.dart.weak.outline.expect │ │ │ │ ├── null_aware_static_access.dart.weak.transformed.expect │ │ │ │ ├── null_aware_this_access.dart │ │ │ │ ├── null_aware_this_access.dart.strong.expect │ │ │ │ ├── null_aware_this_access.dart.strong.transformed.expect │ │ │ │ ├── null_aware_this_access.dart.textual_outline.expect │ │ │ │ ├── null_aware_this_access.dart.textual_outline_modelled.expect │ │ │ │ ├── null_aware_this_access.dart.weak.expect │ │ │ │ ├── null_aware_this_access.dart.weak.modular.expect │ │ │ │ ├── null_aware_this_access.dart.weak.outline.expect │ │ │ │ ├── null_aware_this_access.dart.weak.transformed.expect │ │ │ │ ├── null_check.dart │ │ │ │ ├── null_check.dart.strong.expect │ │ │ │ ├── null_check.dart.strong.transformed.expect │ │ │ │ ├── null_check.dart.textual_outline.expect │ │ │ │ ├── null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check.dart.weak.expect │ │ │ │ ├── null_check.dart.weak.modular.expect │ │ │ │ ├── null_check.dart.weak.outline.expect │ │ │ │ ├── null_check.dart.weak.transformed.expect │ │ │ │ ├── null_check_context.dart │ │ │ │ ├── null_check_context.dart.strong.expect │ │ │ │ ├── null_check_context.dart.strong.transformed.expect │ │ │ │ ├── null_check_context.dart.textual_outline.expect │ │ │ │ ├── null_check_context.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_context.dart.weak.expect │ │ │ │ ├── null_check_context.dart.weak.modular.expect │ │ │ │ ├── null_check_context.dart.weak.outline.expect │ │ │ │ ├── null_check_context.dart.weak.transformed.expect │ │ │ │ ├── null_shorting.dart │ │ │ │ ├── null_shorting.dart.strong.expect │ │ │ │ ├── null_shorting.dart.strong.transformed.expect │ │ │ │ ├── null_shorting.dart.textual_outline.expect │ │ │ │ ├── null_shorting.dart.textual_outline_modelled.expect │ │ │ │ ├── null_shorting.dart.weak.expect │ │ │ │ ├── null_shorting.dart.weak.modular.expect │ │ │ │ ├── null_shorting.dart.weak.outline.expect │ │ │ │ ├── null_shorting.dart.weak.transformed.expect │ │ │ │ ├── null_shorting_cascade.dart │ │ │ │ ├── null_shorting_cascade.dart.strong.expect │ │ │ │ ├── null_shorting_cascade.dart.strong.transformed.expect │ │ │ │ ├── null_shorting_cascade.dart.textual_outline.expect │ │ │ │ ├── null_shorting_cascade.dart.textual_outline_modelled.expect │ │ │ │ ├── null_shorting_cascade.dart.weak.expect │ │ │ │ ├── null_shorting_cascade.dart.weak.modular.expect │ │ │ │ ├── null_shorting_cascade.dart.weak.outline.expect │ │ │ │ ├── null_shorting_cascade.dart.weak.transformed.expect │ │ │ │ ├── null_shorting_explicit_extension.dart │ │ │ │ ├── null_shorting_explicit_extension.dart.strong.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.strong.transformed.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.textual_outline.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.weak.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.weak.modular.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.weak.outline.expect │ │ │ │ ├── null_shorting_explicit_extension.dart.weak.transformed.expect │ │ │ │ ├── null_shorting_extension.dart │ │ │ │ ├── null_shorting_extension.dart.strong.expect │ │ │ │ ├── null_shorting_extension.dart.strong.transformed.expect │ │ │ │ ├── null_shorting_extension.dart.textual_outline.expect │ │ │ │ ├── null_shorting_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── null_shorting_extension.dart.weak.expect │ │ │ │ ├── null_shorting_extension.dart.weak.modular.expect │ │ │ │ ├── null_shorting_extension.dart.weak.outline.expect │ │ │ │ ├── null_shorting_extension.dart.weak.transformed.expect │ │ │ │ ├── null_shorting_index.dart │ │ │ │ ├── null_shorting_index.dart.strong.expect │ │ │ │ ├── null_shorting_index.dart.strong.transformed.expect │ │ │ │ ├── null_shorting_index.dart.textual_outline.expect │ │ │ │ ├── null_shorting_index.dart.textual_outline_modelled.expect │ │ │ │ ├── null_shorting_index.dart.weak.expect │ │ │ │ ├── null_shorting_index.dart.weak.modular.expect │ │ │ │ ├── null_shorting_index.dart.weak.outline.expect │ │ │ │ ├── null_shorting_index.dart.weak.transformed.expect │ │ │ │ ├── nullable_access.dart │ │ │ │ ├── nullable_access.dart.strong.expect │ │ │ │ ├── nullable_access.dart.strong.transformed.expect │ │ │ │ ├── nullable_access.dart.textual_outline.expect │ │ │ │ ├── nullable_access.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_access.dart.weak.expect │ │ │ │ ├── nullable_access.dart.weak.modular.expect │ │ │ │ ├── nullable_access.dart.weak.outline.expect │ │ │ │ ├── nullable_access.dart.weak.transformed.expect │ │ │ │ ├── nullable_extension.dart │ │ │ │ ├── nullable_extension.dart.strong.expect │ │ │ │ ├── nullable_extension.dart.strong.transformed.expect │ │ │ │ ├── nullable_extension.dart.textual_outline.expect │ │ │ │ ├── nullable_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_extension.dart.weak.expect │ │ │ │ ├── nullable_extension.dart.weak.modular.expect │ │ │ │ ├── nullable_extension.dart.weak.outline.expect │ │ │ │ ├── nullable_extension.dart.weak.transformed.expect │ │ │ │ ├── nullable_null.dart │ │ │ │ ├── nullable_null.dart.strong.expect │ │ │ │ ├── nullable_null.dart.strong.transformed.expect │ │ │ │ ├── nullable_null.dart.textual_outline.expect │ │ │ │ ├── nullable_null.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_null.dart.weak.expect │ │ │ │ ├── nullable_null.dart.weak.modular.expect │ │ │ │ ├── nullable_null.dart.weak.outline.expect │ │ │ │ ├── nullable_null.dart.weak.transformed.expect │ │ │ │ ├── nullable_object_access.dart │ │ │ │ ├── nullable_object_access.dart.strong.expect │ │ │ │ ├── nullable_object_access.dart.strong.transformed.expect │ │ │ │ ├── nullable_object_access.dart.textual_outline.expect │ │ │ │ ├── nullable_object_access.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_object_access.dart.weak.expect │ │ │ │ ├── nullable_object_access.dart.weak.modular.expect │ │ │ │ ├── nullable_object_access.dart.weak.outline.expect │ │ │ │ ├── nullable_object_access.dart.weak.transformed.expect │ │ │ │ ├── nullable_param.dart │ │ │ │ ├── nullable_param.dart.strong.expect │ │ │ │ ├── nullable_param.dart.strong.transformed.expect │ │ │ │ ├── nullable_param.dart.textual_outline.expect │ │ │ │ ├── nullable_param.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_param.dart.weak.expect │ │ │ │ ├── nullable_param.dart.weak.modular.expect │ │ │ │ ├── nullable_param.dart.weak.outline.expect │ │ │ │ ├── nullable_param.dart.weak.transformed.expect │ │ │ │ ├── nullable_receiver.dart │ │ │ │ ├── nullable_receiver.dart.strong.expect │ │ │ │ ├── nullable_receiver.dart.strong.transformed.expect │ │ │ │ ├── nullable_receiver.dart.textual_outline.expect │ │ │ │ ├── nullable_receiver.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_receiver.dart.weak.expect │ │ │ │ ├── nullable_receiver.dart.weak.modular.expect │ │ │ │ ├── nullable_receiver.dart.weak.outline.expect │ │ │ │ ├── nullable_receiver.dart.weak.transformed.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart │ │ │ │ ├── nullable_rhs_of_typedef.dart.strong.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.strong.transformed.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.textual_outline.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.weak.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.weak.modular.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.weak.outline.expect │ │ │ │ ├── nullable_rhs_of_typedef.dart.weak.transformed.expect │ │ │ │ ├── nullable_setter.dart │ │ │ │ ├── nullable_setter.dart.strong.expect │ │ │ │ ├── nullable_setter.dart.strong.transformed.expect │ │ │ │ ├── nullable_setter.dart.textual_outline.expect │ │ │ │ ├── nullable_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_setter.dart.weak.expect │ │ │ │ ├── nullable_setter.dart.weak.modular.expect │ │ │ │ ├── nullable_setter.dart.weak.outline.expect │ │ │ │ ├── nullable_setter.dart.weak.transformed.expect │ │ │ │ ├── numbers.dart │ │ │ │ ├── numbers.dart.strong.expect │ │ │ │ ├── numbers.dart.strong.transformed.expect │ │ │ │ ├── numbers.dart.textual_outline.expect │ │ │ │ ├── numbers.dart.textual_outline_modelled.expect │ │ │ │ ├── numbers.dart.weak.expect │ │ │ │ ├── numbers.dart.weak.modular.expect │ │ │ │ ├── numbers.dart.weak.outline.expect │ │ │ │ ├── numbers.dart.weak.transformed.expect │ │ │ │ ├── numbers_inferred.dart │ │ │ │ ├── numbers_inferred.dart.strong.expect │ │ │ │ ├── numbers_inferred.dart.strong.transformed.expect │ │ │ │ ├── numbers_inferred.dart.textual_outline.expect │ │ │ │ ├── numbers_inferred.dart.textual_outline_modelled.expect │ │ │ │ ├── numbers_inferred.dart.weak.expect │ │ │ │ ├── numbers_inferred.dart.weak.modular.expect │ │ │ │ ├── numbers_inferred.dart.weak.outline.expect │ │ │ │ ├── numbers_inferred.dart.weak.transformed.expect │ │ │ │ ├── override_checks.dart │ │ │ │ ├── override_checks.dart.strong.expect │ │ │ │ ├── override_checks.dart.strong.transformed.expect │ │ │ │ ├── override_checks.dart.textual_outline.expect │ │ │ │ ├── override_checks.dart.textual_outline_modelled.expect │ │ │ │ ├── override_checks.dart.weak.expect │ │ │ │ ├── override_checks.dart.weak.modular.expect │ │ │ │ ├── override_checks.dart.weak.outline.expect │ │ │ │ ├── override_checks.dart.weak.transformed.expect │ │ │ │ ├── override_inference.dart │ │ │ │ ├── override_inference.dart.strong.expect │ │ │ │ ├── override_inference.dart.strong.transformed.expect │ │ │ │ ├── override_inference.dart.textual_outline.expect │ │ │ │ ├── override_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── override_inference.dart.weak.expect │ │ │ │ ├── override_inference.dart.weak.modular.expect │ │ │ │ ├── override_inference.dart.weak.outline.expect │ │ │ │ ├── override_inference.dart.weak.transformed.expect │ │ │ │ ├── parenthesized_stop_shorting.dart │ │ │ │ ├── parenthesized_stop_shorting.dart.strong.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.strong.transformed.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.textual_outline.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.textual_outline_modelled.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.weak.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.weak.modular.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.weak.outline.expect │ │ │ │ ├── parenthesized_stop_shorting.dart.weak.transformed.expect │ │ │ │ ├── pending_nullabilities.dart │ │ │ │ ├── pending_nullabilities.dart.strong.expect │ │ │ │ ├── pending_nullabilities.dart.strong.transformed.expect │ │ │ │ ├── pending_nullabilities.dart.textual_outline.expect │ │ │ │ ├── pending_nullabilities.dart.textual_outline_modelled.expect │ │ │ │ ├── pending_nullabilities.dart.weak.expect │ │ │ │ ├── pending_nullabilities.dart.weak.modular.expect │ │ │ │ ├── pending_nullabilities.dart.weak.outline.expect │ │ │ │ ├── pending_nullabilities.dart.weak.transformed.expect │ │ │ │ ├── platform_definite_assignment │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── platform_nonnullable_fields │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ ├── patch_lib.dart │ │ │ │ │ └── patch_lib2.dart │ │ │ │ ├── platform_optional_parameters │ │ │ │ │ ├── libraries.json │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── origin_lib.dart │ │ │ │ │ └── patch_lib.dart │ │ │ │ ├── potentially_constant_type_as.dart │ │ │ │ ├── potentially_constant_type_as.dart.strong.expect │ │ │ │ ├── potentially_constant_type_as.dart.strong.transformed.expect │ │ │ │ ├── potentially_constant_type_as.dart.textual_outline.expect │ │ │ │ ├── potentially_constant_type_as.dart.textual_outline_modelled.expect │ │ │ │ ├── potentially_constant_type_as.dart.weak.expect │ │ │ │ ├── potentially_constant_type_as.dart.weak.modular.expect │ │ │ │ ├── potentially_constant_type_as.dart.weak.outline.expect │ │ │ │ ├── potentially_constant_type_as.dart.weak.transformed.expect │ │ │ │ ├── potentially_constant_type_is.dart │ │ │ │ ├── potentially_constant_type_is.dart.strong.expect │ │ │ │ ├── potentially_constant_type_is.dart.strong.transformed.expect │ │ │ │ ├── potentially_constant_type_is.dart.textual_outline.expect │ │ │ │ ├── potentially_constant_type_is.dart.textual_outline_modelled.expect │ │ │ │ ├── potentially_constant_type_is.dart.weak.expect │ │ │ │ ├── potentially_constant_type_is.dart.weak.modular.expect │ │ │ │ ├── potentially_constant_type_is.dart.weak.outline.expect │ │ │ │ ├── potentially_constant_type_is.dart.weak.transformed.expect │ │ │ │ ├── potentially_non_nullable_field.dart │ │ │ │ ├── potentially_non_nullable_field.dart.strong.expect │ │ │ │ ├── potentially_non_nullable_field.dart.strong.transformed.expect │ │ │ │ ├── potentially_non_nullable_field.dart.textual_outline.expect │ │ │ │ ├── potentially_non_nullable_field.dart.textual_outline_modelled.expect │ │ │ │ ├── potentially_non_nullable_field.dart.weak.expect │ │ │ │ ├── potentially_non_nullable_field.dart.weak.modular.expect │ │ │ │ ├── potentially_non_nullable_field.dart.weak.outline.expect │ │ │ │ ├── potentially_non_nullable_field.dart.weak.transformed.expect │ │ │ │ ├── potentially_nullable_access.dart │ │ │ │ ├── potentially_nullable_access.dart.strong.expect │ │ │ │ ├── potentially_nullable_access.dart.strong.transformed.expect │ │ │ │ ├── potentially_nullable_access.dart.textual_outline.expect │ │ │ │ ├── potentially_nullable_access.dart.textual_outline_modelled.expect │ │ │ │ ├── potentially_nullable_access.dart.weak.expect │ │ │ │ ├── potentially_nullable_access.dart.weak.modular.expect │ │ │ │ ├── potentially_nullable_access.dart.weak.outline.expect │ │ │ │ ├── potentially_nullable_access.dart.weak.transformed.expect │ │ │ │ ├── pure_index_expressions.dart │ │ │ │ ├── pure_index_expressions.dart.strong.expect │ │ │ │ ├── pure_index_expressions.dart.strong.transformed.expect │ │ │ │ ├── pure_index_expressions.dart.textual_outline.expect │ │ │ │ ├── pure_index_expressions.dart.textual_outline_modelled.expect │ │ │ │ ├── pure_index_expressions.dart.weak.expect │ │ │ │ ├── pure_index_expressions.dart.weak.modular.expect │ │ │ │ ├── pure_index_expressions.dart.weak.outline.expect │ │ │ │ ├── pure_index_expressions.dart.weak.transformed.expect │ │ │ │ ├── redundant_type_casts.dart │ │ │ │ ├── redundant_type_casts.dart.strong.expect │ │ │ │ ├── redundant_type_casts.dart.strong.transformed.expect │ │ │ │ ├── redundant_type_casts.dart.textual_outline.expect │ │ │ │ ├── redundant_type_casts.dart.textual_outline_modelled.expect │ │ │ │ ├── redundant_type_casts.dart.weak.expect │ │ │ │ ├── redundant_type_casts.dart.weak.modular.expect │ │ │ │ ├── redundant_type_casts.dart.weak.outline.expect │ │ │ │ ├── redundant_type_casts.dart.weak.transformed.expect │ │ │ │ ├── required.dart │ │ │ │ ├── required.dart.strong.expect │ │ │ │ ├── required.dart.strong.transformed.expect │ │ │ │ ├── required.dart.textual_outline.expect │ │ │ │ ├── required.dart.textual_outline_modelled.expect │ │ │ │ ├── required.dart.weak.expect │ │ │ │ ├── required.dart.weak.modular.expect │ │ │ │ ├── required.dart.weak.outline.expect │ │ │ │ ├── required.dart.weak.transformed.expect │ │ │ │ ├── required_named_parameter.dart │ │ │ │ ├── required_named_parameter.dart.strong.expect │ │ │ │ ├── required_named_parameter.dart.strong.transformed.expect │ │ │ │ ├── required_named_parameter.dart.textual_outline.expect │ │ │ │ ├── required_named_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── required_named_parameter.dart.weak.expect │ │ │ │ ├── required_named_parameter.dart.weak.modular.expect │ │ │ │ ├── required_named_parameter.dart.weak.outline.expect │ │ │ │ ├── required_named_parameter.dart.weak.transformed.expect │ │ │ │ ├── return_async.dart │ │ │ │ ├── return_async.dart.strong.expect │ │ │ │ ├── return_async.dart.strong.transformed.expect │ │ │ │ ├── return_async.dart.textual_outline.expect │ │ │ │ ├── return_async.dart.textual_outline_modelled.expect │ │ │ │ ├── return_async.dart.weak.expect │ │ │ │ ├── return_async.dart.weak.modular.expect │ │ │ │ ├── return_async.dart.weak.outline.expect │ │ │ │ ├── return_async.dart.weak.transformed.expect │ │ │ │ ├── return_late.dart │ │ │ │ ├── return_late.dart.strong.expect │ │ │ │ ├── return_late.dart.strong.transformed.expect │ │ │ │ ├── return_late.dart.textual_outline.expect │ │ │ │ ├── return_late.dart.textual_outline_modelled.expect │ │ │ │ ├── return_late.dart.weak.expect │ │ │ │ ├── return_late.dart.weak.modular.expect │ │ │ │ ├── return_late.dart.weak.outline.expect │ │ │ │ ├── return_late.dart.weak.transformed.expect │ │ │ │ ├── return_null.dart │ │ │ │ ├── return_null.dart.strong.expect │ │ │ │ ├── return_null.dart.strong.transformed.expect │ │ │ │ ├── return_null.dart.textual_outline.expect │ │ │ │ ├── return_null.dart.textual_outline_modelled.expect │ │ │ │ ├── return_null.dart.weak.expect │ │ │ │ ├── return_null.dart.weak.modular.expect │ │ │ │ ├── return_null.dart.weak.outline.expect │ │ │ │ ├── return_null.dart.weak.transformed.expect │ │ │ │ ├── shorting_null_check.dart │ │ │ │ ├── shorting_null_check.dart.strong.expect │ │ │ │ ├── shorting_null_check.dart.strong.transformed.expect │ │ │ │ ├── shorting_null_check.dart.textual_outline.expect │ │ │ │ ├── shorting_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── shorting_null_check.dart.weak.expect │ │ │ │ ├── shorting_null_check.dart.weak.modular.expect │ │ │ │ ├── shorting_null_check.dart.weak.outline.expect │ │ │ │ ├── shorting_null_check.dart.weak.transformed.expect │ │ │ │ ├── shorting_stop.dart │ │ │ │ ├── shorting_stop.dart.strong.expect │ │ │ │ ├── shorting_stop.dart.strong.transformed.expect │ │ │ │ ├── shorting_stop.dart.textual_outline.expect │ │ │ │ ├── shorting_stop.dart.textual_outline_modelled.expect │ │ │ │ ├── shorting_stop.dart.weak.expect │ │ │ │ ├── shorting_stop.dart.weak.modular.expect │ │ │ │ ├── shorting_stop.dart.weak.outline.expect │ │ │ │ ├── shorting_stop.dart.weak.transformed.expect │ │ │ │ ├── simple_never.dart │ │ │ │ ├── simple_never.dart.strong.expect │ │ │ │ ├── simple_never.dart.strong.transformed.expect │ │ │ │ ├── simple_never.dart.textual_outline.expect │ │ │ │ ├── simple_never.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_never.dart.weak.expect │ │ │ │ ├── simple_never.dart.weak.modular.expect │ │ │ │ ├── simple_never.dart.weak.outline.expect │ │ │ │ ├── simple_never.dart.weak.transformed.expect │ │ │ │ ├── spread_if_null.dart │ │ │ │ ├── spread_if_null.dart.strong.expect │ │ │ │ ├── spread_if_null.dart.strong.transformed.expect │ │ │ │ ├── spread_if_null.dart.textual_outline.expect │ │ │ │ ├── spread_if_null.dart.textual_outline_modelled.expect │ │ │ │ ├── spread_if_null.dart.weak.expect │ │ │ │ ├── spread_if_null.dart.weak.modular.expect │ │ │ │ ├── spread_if_null.dart.weak.outline.expect │ │ │ │ ├── spread_if_null.dart.weak.transformed.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart │ │ │ │ ├── strictly_non_nullable_warnings.dart.strong.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.strong.transformed.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.textual_outline.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.textual_outline_modelled.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.weak.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.weak.modular.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.weak.outline.expect │ │ │ │ ├── strictly_non_nullable_warnings.dart.weak.transformed.expect │ │ │ │ ├── strong_lib_not_ok_from_dill │ │ │ │ │ ├── strong.dart │ │ │ │ │ ├── strong.dart.strong.expect │ │ │ │ │ ├── strong.dart.strong.transformed.expect │ │ │ │ │ ├── strong.dart.textual_outline.expect │ │ │ │ │ ├── strong.dart.textual_outline_modelled.expect │ │ │ │ │ ├── strong.dart.weak.expect │ │ │ │ │ ├── strong.dart.weak.modular.expect │ │ │ │ │ ├── strong.dart.weak.outline.expect │ │ │ │ │ ├── strong.dart.weak.transformed.expect │ │ │ │ │ ├── strong_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── strong_lib_not_ok_from_source │ │ │ │ │ ├── strong.dart │ │ │ │ │ ├── strong.dart.strong.expect │ │ │ │ │ ├── strong.dart.strong.transformed.expect │ │ │ │ │ ├── strong.dart.textual_outline.expect │ │ │ │ │ ├── strong.dart.textual_outline_modelled.expect │ │ │ │ │ ├── strong.dart.weak.expect │ │ │ │ │ ├── strong.dart.weak.modular.expect │ │ │ │ │ ├── strong.dart.weak.outline.expect │ │ │ │ │ ├── strong.dart.weak.transformed.expect │ │ │ │ │ └── strong_lib.dart │ │ │ │ ├── strong_ok_from_dill │ │ │ │ │ ├── strong.dart │ │ │ │ │ ├── strong.dart.strong.expect │ │ │ │ │ ├── strong.dart.strong.transformed.expect │ │ │ │ │ ├── strong.dart.textual_outline.expect │ │ │ │ │ ├── strong.dart.textual_outline_modelled.expect │ │ │ │ │ ├── strong.dart.weak.expect │ │ │ │ │ ├── strong.dart.weak.modular.expect │ │ │ │ │ ├── strong.dart.weak.outline.expect │ │ │ │ │ ├── strong.dart.weak.transformed.expect │ │ │ │ │ ├── strong_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── strong_ok_from_source │ │ │ │ │ ├── strong.dart │ │ │ │ │ ├── strong.dart.strong.expect │ │ │ │ │ ├── strong.dart.strong.transformed.expect │ │ │ │ │ ├── strong.dart.textual_outline.expect │ │ │ │ │ ├── strong.dart.textual_outline_modelled.expect │ │ │ │ │ ├── strong.dart.weak.expect │ │ │ │ │ ├── strong.dart.weak.modular.expect │ │ │ │ │ ├── strong.dart.weak.outline.expect │ │ │ │ │ ├── strong.dart.weak.transformed.expect │ │ │ │ │ └── strong_lib.dart │ │ │ │ ├── strong_package_not_ok_from_dill │ │ │ │ │ ├── opt_in_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── opt_in_lib.dart │ │ │ │ │ │ │ └── opt_out_lib.dart │ │ │ │ │ ├── opt_out_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── regular_lib1.dart │ │ │ │ │ │ │ └── regular_lib2.dart │ │ │ │ │ ├── strong.dart │ │ │ │ │ ├── strong.dart.strong.expect │ │ │ │ │ ├── strong.dart.strong.transformed.expect │ │ │ │ │ ├── strong.dart.textual_outline.expect │ │ │ │ │ ├── strong.dart.textual_outline_modelled.expect │ │ │ │ │ ├── strong.dart.weak.expect │ │ │ │ │ ├── strong.dart.weak.modular.expect │ │ │ │ │ ├── strong.dart.weak.outline.expect │ │ │ │ │ ├── strong.dart.weak.transformed.expect │ │ │ │ │ └── test.options │ │ │ │ ├── strong_package_not_ok_from_source │ │ │ │ │ ├── opt_in_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── opt_in_lib.dart │ │ │ │ │ │ │ └── opt_out_lib.dart │ │ │ │ │ ├── opt_out_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── regular_lib1.dart │ │ │ │ │ │ │ └── regular_lib2.dart │ │ │ │ │ ├── strong.dart │ │ │ │ │ ├── strong.dart.strong.expect │ │ │ │ │ ├── strong.dart.strong.transformed.expect │ │ │ │ │ ├── strong.dart.textual_outline.expect │ │ │ │ │ ├── strong.dart.textual_outline_modelled.expect │ │ │ │ │ ├── strong.dart.weak.expect │ │ │ │ │ ├── strong.dart.weak.modular.expect │ │ │ │ │ ├── strong.dart.weak.outline.expect │ │ │ │ │ └── strong.dart.weak.transformed.expect │ │ │ │ ├── substitution_in_inference.dart │ │ │ │ ├── substitution_in_inference.dart.strong.expect │ │ │ │ ├── substitution_in_inference.dart.strong.transformed.expect │ │ │ │ ├── substitution_in_inference.dart.textual_outline.expect │ │ │ │ ├── substitution_in_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── substitution_in_inference.dart.weak.expect │ │ │ │ ├── substitution_in_inference.dart.weak.modular.expect │ │ │ │ ├── substitution_in_inference.dart.weak.outline.expect │ │ │ │ ├── substitution_in_inference.dart.weak.transformed.expect │ │ │ │ ├── super_bounded_hint.dart │ │ │ │ ├── super_bounded_hint.dart.strong.expect │ │ │ │ ├── super_bounded_hint.dart.strong.transformed.expect │ │ │ │ ├── super_bounded_hint.dart.textual_outline.expect │ │ │ │ ├── super_bounded_hint.dart.textual_outline_modelled.expect │ │ │ │ ├── super_bounded_hint.dart.weak.expect │ │ │ │ ├── super_bounded_hint.dart.weak.modular.expect │ │ │ │ ├── super_bounded_hint.dart.weak.outline.expect │ │ │ │ ├── super_bounded_hint.dart.weak.transformed.expect │ │ │ │ ├── switch_nullable_enum.dart │ │ │ │ ├── switch_nullable_enum.dart.strong.expect │ │ │ │ ├── switch_nullable_enum.dart.strong.transformed.expect │ │ │ │ ├── switch_nullable_enum.dart.textual_outline.expect │ │ │ │ ├── switch_nullable_enum.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_nullable_enum.dart.weak.expect │ │ │ │ ├── switch_nullable_enum.dart.weak.modular.expect │ │ │ │ ├── switch_nullable_enum.dart.weak.outline.expect │ │ │ │ ├── switch_nullable_enum.dart.weak.transformed.expect │ │ │ │ ├── switch_redesign_fall_over.dart │ │ │ │ ├── switch_redesign_fall_over.dart.strong.expect │ │ │ │ ├── switch_redesign_fall_over.dart.strong.transformed.expect │ │ │ │ ├── switch_redesign_fall_over.dart.textual_outline.expect │ │ │ │ ├── switch_redesign_fall_over.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_redesign_fall_over.dart.weak.expect │ │ │ │ ├── switch_redesign_fall_over.dart.weak.modular.expect │ │ │ │ ├── switch_redesign_fall_over.dart.weak.outline.expect │ │ │ │ ├── switch_redesign_fall_over.dart.weak.transformed.expect │ │ │ │ ├── switch_redesign_types.dart │ │ │ │ ├── switch_redesign_types.dart.strong.expect │ │ │ │ ├── switch_redesign_types.dart.strong.transformed.expect │ │ │ │ ├── switch_redesign_types.dart.textual_outline.expect │ │ │ │ ├── switch_redesign_types.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_redesign_types.dart.weak.expect │ │ │ │ ├── switch_redesign_types.dart.weak.modular.expect │ │ │ │ ├── switch_redesign_types.dart.weak.outline.expect │ │ │ │ ├── switch_redesign_types.dart.weak.transformed.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart │ │ │ │ ├── tearoff_from_nullable_receiver.dart.strong.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.strong.transformed.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.textual_outline.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.textual_outline_modelled.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.weak.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.weak.modular.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.weak.outline.expect │ │ │ │ ├── tearoff_from_nullable_receiver.dart.weak.transformed.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.strong.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.strong.transformed.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.textual_outline.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.textual_outline_modelled.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.weak.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.weak.modular.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.weak.outline.expect │ │ │ │ ├── type_constraint_solving_closures_in_upper_and_lower_bounds.dart.weak.transformed.expect │ │ │ │ ├── type_parameter_types.dart │ │ │ │ ├── type_parameter_types.dart.strong.expect │ │ │ │ ├── type_parameter_types.dart.strong.transformed.expect │ │ │ │ ├── type_parameter_types.dart.textual_outline.expect │ │ │ │ ├── type_parameter_types.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameter_types.dart.weak.expect │ │ │ │ ├── type_parameter_types.dart.weak.modular.expect │ │ │ │ ├── type_parameter_types.dart.weak.outline.expect │ │ │ │ ├── type_parameter_types.dart.weak.transformed.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.strong.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.strong.transformed.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.textual_outline.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.textual_outline_modelled.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.modular.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.outline.expect │ │ │ │ ├── uninitialized_non_nullable_late_fields.dart.weak.transformed.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart │ │ │ │ ├── upper_bound_on_promoted_type.dart.strong.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart.strong.transformed.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart.textual_outline.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart.textual_outline_modelled.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart.weak.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart.weak.modular.expect │ │ │ │ ├── upper_bound_on_promoted_type.dart.weak.outline.expect │ │ │ │ └── upper_bound_on_promoted_type.dart.weak.transformed.expect │ │ │ ├── nnbd_mixed │ │ │ │ ├── bad_mixins.dart │ │ │ │ ├── bad_mixins.dart.textual_outline.expect │ │ │ │ ├── bad_mixins.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_mixins.dart.weak.expect │ │ │ │ ├── bad_mixins.dart.weak.modular.expect │ │ │ │ ├── bad_mixins.dart.weak.outline.expect │ │ │ │ ├── bad_mixins_lib.dart │ │ │ │ ├── bounds_from_opt_in.dart │ │ │ │ ├── bounds_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── bounds_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── bounds_from_opt_in.dart.weak.expect │ │ │ │ ├── bounds_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── bounds_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── bounds_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── bounds_from_opt_in_lib.dart │ │ │ │ ├── call_opt_in_through_opt_out.dart │ │ │ │ ├── call_opt_in_through_opt_out.dart.textual_outline.expect │ │ │ │ ├── call_opt_in_through_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── call_opt_in_through_opt_out.dart.weak.expect │ │ │ │ ├── call_opt_in_through_opt_out.dart.weak.modular.expect │ │ │ │ ├── call_opt_in_through_opt_out.dart.weak.outline.expect │ │ │ │ ├── call_opt_in_through_opt_out.dart.weak.transformed.expect │ │ │ │ ├── call_opt_in_through_opt_out_lib.dart │ │ │ │ ├── const_canonical_type.dart │ │ │ │ ├── const_canonical_type.dart.textual_outline.expect │ │ │ │ ├── const_canonical_type.dart.textual_outline_modelled.expect │ │ │ │ ├── const_canonical_type.dart.weak.expect │ │ │ │ ├── const_canonical_type.dart.weak.modular.expect │ │ │ │ ├── const_canonical_type.dart.weak.outline.expect │ │ │ │ ├── const_canonical_type.dart.weak.transformed.expect │ │ │ │ ├── const_canonical_type_lib.dart │ │ │ │ ├── const_is.dart │ │ │ │ ├── const_is.dart.textual_outline.expect │ │ │ │ ├── const_is.dart.textual_outline_modelled.expect │ │ │ │ ├── const_is.dart.weak.expect │ │ │ │ ├── const_is.dart.weak.modular.expect │ │ │ │ ├── const_is.dart.weak.outline.expect │ │ │ │ ├── const_is.dart.weak.transformed.expect │ │ │ │ ├── const_is_lib.dart │ │ │ │ ├── constant_null_is.dart │ │ │ │ ├── constant_null_is.dart.textual_outline.expect │ │ │ │ ├── constant_null_is.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_null_is.dart.weak.expect │ │ │ │ ├── constant_null_is.dart.weak.modular.expect │ │ │ │ ├── constant_null_is.dart.weak.outline.expect │ │ │ │ ├── constant_null_is.dart.weak.transformed.expect │ │ │ │ ├── constant_null_is_lib.dart │ │ │ │ ├── constants.dart │ │ │ │ ├── constants.dart.textual_outline.expect │ │ │ │ ├── constants.dart.textual_outline_modelled.expect │ │ │ │ ├── constants.dart.weak.expect │ │ │ │ ├── constants.dart.weak.modular.expect │ │ │ │ ├── constants.dart.weak.outline.expect │ │ │ │ ├── constants.dart.weak.transformed.expect │ │ │ │ ├── constants_lib.dart │ │ │ │ ├── covariant_from_opt_in.dart │ │ │ │ ├── covariant_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── covariant_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_from_opt_in.dart.weak.expect │ │ │ │ ├── covariant_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── covariant_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── covariant_from_opt_in_lib.dart │ │ │ │ ├── cyclic_typedef.dart │ │ │ │ ├── cyclic_typedef.dart.textual_outline.expect │ │ │ │ ├── cyclic_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── cyclic_typedef.dart.weak.expect │ │ │ │ ├── cyclic_typedef.dart.weak.modular.expect │ │ │ │ ├── cyclic_typedef.dart.weak.outline.expect │ │ │ │ ├── cyclic_typedef.dart.weak.transformed.expect │ │ │ │ ├── cyclic_typedef_lib.dart │ │ │ │ ├── default_type_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── error_on_recompile_with_no_change │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── object_lib.dart │ │ │ │ ├── exhaustiveness.dart │ │ │ │ ├── exhaustiveness.dart.textual_outline.expect │ │ │ │ ├── exhaustiveness.dart.textual_outline_modelled.expect │ │ │ │ ├── exhaustiveness.dart.weak.expect │ │ │ │ ├── exhaustiveness.dart.weak.modular.expect │ │ │ │ ├── exhaustiveness.dart.weak.outline.expect │ │ │ │ ├── exhaustiveness.dart.weak.transformed.expect │ │ │ │ ├── exhaustiveness_lib.dart │ │ │ │ ├── experiment_release_version │ │ │ │ │ ├── allowed_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── not_allowed_package │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ │ ├── test.options │ │ │ │ │ ├── unversioned_lib.dart │ │ │ │ │ ├── versioned_2_10_lib.dart │ │ │ │ │ ├── versioned_2_8_lib.dart │ │ │ │ │ └── versioned_2_9_lib.dart │ │ │ │ ├── export_from_opt_out.dart │ │ │ │ ├── export_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── export_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── export_from_opt_out.dart.weak.expect │ │ │ │ ├── export_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── export_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── export_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── export_from_opt_out_lib1.dart │ │ │ │ ├── export_from_opt_out_lib2.dart │ │ │ │ ├── export_from_opt_out_lib3.dart │ │ │ │ ├── export_from_opt_out_lib4.dart │ │ │ │ ├── export_from_opt_out_lib5.dart │ │ │ │ ├── flatten_type_variable_bound.dart │ │ │ │ ├── flatten_type_variable_bound.dart.textual_outline.expect │ │ │ │ ├── flatten_type_variable_bound.dart.textual_outline_modelled.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.modular.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.outline.expect │ │ │ │ ├── flatten_type_variable_bound.dart.weak.transformed.expect │ │ │ │ ├── flutter_issue_63029 │ │ │ │ │ ├── flutter_issue_63029.dart │ │ │ │ │ ├── flutter_issue_63029.dart.textual_outline.expect │ │ │ │ │ ├── flutter_issue_63029.dart.textual_outline_modelled.expect │ │ │ │ │ ├── flutter_issue_63029.dart.weak.expect │ │ │ │ │ ├── flutter_issue_63029.dart.weak.modular.expect │ │ │ │ │ ├── flutter_issue_63029.dart.weak.outline.expect │ │ │ │ │ ├── flutter_issue_63029.dart.weak.transformed.expect │ │ │ │ │ ├── flutter_issue_63029_lib1.dart │ │ │ │ │ └── flutter_issue_63029_lib2.dart │ │ │ │ ├── folder.options │ │ │ │ ├── generic_override.dart │ │ │ │ ├── generic_override.dart.textual_outline.expect │ │ │ │ ├── generic_override.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_override.dart.weak.expect │ │ │ │ ├── generic_override.dart.weak.modular.expect │ │ │ │ ├── generic_override.dart.weak.outline.expect │ │ │ │ ├── generic_override.dart.weak.transformed.expect │ │ │ │ ├── generic_override_lib.dart │ │ │ │ ├── hierarchy │ │ │ │ │ ├── abstract_extends_field.dart │ │ │ │ │ ├── abstract_extends_field.dart.textual_outline.expect │ │ │ │ │ ├── abstract_extends_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_extends_field.dart.weak.expect │ │ │ │ │ ├── abstract_extends_field.dart.weak.modular.expect │ │ │ │ │ ├── abstract_extends_field.dart.weak.outline.expect │ │ │ │ │ ├── abstract_extends_field.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_extends_final_field.dart │ │ │ │ │ ├── abstract_extends_final_field.dart.textual_outline.expect │ │ │ │ │ ├── abstract_extends_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_extends_final_field.dart.weak.expect │ │ │ │ │ ├── abstract_extends_final_field.dart.weak.modular.expect │ │ │ │ │ ├── abstract_extends_final_field.dart.weak.outline.expect │ │ │ │ │ ├── abstract_extends_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_extends_getter.dart │ │ │ │ │ ├── abstract_extends_getter.dart.textual_outline.expect │ │ │ │ │ ├── abstract_extends_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_extends_getter.dart.weak.expect │ │ │ │ │ ├── abstract_extends_getter.dart.weak.modular.expect │ │ │ │ │ ├── abstract_extends_getter.dart.weak.outline.expect │ │ │ │ │ ├── abstract_extends_getter.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_extends_method.dart │ │ │ │ │ ├── abstract_extends_method.dart.textual_outline.expect │ │ │ │ │ ├── abstract_extends_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_extends_method.dart.weak.expect │ │ │ │ │ ├── abstract_extends_method.dart.weak.modular.expect │ │ │ │ │ ├── abstract_extends_method.dart.weak.outline.expect │ │ │ │ │ ├── abstract_extends_method.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_extends_setter.dart │ │ │ │ │ ├── abstract_extends_setter.dart.textual_outline.expect │ │ │ │ │ ├── abstract_extends_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_extends_setter.dart.weak.expect │ │ │ │ │ ├── abstract_extends_setter.dart.weak.modular.expect │ │ │ │ │ ├── abstract_extends_setter.dart.weak.outline.expect │ │ │ │ │ ├── abstract_extends_setter.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_implements_field.dart │ │ │ │ │ ├── abstract_implements_field.dart.textual_outline.expect │ │ │ │ │ ├── abstract_implements_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_implements_field.dart.weak.expect │ │ │ │ │ ├── abstract_implements_field.dart.weak.modular.expect │ │ │ │ │ ├── abstract_implements_field.dart.weak.outline.expect │ │ │ │ │ ├── abstract_implements_field.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_implements_final_field.dart │ │ │ │ │ ├── abstract_implements_final_field.dart.textual_outline.expect │ │ │ │ │ ├── abstract_implements_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_implements_final_field.dart.weak.expect │ │ │ │ │ ├── abstract_implements_final_field.dart.weak.modular.expect │ │ │ │ │ ├── abstract_implements_final_field.dart.weak.outline.expect │ │ │ │ │ ├── abstract_implements_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_implements_getter.dart │ │ │ │ │ ├── abstract_implements_getter.dart.textual_outline.expect │ │ │ │ │ ├── abstract_implements_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_implements_getter.dart.weak.expect │ │ │ │ │ ├── abstract_implements_getter.dart.weak.modular.expect │ │ │ │ │ ├── abstract_implements_getter.dart.weak.outline.expect │ │ │ │ │ ├── abstract_implements_getter.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_implements_method.dart │ │ │ │ │ ├── abstract_implements_method.dart.textual_outline.expect │ │ │ │ │ ├── abstract_implements_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_implements_method.dart.weak.expect │ │ │ │ │ ├── abstract_implements_method.dart.weak.modular.expect │ │ │ │ │ ├── abstract_implements_method.dart.weak.outline.expect │ │ │ │ │ ├── abstract_implements_method.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_implements_setter.dart │ │ │ │ │ ├── abstract_implements_setter.dart.textual_outline.expect │ │ │ │ │ ├── abstract_implements_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_implements_setter.dart.weak.expect │ │ │ │ │ ├── abstract_implements_setter.dart.weak.modular.expect │ │ │ │ │ ├── abstract_implements_setter.dart.weak.outline.expect │ │ │ │ │ ├── abstract_implements_setter.dart.weak.transformed.expect │ │ │ │ │ ├── abstract_mixin.dart │ │ │ │ │ ├── abstract_mixin.dart.textual_outline.expect │ │ │ │ │ ├── abstract_mixin.dart.textual_outline_modelled.expect │ │ │ │ │ ├── abstract_mixin.dart.weak.expect │ │ │ │ │ ├── abstract_mixin.dart.weak.modular.expect │ │ │ │ │ ├── abstract_mixin.dart.weak.outline.expect │ │ │ │ │ ├── abstract_mixin.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_extends_field.dart │ │ │ │ │ ├── concrete_extends_field.dart.textual_outline.expect │ │ │ │ │ ├── concrete_extends_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_extends_field.dart.weak.expect │ │ │ │ │ ├── concrete_extends_field.dart.weak.modular.expect │ │ │ │ │ ├── concrete_extends_field.dart.weak.outline.expect │ │ │ │ │ ├── concrete_extends_field.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_extends_final_field.dart │ │ │ │ │ ├── concrete_extends_final_field.dart.textual_outline.expect │ │ │ │ │ ├── concrete_extends_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_extends_final_field.dart.weak.expect │ │ │ │ │ ├── concrete_extends_final_field.dart.weak.modular.expect │ │ │ │ │ ├── concrete_extends_final_field.dart.weak.outline.expect │ │ │ │ │ ├── concrete_extends_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_extends_getter.dart │ │ │ │ │ ├── concrete_extends_getter.dart.textual_outline.expect │ │ │ │ │ ├── concrete_extends_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_extends_getter.dart.weak.expect │ │ │ │ │ ├── concrete_extends_getter.dart.weak.modular.expect │ │ │ │ │ ├── concrete_extends_getter.dart.weak.outline.expect │ │ │ │ │ ├── concrete_extends_getter.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_extends_method.dart │ │ │ │ │ ├── concrete_extends_method.dart.textual_outline.expect │ │ │ │ │ ├── concrete_extends_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_extends_method.dart.weak.expect │ │ │ │ │ ├── concrete_extends_method.dart.weak.modular.expect │ │ │ │ │ ├── concrete_extends_method.dart.weak.outline.expect │ │ │ │ │ ├── concrete_extends_method.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_extends_setter.dart │ │ │ │ │ ├── concrete_extends_setter.dart.textual_outline.expect │ │ │ │ │ ├── concrete_extends_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_extends_setter.dart.weak.expect │ │ │ │ │ ├── concrete_extends_setter.dart.weak.modular.expect │ │ │ │ │ ├── concrete_extends_setter.dart.weak.outline.expect │ │ │ │ │ ├── concrete_extends_setter.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_implements_field.dart │ │ │ │ │ ├── concrete_implements_field.dart.textual_outline.expect │ │ │ │ │ ├── concrete_implements_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_implements_field.dart.weak.expect │ │ │ │ │ ├── concrete_implements_field.dart.weak.modular.expect │ │ │ │ │ ├── concrete_implements_field.dart.weak.outline.expect │ │ │ │ │ ├── concrete_implements_field.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_implements_final_field.dart │ │ │ │ │ ├── concrete_implements_final_field.dart.textual_outline.expect │ │ │ │ │ ├── concrete_implements_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_implements_final_field.dart.weak.expect │ │ │ │ │ ├── concrete_implements_final_field.dart.weak.modular.expect │ │ │ │ │ ├── concrete_implements_final_field.dart.weak.outline.expect │ │ │ │ │ ├── concrete_implements_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_implements_getter.dart │ │ │ │ │ ├── concrete_implements_getter.dart.textual_outline.expect │ │ │ │ │ ├── concrete_implements_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_implements_getter.dart.weak.expect │ │ │ │ │ ├── concrete_implements_getter.dart.weak.modular.expect │ │ │ │ │ ├── concrete_implements_getter.dart.weak.outline.expect │ │ │ │ │ ├── concrete_implements_getter.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_implements_method.dart │ │ │ │ │ ├── concrete_implements_method.dart.textual_outline.expect │ │ │ │ │ ├── concrete_implements_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_implements_method.dart.weak.expect │ │ │ │ │ ├── concrete_implements_method.dart.weak.modular.expect │ │ │ │ │ ├── concrete_implements_method.dart.weak.outline.expect │ │ │ │ │ ├── concrete_implements_method.dart.weak.transformed.expect │ │ │ │ │ ├── concrete_implements_setter.dart │ │ │ │ │ ├── concrete_implements_setter.dart.textual_outline.expect │ │ │ │ │ ├── concrete_implements_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── concrete_implements_setter.dart.weak.expect │ │ │ │ │ ├── concrete_implements_setter.dart.weak.modular.expect │ │ │ │ │ ├── concrete_implements_setter.dart.weak.outline.expect │ │ │ │ │ ├── concrete_implements_setter.dart.weak.transformed.expect │ │ │ │ │ ├── conflict.dart │ │ │ │ │ ├── conflict.dart.textual_outline.expect │ │ │ │ │ ├── conflict.dart.textual_outline_modelled.expect │ │ │ │ │ ├── conflict.dart.weak.expect │ │ │ │ │ ├── conflict.dart.weak.modular.expect │ │ │ │ │ ├── conflict.dart.weak.outline.expect │ │ │ │ │ ├── covariance.dart │ │ │ │ │ ├── covariance.dart.textual_outline.expect │ │ │ │ │ ├── covariance.dart.textual_outline_modelled.expect │ │ │ │ │ ├── covariance.dart.weak.expect │ │ │ │ │ ├── covariance.dart.weak.modular.expect │ │ │ │ │ ├── covariance.dart.weak.outline.expect │ │ │ │ │ ├── covariance.dart.weak.transformed.expect │ │ │ │ │ ├── covariant_equals.dart │ │ │ │ │ ├── covariant_equals.dart.textual_outline.expect │ │ │ │ │ ├── covariant_equals.dart.textual_outline_modelled.expect │ │ │ │ │ ├── covariant_equals.dart.weak.expect │ │ │ │ │ ├── covariant_equals.dart.weak.modular.expect │ │ │ │ │ ├── covariant_equals.dart.weak.outline.expect │ │ │ │ │ ├── covariant_equals.dart.weak.transformed.expect │ │ │ │ │ ├── declares.dart │ │ │ │ │ ├── declares.dart.textual_outline.expect │ │ │ │ │ ├── declares.dart.textual_outline_modelled.expect │ │ │ │ │ ├── declares.dart.weak.expect │ │ │ │ │ ├── declares.dart.weak.modular.expect │ │ │ │ │ ├── declares.dart.weak.outline.expect │ │ │ │ │ ├── declares.dart.weak.transformed.expect │ │ │ │ │ ├── duplicates.dart │ │ │ │ │ ├── duplicates.dart.textual_outline.expect │ │ │ │ │ ├── duplicates.dart.textual_outline_modelled.expect │ │ │ │ │ ├── duplicates.dart.weak.expect │ │ │ │ │ ├── duplicates.dart.weak.modular.expect │ │ │ │ │ ├── duplicates.dart.weak.outline.expect │ │ │ │ │ ├── extend_multiple_field.dart │ │ │ │ │ ├── extend_multiple_field.dart.textual_outline.expect │ │ │ │ │ ├── extend_multiple_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── extend_multiple_field.dart.weak.expect │ │ │ │ │ ├── extend_multiple_field.dart.weak.modular.expect │ │ │ │ │ ├── extend_multiple_field.dart.weak.outline.expect │ │ │ │ │ ├── extend_multiple_field.dart.weak.transformed.expect │ │ │ │ │ ├── extend_multiple_final_field.dart │ │ │ │ │ ├── extend_multiple_final_field.dart.textual_outline.expect │ │ │ │ │ ├── extend_multiple_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── extend_multiple_final_field.dart.weak.expect │ │ │ │ │ ├── extend_multiple_final_field.dart.weak.modular.expect │ │ │ │ │ ├── extend_multiple_final_field.dart.weak.outline.expect │ │ │ │ │ ├── extend_multiple_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── extend_multiple_getter.dart │ │ │ │ │ ├── extend_multiple_getter.dart.textual_outline.expect │ │ │ │ │ ├── extend_multiple_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── extend_multiple_getter.dart.weak.expect │ │ │ │ │ ├── extend_multiple_getter.dart.weak.modular.expect │ │ │ │ │ ├── extend_multiple_getter.dart.weak.outline.expect │ │ │ │ │ ├── extend_multiple_getter.dart.weak.transformed.expect │ │ │ │ │ ├── extend_multiple_method.dart │ │ │ │ │ ├── extend_multiple_method.dart.textual_outline.expect │ │ │ │ │ ├── extend_multiple_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── extend_multiple_method.dart.weak.expect │ │ │ │ │ ├── extend_multiple_method.dart.weak.modular.expect │ │ │ │ │ ├── extend_multiple_method.dart.weak.outline.expect │ │ │ │ │ ├── extend_multiple_method.dart.weak.transformed.expect │ │ │ │ │ ├── extend_multiple_setter.dart │ │ │ │ │ ├── extend_multiple_setter.dart.textual_outline.expect │ │ │ │ │ ├── extend_multiple_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── extend_multiple_setter.dart.weak.expect │ │ │ │ │ ├── extend_multiple_setter.dart.weak.modular.expect │ │ │ │ │ ├── extend_multiple_setter.dart.weak.outline.expect │ │ │ │ │ ├── extend_multiple_setter.dart.weak.transformed.expect │ │ │ │ │ ├── forwarding_semi_stub_field.dart │ │ │ │ │ ├── forwarding_semi_stub_field.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_semi_stub_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_semi_stub_field.dart.weak.expect │ │ │ │ │ ├── forwarding_semi_stub_field.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_semi_stub_field.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_semi_stub_method.dart │ │ │ │ │ ├── forwarding_semi_stub_method.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_semi_stub_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_semi_stub_method.dart.weak.expect │ │ │ │ │ ├── forwarding_semi_stub_method.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_semi_stub_method.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_semi_stub_setter.dart │ │ │ │ │ ├── forwarding_semi_stub_setter.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_semi_stub_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_semi_stub_setter.dart.weak.expect │ │ │ │ │ ├── forwarding_semi_stub_setter.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_semi_stub_setter.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_stub_call.dart │ │ │ │ │ ├── forwarding_stub_call.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_stub_call.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_stub_call.dart.weak.expect │ │ │ │ │ ├── forwarding_stub_call.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_stub_call.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_stub_call.dart.weak.transformed.expect │ │ │ │ │ ├── forwarding_stubs_field.dart │ │ │ │ │ ├── forwarding_stubs_field.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_stubs_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_stubs_field.dart.weak.expect │ │ │ │ │ ├── forwarding_stubs_field.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_stubs_field.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_stubs_field.dart.weak.transformed.expect │ │ │ │ │ ├── forwarding_stubs_method.dart │ │ │ │ │ ├── forwarding_stubs_method.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_stubs_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_stubs_method.dart.weak.expect │ │ │ │ │ ├── forwarding_stubs_method.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_stubs_method.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_stubs_method.dart.weak.transformed.expect │ │ │ │ │ ├── forwarding_stubs_setter.dart │ │ │ │ │ ├── forwarding_stubs_setter.dart.textual_outline.expect │ │ │ │ │ ├── forwarding_stubs_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── forwarding_stubs_setter.dart.weak.expect │ │ │ │ │ ├── forwarding_stubs_setter.dart.weak.modular.expect │ │ │ │ │ ├── forwarding_stubs_setter.dart.weak.outline.expect │ │ │ │ │ ├── forwarding_stubs_setter.dart.weak.transformed.expect │ │ │ │ │ ├── getter_setter.dart │ │ │ │ │ ├── getter_setter.dart.textual_outline.expect │ │ │ │ │ ├── getter_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── getter_setter.dart.weak.expect │ │ │ │ │ ├── getter_setter.dart.weak.modular.expect │ │ │ │ │ ├── getter_setter.dart.weak.outline.expect │ │ │ │ │ ├── implement_multiple_field.dart │ │ │ │ │ ├── implement_multiple_field.dart.textual_outline.expect │ │ │ │ │ ├── implement_multiple_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── implement_multiple_field.dart.weak.expect │ │ │ │ │ ├── implement_multiple_field.dart.weak.modular.expect │ │ │ │ │ ├── implement_multiple_field.dart.weak.outline.expect │ │ │ │ │ ├── implement_multiple_field.dart.weak.transformed.expect │ │ │ │ │ ├── implement_multiple_final_field.dart │ │ │ │ │ ├── implement_multiple_final_field.dart.textual_outline.expect │ │ │ │ │ ├── implement_multiple_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── implement_multiple_final_field.dart.weak.expect │ │ │ │ │ ├── implement_multiple_final_field.dart.weak.modular.expect │ │ │ │ │ ├── implement_multiple_final_field.dart.weak.outline.expect │ │ │ │ │ ├── implement_multiple_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── implement_multiple_getter.dart │ │ │ │ │ ├── implement_multiple_getter.dart.textual_outline.expect │ │ │ │ │ ├── implement_multiple_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── implement_multiple_getter.dart.weak.expect │ │ │ │ │ ├── implement_multiple_getter.dart.weak.modular.expect │ │ │ │ │ ├── implement_multiple_getter.dart.weak.outline.expect │ │ │ │ │ ├── implement_multiple_getter.dart.weak.transformed.expect │ │ │ │ │ ├── implement_multiple_method.dart │ │ │ │ │ ├── implement_multiple_method.dart.textual_outline.expect │ │ │ │ │ ├── implement_multiple_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── implement_multiple_method.dart.weak.expect │ │ │ │ │ ├── implement_multiple_method.dart.weak.modular.expect │ │ │ │ │ ├── implement_multiple_method.dart.weak.outline.expect │ │ │ │ │ ├── implement_multiple_method.dart.weak.transformed.expect │ │ │ │ │ ├── implement_multiple_setter.dart │ │ │ │ │ ├── implement_multiple_setter.dart.textual_outline.expect │ │ │ │ │ ├── implement_multiple_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── implement_multiple_setter.dart.weak.expect │ │ │ │ │ ├── implement_multiple_setter.dart.weak.modular.expect │ │ │ │ │ ├── implement_multiple_setter.dart.weak.outline.expect │ │ │ │ │ ├── implement_multiple_setter.dart.weak.transformed.expect │ │ │ │ │ ├── in_dill_out_in │ │ │ │ │ │ ├── in_out_in.dart │ │ │ │ │ │ ├── in_out_in.dart.textual_outline.expect │ │ │ │ │ │ ├── in_out_in.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.modular.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.outline.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.transformed.expect │ │ │ │ │ │ ├── in_out_in_lib1.dart │ │ │ │ │ │ ├── in_out_in_lib2.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── in_out_dill_in │ │ │ │ │ │ ├── in_out_in.dart │ │ │ │ │ │ ├── in_out_in.dart.textual_outline.expect │ │ │ │ │ │ ├── in_out_in.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.modular.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.outline.expect │ │ │ │ │ │ ├── in_out_in.dart.weak.transformed.expect │ │ │ │ │ │ ├── in_out_in_lib1.dart │ │ │ │ │ │ ├── in_out_in_lib2.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── in_out_in.dart │ │ │ │ │ ├── in_out_in.dart.textual_outline.expect │ │ │ │ │ ├── in_out_in.dart.textual_outline_modelled.expect │ │ │ │ │ ├── in_out_in.dart.weak.expect │ │ │ │ │ ├── in_out_in.dart.weak.modular.expect │ │ │ │ │ ├── in_out_in.dart.weak.outline.expect │ │ │ │ │ ├── in_out_in.dart.weak.transformed.expect │ │ │ │ │ ├── in_out_in_lib1.dart │ │ │ │ │ ├── in_out_in_lib2.dart │ │ │ │ │ ├── inherited_implements.dart │ │ │ │ │ ├── inherited_implements.dart.textual_outline.expect │ │ │ │ │ ├── inherited_implements.dart.textual_outline_modelled.expect │ │ │ │ │ ├── inherited_implements.dart.weak.expect │ │ │ │ │ ├── inherited_implements.dart.weak.modular.expect │ │ │ │ │ ├── inherited_implements.dart.weak.outline.expect │ │ │ │ │ ├── inherited_implements.dart.weak.transformed.expect │ │ │ │ │ ├── member_signature.dart │ │ │ │ │ ├── member_signature.dart.textual_outline.expect │ │ │ │ │ ├── member_signature.dart.textual_outline_modelled.expect │ │ │ │ │ ├── member_signature.dart.weak.expect │ │ │ │ │ ├── member_signature.dart.weak.modular.expect │ │ │ │ │ ├── member_signature.dart.weak.outline.expect │ │ │ │ │ ├── member_signature.dart.weak.transformed.expect │ │ │ │ │ ├── member_signature_lib.dart │ │ │ │ │ ├── mix_in_field.dart │ │ │ │ │ ├── mix_in_field.dart.textual_outline.expect │ │ │ │ │ ├── mix_in_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mix_in_field.dart.weak.expect │ │ │ │ │ ├── mix_in_field.dart.weak.modular.expect │ │ │ │ │ ├── mix_in_field.dart.weak.outline.expect │ │ │ │ │ ├── mix_in_field.dart.weak.transformed.expect │ │ │ │ │ ├── mix_in_final_field.dart │ │ │ │ │ ├── mix_in_final_field.dart.textual_outline.expect │ │ │ │ │ ├── mix_in_final_field.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mix_in_final_field.dart.weak.expect │ │ │ │ │ ├── mix_in_final_field.dart.weak.modular.expect │ │ │ │ │ ├── mix_in_final_field.dart.weak.outline.expect │ │ │ │ │ ├── mix_in_final_field.dart.weak.transformed.expect │ │ │ │ │ ├── mix_in_getter.dart │ │ │ │ │ ├── mix_in_getter.dart.textual_outline.expect │ │ │ │ │ ├── mix_in_getter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mix_in_getter.dart.weak.expect │ │ │ │ │ ├── mix_in_getter.dart.weak.modular.expect │ │ │ │ │ ├── mix_in_getter.dart.weak.outline.expect │ │ │ │ │ ├── mix_in_getter.dart.weak.transformed.expect │ │ │ │ │ ├── mix_in_method.dart │ │ │ │ │ ├── mix_in_method.dart.textual_outline.expect │ │ │ │ │ ├── mix_in_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mix_in_method.dart.weak.expect │ │ │ │ │ ├── mix_in_method.dart.weak.modular.expect │ │ │ │ │ ├── mix_in_method.dart.weak.outline.expect │ │ │ │ │ ├── mix_in_method.dart.weak.transformed.expect │ │ │ │ │ ├── mix_in_override.dart │ │ │ │ │ ├── mix_in_override.dart.textual_outline.expect │ │ │ │ │ ├── mix_in_override.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mix_in_override.dart.weak.expect │ │ │ │ │ ├── mix_in_override.dart.weak.modular.expect │ │ │ │ │ ├── mix_in_override.dart.weak.outline.expect │ │ │ │ │ ├── mix_in_setter.dart │ │ │ │ │ ├── mix_in_setter.dart.textual_outline.expect │ │ │ │ │ ├── mix_in_setter.dart.textual_outline_modelled.expect │ │ │ │ │ ├── mix_in_setter.dart.weak.expect │ │ │ │ │ ├── mix_in_setter.dart.weak.modular.expect │ │ │ │ │ ├── mix_in_setter.dart.weak.outline.expect │ │ │ │ │ ├── mix_in_setter.dart.weak.transformed.expect │ │ │ │ │ ├── mixin_from_dill │ │ │ │ │ │ ├── main.dart │ │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ │ ├── opt_in_lib1.dart │ │ │ │ │ │ ├── opt_in_lib2.dart │ │ │ │ │ │ ├── opt_out_lib.dart │ │ │ │ │ │ └── test.options │ │ │ │ │ ├── no_such_method.dart │ │ │ │ │ ├── no_such_method.dart.textual_outline.expect │ │ │ │ │ ├── no_such_method.dart.textual_outline_modelled.expect │ │ │ │ │ ├── no_such_method.dart.weak.expect │ │ │ │ │ ├── no_such_method.dart.weak.modular.expect │ │ │ │ │ ├── no_such_method.dart.weak.outline.expect │ │ │ │ │ ├── no_such_method.dart.weak.transformed.expect │ │ │ │ │ ├── opt_out.dart │ │ │ │ │ ├── opt_out.dart.textual_outline.expect │ │ │ │ │ ├── opt_out.dart.textual_outline_modelled.expect │ │ │ │ │ ├── opt_out.dart.weak.expect │ │ │ │ │ ├── opt_out.dart.weak.modular.expect │ │ │ │ │ ├── opt_out.dart.weak.outline.expect │ │ │ │ │ ├── opt_out.dart.weak.transformed.expect │ │ │ │ │ ├── override.dart │ │ │ │ │ ├── override.dart.textual_outline.expect │ │ │ │ │ ├── override.dart.textual_outline_modelled.expect │ │ │ │ │ ├── override.dart.weak.expect │ │ │ │ │ ├── override.dart.weak.modular.expect │ │ │ │ │ ├── override.dart.weak.outline.expect │ │ │ │ │ ├── redirecting_factory.dart │ │ │ │ │ ├── redirecting_factory.dart.textual_outline.expect │ │ │ │ │ ├── redirecting_factory.dart.textual_outline_modelled.expect │ │ │ │ │ ├── redirecting_factory.dart.weak.expect │ │ │ │ │ ├── redirecting_factory.dart.weak.modular.expect │ │ │ │ │ ├── redirecting_factory.dart.weak.outline.expect │ │ │ │ │ ├── redirecting_factory.dart.weak.transformed.expect │ │ │ │ │ ├── static.dart │ │ │ │ │ ├── static.dart.textual_outline.expect │ │ │ │ │ ├── static.dart.textual_outline_modelled.expect │ │ │ │ │ ├── static.dart.weak.expect │ │ │ │ │ ├── static.dart.weak.modular.expect │ │ │ │ │ ├── static.dart.weak.outline.expect │ │ │ │ │ └── static.dart.weak.transformed.expect │ │ │ │ ├── infer_constraints_from_opt_in.dart │ │ │ │ ├── infer_constraints_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── infer_constraints_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_constraints_from_opt_in.dart.weak.expect │ │ │ │ ├── infer_constraints_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── infer_constraints_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── infer_constraints_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── infer_constraints_from_opt_in_lib.dart │ │ │ │ ├── infer_from_opt_in.dart │ │ │ │ ├── infer_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── infer_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_opt_in.dart.weak.expect │ │ │ │ ├── infer_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── infer_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── infer_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── infer_from_opt_in_lib.dart │ │ │ │ ├── infer_from_opt_out.dart │ │ │ │ ├── infer_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── infer_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_from_opt_out.dart.weak.expect │ │ │ │ ├── infer_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── infer_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── infer_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── infer_from_opt_out_lib.dart │ │ │ │ ├── infer_in_legacy_from_opted_in.dart │ │ │ │ ├── infer_in_legacy_from_opted_in.dart.textual_outline.expect │ │ │ │ ├── infer_in_legacy_from_opted_in.dart.textual_outline_modelled.expect │ │ │ │ ├── infer_in_legacy_from_opted_in.dart.weak.expect │ │ │ │ ├── infer_in_legacy_from_opted_in.dart.weak.modular.expect │ │ │ │ ├── infer_in_legacy_from_opted_in.dart.weak.outline.expect │ │ │ │ ├── infer_in_legacy_from_opted_in.dart.weak.transformed.expect │ │ │ │ ├── infer_in_legacy_from_opted_in_lib.dart │ │ │ │ ├── infer_object_from_dynamic │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ └── opt_out_lib.dart │ │ │ │ ├── inheritance_from_opt_in.dart │ │ │ │ ├── inheritance_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── inheritance_from_opt_in.dart.weak.expect │ │ │ │ ├── inheritance_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── inheritance_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── inheritance_from_opt_in_lib.dart │ │ │ │ ├── inheritance_from_opt_out.dart │ │ │ │ ├── inheritance_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── inheritance_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── inheritance_from_opt_out.dart.weak.expect │ │ │ │ ├── inheritance_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── inheritance_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── inheritance_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── inheritance_from_opt_out_lib.dart │ │ │ │ ├── issue39666.dart │ │ │ │ ├── issue39666.dart.textual_outline.expect │ │ │ │ ├── issue39666.dart.textual_outline_modelled.expect │ │ │ │ ├── issue39666.dart.weak.expect │ │ │ │ ├── issue39666.dart.weak.modular.expect │ │ │ │ ├── issue39666.dart.weak.outline.expect │ │ │ │ ├── issue39666.dart.weak.transformed.expect │ │ │ │ ├── issue39666_lib.dart │ │ │ │ ├── issue40512 │ │ │ │ │ ├── issue40512.dart │ │ │ │ │ ├── issue40512.dart.textual_outline.expect │ │ │ │ │ ├── issue40512.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue40512.dart.weak.expect │ │ │ │ │ ├── issue40512.dart.weak.modular.expect │ │ │ │ │ ├── issue40512.dart.weak.outline.expect │ │ │ │ │ ├── issue40512.dart.weak.transformed.expect │ │ │ │ │ ├── issue40512.no_link.dart │ │ │ │ │ ├── issue40512.no_link.dart.textual_outline.expect │ │ │ │ │ ├── issue40512.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue40512.no_link.dart.weak.expect │ │ │ │ │ ├── issue40512.no_link.dart.weak.modular.expect │ │ │ │ │ ├── issue40512.no_link.dart.weak.outline.expect │ │ │ │ │ ├── issue40512.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── issue40512_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue41180.dart │ │ │ │ ├── issue41180.dart.textual_outline.expect │ │ │ │ ├── issue41180.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41180.dart.weak.expect │ │ │ │ ├── issue41180.dart.weak.modular.expect │ │ │ │ ├── issue41180.dart.weak.outline.expect │ │ │ │ ├── issue41180.dart.weak.transformed.expect │ │ │ │ ├── issue41180_lib.dart │ │ │ │ ├── issue41210a │ │ │ │ │ ├── issue41210.dart │ │ │ │ │ ├── issue41210.dart.textual_outline.expect │ │ │ │ │ ├── issue41210.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41210.dart.weak.expect │ │ │ │ │ ├── issue41210.dart.weak.modular.expect │ │ │ │ │ ├── issue41210.dart.weak.outline.expect │ │ │ │ │ ├── issue41210.dart.weak.transformed.expect │ │ │ │ │ ├── issue41210.no_link.dart │ │ │ │ │ ├── issue41210.no_link.dart.textual_outline.expect │ │ │ │ │ ├── issue41210.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.modular.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.outline.expect │ │ │ │ │ ├── issue41210.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── issue41210_lib1.dart │ │ │ │ │ ├── issue41210_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue41210b.dart │ │ │ │ ├── issue41210b.dart.textual_outline.expect │ │ │ │ ├── issue41210b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41210b.dart.weak.expect │ │ │ │ ├── issue41210b.dart.weak.modular.expect │ │ │ │ ├── issue41210b.dart.weak.outline.expect │ │ │ │ ├── issue41210b.dart.weak.transformed.expect │ │ │ │ ├── issue41210b_lib1.dart │ │ │ │ ├── issue41210b_lib2.dart │ │ │ │ ├── issue41435.dart │ │ │ │ ├── issue41435.dart.textual_outline.expect │ │ │ │ ├── issue41435.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41435.dart.weak.expect │ │ │ │ ├── issue41435.dart.weak.modular.expect │ │ │ │ ├── issue41435.dart.weak.outline.expect │ │ │ │ ├── issue41435.dart.weak.transformed.expect │ │ │ │ ├── issue41435_lib.dart │ │ │ │ ├── issue41496.dart │ │ │ │ ├── issue41496.dart.textual_outline.expect │ │ │ │ ├── issue41496.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41496.dart.weak.expect │ │ │ │ ├── issue41496.dart.weak.modular.expect │ │ │ │ ├── issue41496.dart.weak.outline.expect │ │ │ │ ├── issue41496.dart.weak.transformed.expect │ │ │ │ ├── issue41496_lib.dart │ │ │ │ ├── issue41496b.dart │ │ │ │ ├── issue41496b.dart.textual_outline.expect │ │ │ │ ├── issue41496b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41496b.dart.weak.expect │ │ │ │ ├── issue41496b.dart.weak.modular.expect │ │ │ │ ├── issue41496b.dart.weak.outline.expect │ │ │ │ ├── issue41496b.dart.weak.transformed.expect │ │ │ │ ├── issue41496b_lib.dart │ │ │ │ ├── issue41498.dart │ │ │ │ ├── issue41498.dart.textual_outline.expect │ │ │ │ ├── issue41498.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41498.dart.weak.expect │ │ │ │ ├── issue41498.dart.weak.modular.expect │ │ │ │ ├── issue41498.dart.weak.outline.expect │ │ │ │ ├── issue41498.dart.weak.transformed.expect │ │ │ │ ├── issue41498_lib.dart │ │ │ │ ├── issue41498b.dart │ │ │ │ ├── issue41498b.dart.textual_outline.expect │ │ │ │ ├── issue41498b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41498b.dart.weak.expect │ │ │ │ ├── issue41498b.dart.weak.modular.expect │ │ │ │ ├── issue41498b.dart.weak.outline.expect │ │ │ │ ├── issue41498b.dart.weak.transformed.expect │ │ │ │ ├── issue41498b_lib.dart │ │ │ │ ├── issue41499.dart │ │ │ │ ├── issue41499.dart.textual_outline.expect │ │ │ │ ├── issue41499.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41499.dart.weak.expect │ │ │ │ ├── issue41499.dart.weak.modular.expect │ │ │ │ ├── issue41499.dart.weak.outline.expect │ │ │ │ ├── issue41499.dart.weak.transformed.expect │ │ │ │ ├── issue41499_lib.dart │ │ │ │ ├── issue41499b.dart │ │ │ │ ├── issue41499b.dart.textual_outline.expect │ │ │ │ ├── issue41499b.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41499b.dart.weak.expect │ │ │ │ ├── issue41499b.dart.weak.modular.expect │ │ │ │ ├── issue41499b.dart.weak.outline.expect │ │ │ │ ├── issue41499b.dart.weak.transformed.expect │ │ │ │ ├── issue41499b_lib.dart │ │ │ │ ├── issue41567.dart │ │ │ │ ├── issue41567.dart.textual_outline.expect │ │ │ │ ├── issue41567.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41567.dart.weak.expect │ │ │ │ ├── issue41567.dart.weak.modular.expect │ │ │ │ ├── issue41567.dart.weak.outline.expect │ │ │ │ ├── issue41567_lib.dart │ │ │ │ ├── issue41597.dart │ │ │ │ ├── issue41597.dart.textual_outline.expect │ │ │ │ ├── issue41597.dart.weak.expect │ │ │ │ ├── issue41597.dart.weak.modular.expect │ │ │ │ ├── issue41597.dart.weak.outline.expect │ │ │ │ ├── issue41597.dart.weak.transformed.expect │ │ │ │ ├── issue41597_lib.dart │ │ │ │ ├── issue41602.dart │ │ │ │ ├── issue41602.dart.textual_outline.expect │ │ │ │ ├── issue41602.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41602.dart.weak.expect │ │ │ │ ├── issue41602.dart.weak.modular.expect │ │ │ │ ├── issue41602.dart.weak.outline.expect │ │ │ │ ├── issue41602.dart.weak.transformed.expect │ │ │ │ ├── issue41657.dart │ │ │ │ ├── issue41657.dart.textual_outline.expect │ │ │ │ ├── issue41657.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41657.dart.weak.expect │ │ │ │ ├── issue41657.dart.weak.modular.expect │ │ │ │ ├── issue41657.dart.weak.outline.expect │ │ │ │ ├── issue41657.dart.weak.transformed.expect │ │ │ │ ├── issue42003.dart │ │ │ │ ├── issue42003.dart.textual_outline.expect │ │ │ │ ├── issue42003.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42003.dart.weak.expect │ │ │ │ ├── issue42003.dart.weak.modular.expect │ │ │ │ ├── issue42003.dart.weak.outline.expect │ │ │ │ ├── issue42003.dart.weak.transformed.expect │ │ │ │ ├── issue42003_lib.dart │ │ │ │ ├── issue42181.dart │ │ │ │ ├── issue42181.dart.textual_outline.expect │ │ │ │ ├── issue42181.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42181.dart.weak.expect │ │ │ │ ├── issue42181.dart.weak.modular.expect │ │ │ │ ├── issue42181.dart.weak.outline.expect │ │ │ │ ├── issue42181.dart.weak.transformed.expect │ │ │ │ ├── issue42181_lib.dart │ │ │ │ ├── issue42387 │ │ │ │ │ ├── foundation_basic_types_lib.dart │ │ │ │ │ ├── foundation_binding_lib.dart │ │ │ │ │ ├── foundation_lib.dart │ │ │ │ │ ├── scheduler_binding_lib.dart │ │ │ │ │ ├── scheduler_lib.dart │ │ │ │ │ ├── scheduler_tester.dart │ │ │ │ │ ├── scheduler_tester.dart.textual_outline.expect │ │ │ │ │ ├── scheduler_tester.dart.textual_outline_modelled.expect │ │ │ │ │ ├── scheduler_tester.dart.weak.expect │ │ │ │ │ ├── scheduler_tester.dart.weak.modular.expect │ │ │ │ │ ├── scheduler_tester.dart.weak.outline.expect │ │ │ │ │ ├── scheduler_tester.dart.weak.transformed.expect │ │ │ │ │ ├── services_binding_lib.dart │ │ │ │ │ ├── services_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue42660.dart │ │ │ │ ├── issue42660.dart.textual_outline.expect │ │ │ │ ├── issue42660.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42660.dart.weak.expect │ │ │ │ ├── issue42660.dart.weak.modular.expect │ │ │ │ ├── issue42660.dart.weak.outline.expect │ │ │ │ ├── issue42660.dart.weak.transformed.expect │ │ │ │ ├── issue42660_lib.dart │ │ │ │ ├── issue42792.dart │ │ │ │ ├── issue42792.dart.textual_outline.expect │ │ │ │ ├── issue42792.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42792.dart.weak.expect │ │ │ │ ├── issue42792.dart.weak.modular.expect │ │ │ │ ├── issue42792.dart.weak.outline.expect │ │ │ │ ├── issue42792.dart.weak.transformed.expect │ │ │ │ ├── issue42792_lib.dart │ │ │ │ ├── issue42836.dart │ │ │ │ ├── issue42836.dart.textual_outline.expect │ │ │ │ ├── issue42836.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42836.dart.weak.expect │ │ │ │ ├── issue42836.dart.weak.modular.expect │ │ │ │ ├── issue42836.dart.weak.outline.expect │ │ │ │ ├── issue42836.dart.weak.transformed.expect │ │ │ │ ├── issue42836_lib.dart │ │ │ │ ├── issue43988 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue46518.dart │ │ │ │ ├── issue46518.dart.textual_outline.expect │ │ │ │ ├── issue46518.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46518.dart.weak.expect │ │ │ │ ├── issue46518.dart.weak.modular.expect │ │ │ │ ├── issue46518.dart.weak.outline.expect │ │ │ │ ├── issue46518.dart.weak.transformed.expect │ │ │ │ ├── issue46518_lib.dart │ │ │ │ ├── literal_from_opt_in.dart │ │ │ │ ├── literal_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── literal_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── literal_from_opt_in.dart.weak.expect │ │ │ │ ├── literal_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── literal_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── literal_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── literal_from_opt_in_lib.dart │ │ │ │ ├── main_declaration.dart │ │ │ │ ├── main_declaration.dart.textual_outline.expect │ │ │ │ ├── main_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── main_declaration.dart.weak.expect │ │ │ │ ├── main_declaration.dart.weak.modular.expect │ │ │ │ ├── main_declaration.dart.weak.outline.expect │ │ │ │ ├── main_declaration.dart.weak.transformed.expect │ │ │ │ ├── main_declaration_lib.dart │ │ │ │ ├── member_inheritance_from_opt_in.dart │ │ │ │ ├── member_inheritance_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── member_inheritance_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── member_inheritance_from_opt_in.dart.weak.expect │ │ │ │ ├── member_inheritance_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── member_inheritance_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── member_inheritance_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── member_inheritance_from_opt_in_lib.dart │ │ │ │ ├── member_inheritance_from_opt_out.dart │ │ │ │ ├── member_inheritance_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── member_inheritance_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── member_inheritance_from_opt_out.dart.weak.expect │ │ │ │ ├── member_inheritance_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── member_inheritance_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── member_inheritance_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── member_inheritance_from_opt_out_lib.dart │ │ │ │ ├── messages_with_types_opt_in.dart │ │ │ │ ├── messages_with_types_opt_in.dart.textual_outline.expect │ │ │ │ ├── messages_with_types_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── messages_with_types_opt_in.dart.weak.expect │ │ │ │ ├── messages_with_types_opt_in.dart.weak.modular.expect │ │ │ │ ├── messages_with_types_opt_in.dart.weak.outline.expect │ │ │ │ ├── messages_with_types_opt_out.dart │ │ │ │ ├── messages_with_types_opt_out.dart.textual_outline.expect │ │ │ │ ├── messages_with_types_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── messages_with_types_opt_out.dart.weak.expect │ │ │ │ ├── messages_with_types_opt_out.dart.weak.modular.expect │ │ │ │ ├── messages_with_types_opt_out.dart.weak.outline.expect │ │ │ │ ├── mixed_mixin.dart │ │ │ │ ├── mixed_mixin.dart.textual_outline.expect │ │ │ │ ├── mixed_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── mixed_mixin.dart.weak.expect │ │ │ │ ├── mixed_mixin.dart.weak.modular.expect │ │ │ │ ├── mixed_mixin.dart.weak.outline.expect │ │ │ │ ├── mixed_mixin.dart.weak.transformed.expect │ │ │ │ ├── mixed_mixin_lib.dart │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart.textual_outline.expect │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart.textual_outline_modelled.expect │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart.weak.expect │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart.weak.modular.expect │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart.weak.outline.expect │ │ │ │ ├── mixed_mode_hierarchy_generic_methods.dart.weak.transformed.expect │ │ │ │ ├── mixed_mode_hierarchy_generic_methods_lib.dart │ │ │ │ ├── mixin_from_dill2 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── mixin_from_opt_in.dart │ │ │ │ ├── mixin_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── mixin_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_from_opt_in.dart.weak.expect │ │ │ │ ├── mixin_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── mixin_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── mixin_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── mixin_from_opt_in │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── opt_in_lib.dart │ │ │ │ │ ├── opt_out_lib.dart │ │ │ │ │ ├── test.options │ │ │ │ │ └── test_lib.dart │ │ │ │ ├── mixin_from_opt_in_lib.dart │ │ │ │ ├── mixin_from_opt_in_out_in.dart │ │ │ │ ├── mixin_from_opt_in_out_in.dart.textual_outline.expect │ │ │ │ ├── mixin_from_opt_in_out_in.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_from_opt_in_out_in.dart.weak.expect │ │ │ │ ├── mixin_from_opt_in_out_in.dart.weak.modular.expect │ │ │ │ ├── mixin_from_opt_in_out_in.dart.weak.outline.expect │ │ │ │ ├── mixin_from_opt_in_out_in.dart.weak.transformed.expect │ │ │ │ ├── mixin_from_opt_in_out_in_lib1.dart │ │ │ │ ├── mixin_from_opt_in_out_in_lib2.dart │ │ │ │ ├── mixin_from_opt_out.dart │ │ │ │ ├── mixin_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── mixin_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_from_opt_out.dart.weak.expect │ │ │ │ ├── mixin_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── mixin_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── mixin_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── mixin_from_opt_out_lib.dart │ │ │ │ ├── mock_http_headers.dart │ │ │ │ ├── mock_http_headers.dart.textual_outline.expect │ │ │ │ ├── mock_http_headers.dart.textual_outline_modelled.expect │ │ │ │ ├── mock_http_headers.dart.weak.expect │ │ │ │ ├── mock_http_headers.dart.weak.modular.expect │ │ │ │ ├── mock_http_headers.dart.weak.outline.expect │ │ │ │ ├── mock_http_headers.dart.weak.transformed.expect │ │ │ │ ├── never_opt_out.dart │ │ │ │ ├── never_opt_out.dart.textual_outline.expect │ │ │ │ ├── never_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── never_opt_out.dart.weak.expect │ │ │ │ ├── never_opt_out.dart.weak.modular.expect │ │ │ │ ├── never_opt_out.dart.weak.outline.expect │ │ │ │ ├── never_opt_out.dart.weak.transformed.expect │ │ │ │ ├── never_opt_out_lib.dart │ │ │ │ ├── nnbd_opt_out_language_version.dart │ │ │ │ ├── nnbd_opt_out_language_version.dart.textual_outline.expect │ │ │ │ ├── nnbd_opt_out_language_version.dart.textual_outline_modelled.expect │ │ │ │ ├── nnbd_opt_out_language_version.dart.weak.expect │ │ │ │ ├── nnbd_opt_out_language_version.dart.weak.modular.expect │ │ │ │ ├── nnbd_opt_out_language_version.dart.weak.outline.expect │ │ │ │ ├── nnbd_opt_out_language_version.dart.weak.transformed.expect │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart.textual_outline.expect │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart.textual_outline_modelled.expect │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart.weak.expect │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart.weak.modular.expect │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart.weak.outline.expect │ │ │ │ ├── nnbd_opt_out_language_version_try_to_trick.dart.weak.transformed.expect │ │ │ │ ├── no_null_shorting.dart │ │ │ │ ├── no_null_shorting.dart.textual_outline.expect │ │ │ │ ├── no_null_shorting.dart.textual_outline_modelled.expect │ │ │ │ ├── no_null_shorting.dart.weak.expect │ │ │ │ ├── no_null_shorting.dart.weak.modular.expect │ │ │ │ ├── no_null_shorting.dart.weak.outline.expect │ │ │ │ ├── no_null_shorting.dart.weak.transformed.expect │ │ │ │ ├── no_null_shorting_explicit_extension.dart │ │ │ │ ├── no_null_shorting_explicit_extension.dart.textual_outline.expect │ │ │ │ ├── no_null_shorting_explicit_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── no_null_shorting_explicit_extension.dart.weak.expect │ │ │ │ ├── no_null_shorting_explicit_extension.dart.weak.modular.expect │ │ │ │ ├── no_null_shorting_explicit_extension.dart.weak.outline.expect │ │ │ │ ├── no_null_shorting_explicit_extension.dart.weak.transformed.expect │ │ │ │ ├── no_null_shorting_extension.dart │ │ │ │ ├── no_null_shorting_extension.dart.textual_outline.expect │ │ │ │ ├── no_null_shorting_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── no_null_shorting_extension.dart.weak.expect │ │ │ │ ├── no_null_shorting_extension.dart.weak.modular.expect │ │ │ │ ├── no_null_shorting_extension.dart.weak.outline.expect │ │ │ │ ├── no_null_shorting_extension.dart.weak.transformed.expect │ │ │ │ ├── nsm_from_opt_in.dart │ │ │ │ ├── nsm_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── nsm_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── nsm_from_opt_in.dart.weak.expect │ │ │ │ ├── nsm_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── nsm_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── nsm_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── nsm_from_opt_in_lib.dart │ │ │ │ ├── null_safety_invalid_language_version.dart │ │ │ │ ├── null_safety_invalid_language_version.dart.textual_outline.expect │ │ │ │ ├── null_safety_invalid_language_version.dart.weak.expect │ │ │ │ ├── null_safety_invalid_language_version.dart.weak.modular.expect │ │ │ │ ├── null_safety_invalid_language_version.dart.weak.outline.expect │ │ │ │ ├── null_safety_invalid_language_version.dart.weak.transformed.expect │ │ │ │ ├── nullable_extension_on_opt_out.dart │ │ │ │ ├── nullable_extension_on_opt_out.dart.textual_outline.expect │ │ │ │ ├── nullable_extension_on_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_extension_on_opt_out.dart.weak.expect │ │ │ │ ├── nullable_extension_on_opt_out.dart.weak.modular.expect │ │ │ │ ├── nullable_extension_on_opt_out.dart.weak.outline.expect │ │ │ │ ├── nullable_extension_on_opt_out.dart.weak.transformed.expect │ │ │ │ ├── nullable_extension_on_opt_out_lib.dart │ │ │ │ ├── object_bound_factory │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ └── opt_in_lib.dart │ │ │ │ ├── object_bound_redirecting_factory │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ └── opt_in_lib.dart │ │ │ │ ├── opt_out.dart │ │ │ │ ├── opt_out.dart.textual_outline.expect │ │ │ │ ├── opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── opt_out.dart.weak.expect │ │ │ │ ├── opt_out.dart.weak.modular.expect │ │ │ │ ├── opt_out.dart.weak.outline.expect │ │ │ │ ├── opt_out.dart.weak.transformed.expect │ │ │ │ ├── opt_out_lib.dart │ │ │ │ ├── regress_null_aware.dart │ │ │ │ ├── regress_null_aware.dart.textual_outline.expect │ │ │ │ ├── regress_null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── regress_null_aware.dart.weak.expect │ │ │ │ ├── regress_null_aware.dart.weak.modular.expect │ │ │ │ ├── regress_null_aware.dart.weak.outline.expect │ │ │ │ ├── regress_null_aware.dart.weak.transformed.expect │ │ │ │ ├── required_name_override.dart │ │ │ │ ├── required_name_override.dart.textual_outline.expect │ │ │ │ ├── required_name_override.dart.textual_outline_modelled.expect │ │ │ │ ├── required_name_override.dart.weak.expect │ │ │ │ ├── required_name_override.dart.weak.modular.expect │ │ │ │ ├── required_name_override.dart.weak.outline.expect │ │ │ │ ├── required_name_override.dart.weak.transformed.expect │ │ │ │ ├── required_name_override_lib.dart │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart.textual_outline.expect │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart.weak.expect │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart.weak.modular.expect │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart.weak.outline.expect │ │ │ │ ├── required_parameter_mixed_from_opt_out.dart.weak.transformed.expect │ │ │ │ ├── required_parameter_mixed_from_opt_out_lib.dart │ │ │ │ ├── sink_hierarchy.dart │ │ │ │ ├── sink_hierarchy.dart.textual_outline.expect │ │ │ │ ├── sink_hierarchy.dart.textual_outline_modelled.expect │ │ │ │ ├── sink_hierarchy.dart.weak.expect │ │ │ │ ├── sink_hierarchy.dart.weak.modular.expect │ │ │ │ ├── sink_hierarchy.dart.weak.outline.expect │ │ │ │ ├── sink_hierarchy.dart.weak.transformed.expect │ │ │ │ ├── super_access │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main.no_link.dart │ │ │ │ │ ├── main.no_link.dart.textual_outline.expect │ │ │ │ │ ├── main.no_link.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.no_link.dart.weak.expect │ │ │ │ │ ├── main.no_link.dart.weak.modular.expect │ │ │ │ │ ├── main.no_link.dart.weak.outline.expect │ │ │ │ │ ├── main.no_link.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── super_set_from_opt_in.dart │ │ │ │ ├── super_set_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── super_set_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── super_set_from_opt_in.dart.weak.expect │ │ │ │ ├── super_set_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── super_set_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── super_set_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── super_set_from_opt_in_lib.dart │ │ │ │ ├── type_parameter_nullability.dart │ │ │ │ ├── type_parameter_nullability.dart.textual_outline.expect │ │ │ │ ├── type_parameter_nullability.dart.textual_outline_modelled.expect │ │ │ │ ├── type_parameter_nullability.dart.weak.expect │ │ │ │ ├── type_parameter_nullability.dart.weak.modular.expect │ │ │ │ ├── type_parameter_nullability.dart.weak.outline.expect │ │ │ │ ├── type_parameter_nullability.dart.weak.transformed.expect │ │ │ │ ├── type_parameter_nullability_lib.dart │ │ │ │ ├── typedef_from_opt_in.dart │ │ │ │ ├── typedef_from_opt_in.dart.textual_outline.expect │ │ │ │ ├── typedef_from_opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_from_opt_in.dart.weak.expect │ │ │ │ ├── typedef_from_opt_in.dart.weak.modular.expect │ │ │ │ ├── typedef_from_opt_in.dart.weak.outline.expect │ │ │ │ ├── typedef_from_opt_in.dart.weak.transformed.expect │ │ │ │ ├── typedef_from_opt_in_lib.dart │ │ │ │ ├── unsound_checks.dart │ │ │ │ ├── unsound_checks.dart.textual_outline.expect │ │ │ │ ├── unsound_checks.dart.textual_outline_modelled.expect │ │ │ │ ├── unsound_checks.dart.weak.expect │ │ │ │ ├── unsound_checks.dart.weak.modular.expect │ │ │ │ ├── unsound_checks.dart.weak.outline.expect │ │ │ │ ├── unsound_checks.dart.weak.transformed.expect │ │ │ │ └── unsound_checks_lib.dart │ │ │ ├── no_such_method_forwarders │ │ │ │ ├── abstract_accessors_from_field.dart │ │ │ │ ├── abstract_accessors_from_field.dart.strong.expect │ │ │ │ ├── abstract_accessors_from_field.dart.strong.transformed.expect │ │ │ │ ├── abstract_accessors_from_field.dart.textual_outline.expect │ │ │ │ ├── abstract_accessors_from_field.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_accessors_from_field.dart.weak.expect │ │ │ │ ├── abstract_accessors_from_field.dart.weak.modular.expect │ │ │ │ ├── abstract_accessors_from_field.dart.weak.outline.expect │ │ │ │ ├── abstract_accessors_from_field.dart.weak.transformed.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.strong.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.strong.transformed.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.textual_outline.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.weak.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.weak.modular.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.weak.outline.expect │ │ │ │ ├── abstract_accessors_from_field_arent_mixed_in.dart.weak.transformed.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.strong.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.strong.transformed.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.textual_outline.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.weak.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.weak.modular.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.weak.outline.expect │ │ │ │ ├── abstract_accessors_from_field_one_defined.dart.weak.transformed.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.strong.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.strong.transformed.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.textual_outline.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.weak.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.weak.modular.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.weak.outline.expect │ │ │ │ ├── abstract_accessors_from_field_with_substitution.dart.weak.transformed.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart │ │ │ │ ├── abstract_interface_nsm_inherited.dart.strong.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.strong.transformed.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.textual_outline.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.weak.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.weak.modular.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.weak.outline.expect │ │ │ │ ├── abstract_interface_nsm_inherited.dart.weak.transformed.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart │ │ │ │ ├── abstract_override_abstract_different_type.dart.strong.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.strong.transformed.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.textual_outline.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.weak.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.weak.modular.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.weak.outline.expect │ │ │ │ ├── abstract_override_abstract_different_type.dart.weak.transformed.expect │ │ │ │ ├── abstract_override_with_different_signature.dart │ │ │ │ ├── abstract_override_with_different_signature.dart.strong.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.strong.transformed.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.textual_outline.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.weak.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.weak.modular.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.weak.outline.expect │ │ │ │ ├── abstract_override_with_different_signature.dart.weak.transformed.expect │ │ │ │ ├── access_abstract_nsm.dart │ │ │ │ ├── access_abstract_nsm.dart.strong.expect │ │ │ │ ├── access_abstract_nsm.dart.strong.transformed.expect │ │ │ │ ├── access_abstract_nsm.dart.textual_outline.expect │ │ │ │ ├── access_abstract_nsm.dart.textual_outline_modelled.expect │ │ │ │ ├── access_abstract_nsm.dart.weak.expect │ │ │ │ ├── access_abstract_nsm.dart.weak.modular.expect │ │ │ │ ├── access_abstract_nsm.dart.weak.outline.expect │ │ │ │ ├── access_abstract_nsm.dart.weak.transformed.expect │ │ │ │ ├── access_abstract_nsm_lib.dart │ │ │ │ ├── access_concrete_nsm.dart │ │ │ │ ├── access_concrete_nsm.dart.strong.expect │ │ │ │ ├── access_concrete_nsm.dart.strong.transformed.expect │ │ │ │ ├── access_concrete_nsm.dart.textual_outline.expect │ │ │ │ ├── access_concrete_nsm.dart.textual_outline_modelled.expect │ │ │ │ ├── access_concrete_nsm.dart.weak.expect │ │ │ │ ├── access_concrete_nsm.dart.weak.modular.expect │ │ │ │ ├── access_concrete_nsm.dart.weak.outline.expect │ │ │ │ ├── access_concrete_nsm.dart.weak.transformed.expect │ │ │ │ ├── access_concrete_nsm_lib.dart │ │ │ │ ├── access_no_nsm.dart │ │ │ │ ├── access_no_nsm.dart.strong.expect │ │ │ │ ├── access_no_nsm.dart.strong.transformed.expect │ │ │ │ ├── access_no_nsm.dart.textual_outline.expect │ │ │ │ ├── access_no_nsm.dart.textual_outline_modelled.expect │ │ │ │ ├── access_no_nsm.dart.weak.expect │ │ │ │ ├── access_no_nsm.dart.weak.modular.expect │ │ │ │ ├── access_no_nsm.dart.weak.outline.expect │ │ │ │ ├── access_no_nsm.dart.weak.transformed.expect │ │ │ │ ├── access_no_nsm_lib.dart │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.strong.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.strong.transformed.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.textual_outline.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.textual_outline_modelled.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.weak.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.weak.modular.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.weak.outline.expect │ │ │ │ ├── concrete_method_over_forwarder_in_mixin_application.dart.weak.transformed.expect │ │ │ │ ├── default_argument_values.dart │ │ │ │ ├── default_argument_values.dart.strong.expect │ │ │ │ ├── default_argument_values.dart.strong.transformed.expect │ │ │ │ ├── default_argument_values.dart.textual_outline.expect │ │ │ │ ├── default_argument_values.dart.textual_outline_modelled.expect │ │ │ │ ├── default_argument_values.dart.weak.expect │ │ │ │ ├── default_argument_values.dart.weak.modular.expect │ │ │ │ ├── default_argument_values.dart.weak.outline.expect │ │ │ │ ├── default_argument_values.dart.weak.transformed.expect │ │ │ │ ├── different_signatures.dart │ │ │ │ ├── different_signatures.dart.strong.expect │ │ │ │ ├── different_signatures.dart.strong.transformed.expect │ │ │ │ ├── different_signatures.dart.textual_outline.expect │ │ │ │ ├── different_signatures.dart.textual_outline_modelled.expect │ │ │ │ ├── different_signatures.dart.weak.expect │ │ │ │ ├── different_signatures.dart.weak.modular.expect │ │ │ │ ├── different_signatures.dart.weak.outline.expect │ │ │ │ ├── different_signatures.dart.weak.transformed.expect │ │ │ │ ├── duplicated_abstract_method.dart │ │ │ │ ├── duplicated_abstract_method.dart.strong.expect │ │ │ │ ├── duplicated_abstract_method.dart.strong.transformed.expect │ │ │ │ ├── duplicated_abstract_method.dart.textual_outline.expect │ │ │ │ ├── duplicated_abstract_method.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicated_abstract_method.dart.weak.expect │ │ │ │ ├── duplicated_abstract_method.dart.weak.modular.expect │ │ │ │ ├── duplicated_abstract_method.dart.weak.outline.expect │ │ │ │ ├── duplicated_abstract_method.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── forwarder_propagation.dart │ │ │ │ ├── forwarder_propagation.dart.strong.expect │ │ │ │ ├── forwarder_propagation.dart.strong.transformed.expect │ │ │ │ ├── forwarder_propagation.dart.textual_outline.expect │ │ │ │ ├── forwarder_propagation.dart.textual_outline_modelled.expect │ │ │ │ ├── forwarder_propagation.dart.weak.expect │ │ │ │ ├── forwarder_propagation.dart.weak.modular.expect │ │ │ │ ├── forwarder_propagation.dart.weak.outline.expect │ │ │ │ ├── forwarder_propagation.dart.weak.transformed.expect │ │ │ │ ├── forwarder_propagation_lib.dart │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.strong.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.strong.transformed.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.textual_outline.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.weak.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.weak.modular.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.weak.outline.expect │ │ │ │ ├── forwarders_not_assumed_from_mixin.dart.weak.transformed.expect │ │ │ │ ├── inherited_through_abstract.dart │ │ │ │ ├── inherited_through_abstract.dart.strong.expect │ │ │ │ ├── inherited_through_abstract.dart.strong.transformed.expect │ │ │ │ ├── inherited_through_abstract.dart.textual_outline.expect │ │ │ │ ├── inherited_through_abstract.dart.textual_outline_modelled.expect │ │ │ │ ├── inherited_through_abstract.dart.weak.expect │ │ │ │ ├── inherited_through_abstract.dart.weak.modular.expect │ │ │ │ ├── inherited_through_abstract.dart.weak.outline.expect │ │ │ │ ├── inherited_through_abstract.dart.weak.transformed.expect │ │ │ │ ├── inherited_through_mixin_application.dart │ │ │ │ ├── inherited_through_mixin_application.dart.strong.expect │ │ │ │ ├── inherited_through_mixin_application.dart.strong.transformed.expect │ │ │ │ ├── inherited_through_mixin_application.dart.textual_outline.expect │ │ │ │ ├── inherited_through_mixin_application.dart.textual_outline_modelled.expect │ │ │ │ ├── inherited_through_mixin_application.dart.weak.expect │ │ │ │ ├── inherited_through_mixin_application.dart.weak.modular.expect │ │ │ │ ├── inherited_through_mixin_application.dart.weak.outline.expect │ │ │ │ ├── inherited_through_mixin_application.dart.weak.transformed.expect │ │ │ │ ├── interface_with_concrete.dart │ │ │ │ ├── interface_with_concrete.dart.strong.expect │ │ │ │ ├── interface_with_concrete.dart.strong.transformed.expect │ │ │ │ ├── interface_with_concrete.dart.textual_outline.expect │ │ │ │ ├── interface_with_concrete.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_with_concrete.dart.weak.expect │ │ │ │ ├── interface_with_concrete.dart.weak.modular.expect │ │ │ │ ├── interface_with_concrete.dart.weak.outline.expect │ │ │ │ ├── interface_with_concrete.dart.weak.transformed.expect │ │ │ │ ├── interface_with_nsm.dart │ │ │ │ ├── interface_with_nsm.dart.strong.expect │ │ │ │ ├── interface_with_nsm.dart.strong.transformed.expect │ │ │ │ ├── interface_with_nsm.dart.textual_outline.expect │ │ │ │ ├── interface_with_nsm.dart.textual_outline_modelled.expect │ │ │ │ ├── interface_with_nsm.dart.weak.expect │ │ │ │ ├── interface_with_nsm.dart.weak.modular.expect │ │ │ │ ├── interface_with_nsm.dart.weak.outline.expect │ │ │ │ ├── interface_with_nsm.dart.weak.transformed.expect │ │ │ │ ├── mixin_nsm.dart │ │ │ │ ├── mixin_nsm.dart.strong.expect │ │ │ │ ├── mixin_nsm.dart.textual_outline.expect │ │ │ │ ├── mixin_nsm.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_nsm.dart.weak.expect │ │ │ │ ├── mixin_nsm.dart.weak.modular.expect │ │ │ │ ├── mixin_nsm.dart.weak.outline.expect │ │ │ │ ├── multiple_abstract_setters.dart │ │ │ │ ├── multiple_abstract_setters.dart.strong.expect │ │ │ │ ├── multiple_abstract_setters.dart.strong.transformed.expect │ │ │ │ ├── multiple_abstract_setters.dart.textual_outline.expect │ │ │ │ ├── multiple_abstract_setters.dart.textual_outline_modelled.expect │ │ │ │ ├── multiple_abstract_setters.dart.weak.expect │ │ │ │ ├── multiple_abstract_setters.dart.weak.modular.expect │ │ │ │ ├── multiple_abstract_setters.dart.weak.outline.expect │ │ │ │ ├── multiple_abstract_setters.dart.weak.transformed.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.strong.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.strong.transformed.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.textual_outline.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.textual_outline_modelled.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.weak.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.weak.modular.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.weak.outline.expect │ │ │ │ ├── no_forwarders_for_abstract_classes.dart.weak.transformed.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.strong.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.strong.transformed.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.textual_outline.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.textual_outline_modelled.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.weak.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.weak.modular.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.weak.outline.expect │ │ │ │ ├── no_forwarders_for_abstract_classes_chain.dart.weak.transformed.expect │ │ │ │ ├── nsm_inherited.dart │ │ │ │ ├── nsm_inherited.dart.strong.expect │ │ │ │ ├── nsm_inherited.dart.strong.transformed.expect │ │ │ │ ├── nsm_inherited.dart.textual_outline.expect │ │ │ │ ├── nsm_inherited.dart.textual_outline_modelled.expect │ │ │ │ ├── nsm_inherited.dart.weak.expect │ │ │ │ ├── nsm_inherited.dart.weak.modular.expect │ │ │ │ ├── nsm_inherited.dart.weak.outline.expect │ │ │ │ ├── nsm_inherited.dart.weak.transformed.expect │ │ │ │ ├── nsm_mixed_in.dart │ │ │ │ ├── nsm_mixed_in.dart.strong.expect │ │ │ │ ├── nsm_mixed_in.dart.strong.transformed.expect │ │ │ │ ├── nsm_mixed_in.dart.textual_outline.expect │ │ │ │ ├── nsm_mixed_in.dart.textual_outline_modelled.expect │ │ │ │ ├── nsm_mixed_in.dart.weak.expect │ │ │ │ ├── nsm_mixed_in.dart.weak.modular.expect │ │ │ │ ├── nsm_mixed_in.dart.weak.outline.expect │ │ │ │ ├── nsm_mixed_in.dart.weak.transformed.expect │ │ │ │ ├── private.dart │ │ │ │ ├── private.dart.strong.expect │ │ │ │ ├── private.dart.strong.transformed.expect │ │ │ │ ├── private.dart.textual_outline.expect │ │ │ │ ├── private.dart.textual_outline_modelled.expect │ │ │ │ ├── private.dart.weak.expect │ │ │ │ ├── private.dart.weak.modular.expect │ │ │ │ ├── private.dart.weak.outline.expect │ │ │ │ ├── private.dart.weak.transformed.expect │ │ │ │ ├── private_module.dart │ │ │ │ ├── private_module.dart.strong.expect │ │ │ │ ├── private_module.dart.strong.transformed.expect │ │ │ │ ├── private_module.dart.textual_outline.expect │ │ │ │ ├── private_module.dart.textual_outline_modelled.expect │ │ │ │ ├── private_module.dart.weak.expect │ │ │ │ ├── private_module.dart.weak.modular.expect │ │ │ │ ├── private_module.dart.weak.outline.expect │ │ │ │ ├── private_module.dart.weak.transformed.expect │ │ │ │ ├── private_same.dart │ │ │ │ ├── private_same.dart.strong.expect │ │ │ │ ├── private_same.dart.strong.transformed.expect │ │ │ │ ├── private_same.dart.textual_outline.expect │ │ │ │ ├── private_same.dart.textual_outline_modelled.expect │ │ │ │ ├── private_same.dart.weak.expect │ │ │ │ ├── private_same.dart.weak.modular.expect │ │ │ │ ├── private_same.dart.weak.outline.expect │ │ │ │ ├── private_same.dart.weak.transformed.expect │ │ │ │ ├── same.dart │ │ │ │ ├── same.dart.strong.expect │ │ │ │ ├── same.dart.strong.transformed.expect │ │ │ │ ├── same.dart.textual_outline.expect │ │ │ │ ├── same.dart.textual_outline_modelled.expect │ │ │ │ ├── same.dart.weak.expect │ │ │ │ ├── same.dart.weak.modular.expect │ │ │ │ ├── same.dart.weak.outline.expect │ │ │ │ ├── same.dart.weak.transformed.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart │ │ │ │ ├── setter_not_shadowed_by_method.dart.strong.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.strong.transformed.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.textual_outline.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.textual_outline_modelled.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.weak.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.weak.modular.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.weak.outline.expect │ │ │ │ ├── setter_not_shadowed_by_method.dart.weak.transformed.expect │ │ │ │ ├── subst_on_forwarder.dart │ │ │ │ ├── subst_on_forwarder.dart.strong.expect │ │ │ │ ├── subst_on_forwarder.dart.strong.transformed.expect │ │ │ │ ├── subst_on_forwarder.dart.textual_outline.expect │ │ │ │ ├── subst_on_forwarder.dart.textual_outline_modelled.expect │ │ │ │ ├── subst_on_forwarder.dart.weak.expect │ │ │ │ ├── subst_on_forwarder.dart.weak.modular.expect │ │ │ │ ├── subst_on_forwarder.dart.weak.outline.expect │ │ │ │ └── subst_on_forwarder.dart.weak.transformed.expect │ │ │ ├── none │ │ │ │ ├── equals.dart │ │ │ │ ├── equals.dart.strong.expect │ │ │ │ ├── equals.dart.strong.transformed.expect │ │ │ │ ├── equals.dart.textual_outline.expect │ │ │ │ ├── equals.dart.textual_outline_modelled.expect │ │ │ │ ├── equals.dart.weak.expect │ │ │ │ ├── equals.dart.weak.modular.expect │ │ │ │ ├── equals.dart.weak.outline.expect │ │ │ │ ├── equals.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── issue46003.dart │ │ │ │ ├── issue46003.dart.strong.expect │ │ │ │ ├── issue46003.dart.strong.transformed.expect │ │ │ │ ├── issue46003.dart.textual_outline.expect │ │ │ │ ├── issue46003.dart.textual_outline_modelled.expect │ │ │ │ ├── issue46003.dart.weak.expect │ │ │ │ ├── issue46003.dart.weak.modular.expect │ │ │ │ ├── issue46003.dart.weak.outline.expect │ │ │ │ ├── issue46003.dart.weak.transformed.expect │ │ │ │ ├── method_invocation.dart │ │ │ │ ├── method_invocation.dart.strong.expect │ │ │ │ ├── method_invocation.dart.strong.transformed.expect │ │ │ │ ├── method_invocation.dart.textual_outline.expect │ │ │ │ ├── method_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── method_invocation.dart.weak.expect │ │ │ │ ├── method_invocation.dart.weak.modular.expect │ │ │ │ ├── method_invocation.dart.weak.outline.expect │ │ │ │ ├── method_invocation.dart.weak.transformed.expect │ │ │ │ ├── mixin_application_declares │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── mixin_covariant.dart │ │ │ │ ├── mixin_covariant.dart.strong.expect │ │ │ │ ├── mixin_covariant.dart.strong.transformed.expect │ │ │ │ ├── mixin_covariant.dart.textual_outline.expect │ │ │ │ ├── mixin_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_covariant.dart.weak.expect │ │ │ │ ├── mixin_covariant.dart.weak.modular.expect │ │ │ │ ├── mixin_covariant.dart.weak.outline.expect │ │ │ │ ├── mixin_covariant.dart.weak.transformed.expect │ │ │ │ ├── mixin_super.dart │ │ │ │ ├── mixin_super.dart.strong.expect │ │ │ │ ├── mixin_super.dart.strong.transformed.expect │ │ │ │ ├── mixin_super.dart.textual_outline.expect │ │ │ │ ├── mixin_super.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_super.dart.weak.expect │ │ │ │ ├── mixin_super.dart.weak.modular.expect │ │ │ │ ├── mixin_super.dart.weak.outline.expect │ │ │ │ ├── mixin_super.dart.weak.transformed.expect │ │ │ │ ├── new_method_invocation_encodings.dart │ │ │ │ ├── new_method_invocation_encodings.dart.strong.expect │ │ │ │ ├── new_method_invocation_encodings.dart.strong.transformed.expect │ │ │ │ ├── new_method_invocation_encodings.dart.textual_outline.expect │ │ │ │ ├── new_method_invocation_encodings.dart.textual_outline_modelled.expect │ │ │ │ ├── new_method_invocation_encodings.dart.weak.expect │ │ │ │ ├── new_method_invocation_encodings.dart.weak.modular.expect │ │ │ │ ├── new_method_invocation_encodings.dart.weak.outline.expect │ │ │ │ ├── new_method_invocation_encodings.dart.weak.transformed.expect │ │ │ │ ├── operator.dart │ │ │ │ ├── operator.dart.strong.expect │ │ │ │ ├── operator.dart.strong.transformed.expect │ │ │ │ ├── operator.dart.textual_outline.expect │ │ │ │ ├── operator.dart.textual_outline_modelled.expect │ │ │ │ ├── operator.dart.weak.expect │ │ │ │ ├── operator.dart.weak.modular.expect │ │ │ │ ├── operator.dart.weak.outline.expect │ │ │ │ ├── operator.dart.weak.transformed.expect │ │ │ │ ├── property_get.dart │ │ │ │ ├── property_get.dart.strong.expect │ │ │ │ ├── property_get.dart.strong.transformed.expect │ │ │ │ ├── property_get.dart.textual_outline.expect │ │ │ │ ├── property_get.dart.textual_outline_modelled.expect │ │ │ │ ├── property_get.dart.weak.expect │ │ │ │ ├── property_get.dart.weak.modular.expect │ │ │ │ ├── property_get.dart.weak.outline.expect │ │ │ │ ├── property_get.dart.weak.transformed.expect │ │ │ │ ├── property_set.dart │ │ │ │ ├── property_set.dart.strong.expect │ │ │ │ ├── property_set.dart.strong.transformed.expect │ │ │ │ ├── property_set.dart.textual_outline.expect │ │ │ │ ├── property_set.dart.textual_outline_modelled.expect │ │ │ │ ├── property_set.dart.weak.expect │ │ │ │ ├── property_set.dart.weak.modular.expect │ │ │ │ ├── property_set.dart.weak.outline.expect │ │ │ │ ├── property_set.dart.weak.transformed.expect │ │ │ │ ├── tearoff_opt_out.dart │ │ │ │ ├── tearoff_opt_out.dart.strong.expect │ │ │ │ ├── tearoff_opt_out.dart.strong.transformed.expect │ │ │ │ ├── tearoff_opt_out.dart.textual_outline.expect │ │ │ │ ├── tearoff_opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── tearoff_opt_out.dart.weak.expect │ │ │ │ ├── tearoff_opt_out.dart.weak.modular.expect │ │ │ │ ├── tearoff_opt_out.dart.weak.outline.expect │ │ │ │ └── tearoff_opt_out.dart.weak.transformed.expect │ │ │ ├── nonfunction_type_aliases │ │ │ │ ├── aliased_checks.dart │ │ │ │ ├── aliased_checks.dart.strong.expect │ │ │ │ ├── aliased_checks.dart.strong.transformed.expect │ │ │ │ ├── aliased_checks.dart.textual_outline.expect │ │ │ │ ├── aliased_checks.dart.textual_outline_modelled.expect │ │ │ │ ├── aliased_checks.dart.weak.expect │ │ │ │ ├── aliased_checks.dart.weak.modular.expect │ │ │ │ ├── aliased_checks.dart.weak.outline.expect │ │ │ │ ├── aliased_checks.dart.weak.transformed.expect │ │ │ │ ├── aliased_checks_in_typedef.dart │ │ │ │ ├── aliased_checks_in_typedef.dart.strong.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.strong.transformed.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.textual_outline.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.weak.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.weak.modular.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.weak.outline.expect │ │ │ │ ├── aliased_checks_in_typedef.dart.weak.transformed.expect │ │ │ │ ├── aliased_checks_no_bodies_lib.dart │ │ │ │ ├── aliased_checks_no_bodies_main.dart │ │ │ │ ├── aliased_checks_no_bodies_main.dart.strong.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.strong.transformed.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.textual_outline.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.textual_outline_modelled.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.weak.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.weak.modular.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.weak.outline.expect │ │ │ │ ├── aliased_checks_no_bodies_main.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── issue41501.dart │ │ │ │ ├── issue41501.dart.strong.expect │ │ │ │ ├── issue41501.dart.strong.transformed.expect │ │ │ │ ├── issue41501.dart.textual_outline.expect │ │ │ │ ├── issue41501.dart.textual_outline_modelled.expect │ │ │ │ ├── issue41501.dart.weak.expect │ │ │ │ ├── issue41501.dart.weak.modular.expect │ │ │ │ ├── issue41501.dart.weak.outline.expect │ │ │ │ ├── issue41501.dart.weak.transformed.expect │ │ │ │ ├── issue41501_lib.dart │ │ │ │ ├── issue42446.dart │ │ │ │ ├── issue42446.dart.strong.expect │ │ │ │ ├── issue42446.dart.strong.transformed.expect │ │ │ │ ├── issue42446.dart.textual_outline.expect │ │ │ │ ├── issue42446.dart.textual_outline_modelled.expect │ │ │ │ ├── issue42446.dart.weak.expect │ │ │ │ ├── issue42446.dart.weak.modular.expect │ │ │ │ ├── issue42446.dart.weak.outline.expect │ │ │ │ ├── issue42446.dart.weak.transformed.expect │ │ │ │ ├── issue45051.dart │ │ │ │ ├── issue45051.dart.strong.expect │ │ │ │ ├── issue45051.dart.strong.transformed.expect │ │ │ │ ├── issue45051.dart.textual_outline.expect │ │ │ │ ├── issue45051.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45051.dart.weak.expect │ │ │ │ ├── issue45051.dart.weak.modular.expect │ │ │ │ ├── issue45051.dart.weak.outline.expect │ │ │ │ ├── issue45051.dart.weak.transformed.expect │ │ │ │ ├── issue45464.dart │ │ │ │ ├── issue45464.dart.strong.expect │ │ │ │ ├── issue45464.dart.strong.transformed.expect │ │ │ │ ├── issue45464.dart.textual_outline.expect │ │ │ │ ├── issue45464.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45464.dart.weak.expect │ │ │ │ ├── issue45464.dart.weak.modular.expect │ │ │ │ ├── issue45464.dart.weak.outline.expect │ │ │ │ ├── issue45464.dart.weak.transformed.expect │ │ │ │ ├── issue45491.dart │ │ │ │ ├── issue45491.dart.strong.expect │ │ │ │ ├── issue45491.dart.strong.transformed.expect │ │ │ │ ├── issue45491.dart.textual_outline.expect │ │ │ │ ├── issue45491.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45491.dart.weak.expect │ │ │ │ ├── issue45491.dart.weak.modular.expect │ │ │ │ ├── issue45491.dart.weak.outline.expect │ │ │ │ ├── issue45491.dart.weak.transformed.expect │ │ │ │ ├── issue45519.dart │ │ │ │ ├── issue45519.dart.strong.expect │ │ │ │ ├── issue45519.dart.strong.transformed.expect │ │ │ │ ├── issue45519.dart.textual_outline.expect │ │ │ │ ├── issue45519.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45519.dart.weak.expect │ │ │ │ ├── issue45519.dart.weak.modular.expect │ │ │ │ ├── issue45519.dart.weak.outline.expect │ │ │ │ ├── issue45519.dart.weak.transformed.expect │ │ │ │ ├── issue45519_2.dart │ │ │ │ ├── issue45519_2.dart.strong.expect │ │ │ │ ├── issue45519_2.dart.strong.transformed.expect │ │ │ │ ├── issue45519_2.dart.textual_outline.expect │ │ │ │ ├── issue45519_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45519_2.dart.weak.expect │ │ │ │ ├── issue45519_2.dart.weak.modular.expect │ │ │ │ ├── issue45519_2.dart.weak.outline.expect │ │ │ │ ├── issue45519_2.dart.weak.transformed.expect │ │ │ │ ├── issue45626.dart │ │ │ │ ├── issue45626.dart.strong.expect │ │ │ │ ├── issue45626.dart.strong.transformed.expect │ │ │ │ ├── issue45626.dart.textual_outline.expect │ │ │ │ ├── issue45626.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45626.dart.weak.expect │ │ │ │ ├── issue45626.dart.weak.modular.expect │ │ │ │ ├── issue45626.dart.weak.outline.expect │ │ │ │ ├── issue45626.dart.weak.transformed.expect │ │ │ │ ├── issue45658.dart │ │ │ │ ├── issue45658.dart.strong.expect │ │ │ │ ├── issue45658.dart.strong.transformed.expect │ │ │ │ ├── issue45658.dart.textual_outline.expect │ │ │ │ ├── issue45658.dart.textual_outline_modelled.expect │ │ │ │ ├── issue45658.dart.weak.expect │ │ │ │ ├── issue45658.dart.weak.modular.expect │ │ │ │ ├── issue45658.dart.weak.outline.expect │ │ │ │ ├── issue45658.dart.weak.transformed.expect │ │ │ │ ├── issue_43084 │ │ │ │ │ ├── issue_43084.dart │ │ │ │ │ ├── issue_43084.dart.strong.expect │ │ │ │ │ ├── issue_43084.dart.strong.transformed.expect │ │ │ │ │ ├── issue_43084.dart.textual_outline.expect │ │ │ │ │ ├── issue_43084.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue_43084.dart.weak.expect │ │ │ │ │ ├── issue_43084.dart.weak.modular.expect │ │ │ │ │ ├── issue_43084.dart.weak.outline.expect │ │ │ │ │ ├── issue_43084.dart.weak.transformed.expect │ │ │ │ │ ├── issue_43084_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── nullable_supertypes.dart │ │ │ │ ├── nullable_supertypes.dart.strong.expect │ │ │ │ ├── nullable_supertypes.dart.strong.transformed.expect │ │ │ │ ├── nullable_supertypes.dart.textual_outline.expect │ │ │ │ ├── nullable_supertypes.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_supertypes.dart.weak.expect │ │ │ │ ├── nullable_supertypes.dart.weak.modular.expect │ │ │ │ ├── nullable_supertypes.dart.weak.outline.expect │ │ │ │ ├── nullable_supertypes.dart.weak.transformed.expect │ │ │ │ ├── old_version.dart │ │ │ │ ├── old_version.dart.strong.expect │ │ │ │ ├── old_version.dart.strong.transformed.expect │ │ │ │ ├── old_version.dart.textual_outline.expect │ │ │ │ ├── old_version.dart.weak.expect │ │ │ │ ├── old_version.dart.weak.modular.expect │ │ │ │ ├── old_version.dart.weak.outline.expect │ │ │ │ ├── old_version.dart.weak.transformed.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.strong.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.strong.transformed.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.textual_outline.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.textual_outline_modelled.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.weak.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.weak.modular.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.weak.outline.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls.dart.weak.transformed.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_lib.dart │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.strong.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.strong.transformed.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.textual_outline.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.textual_outline_modelled.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.weak.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.weak.modular.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.weak.outline.expect │ │ │ │ ├── unaliased_bounds_checks_in_constructor_calls_with_parts_main.dart.weak.transformed.expect │ │ │ │ └── unaliased_bounds_checks_in_constructor_calls_with_parts_part_lib.dart │ │ │ ├── offsets │ │ │ │ ├── folder.options │ │ │ │ ├── pattern_for_loop.dart │ │ │ │ ├── pattern_for_loop.dart.strong.expect │ │ │ │ ├── pattern_for_loop.dart.strong.transformed.expect │ │ │ │ ├── pattern_for_loop.dart.textual_outline.expect │ │ │ │ ├── pattern_for_loop.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_for_loop.dart.weak.expect │ │ │ │ ├── pattern_for_loop.dart.weak.modular.expect │ │ │ │ ├── pattern_for_loop.dart.weak.outline.expect │ │ │ │ ├── pattern_for_loop.dart.weak.transformed.expect │ │ │ │ ├── shared_case_variables.dart │ │ │ │ ├── shared_case_variables.dart.strong.expect │ │ │ │ ├── shared_case_variables.dart.strong.transformed.expect │ │ │ │ ├── shared_case_variables.dart.textual_outline.expect │ │ │ │ ├── shared_case_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── shared_case_variables.dart.weak.expect │ │ │ │ ├── shared_case_variables.dart.weak.modular.expect │ │ │ │ ├── shared_case_variables.dart.weak.outline.expect │ │ │ │ ├── shared_case_variables.dart.weak.transformed.expect │ │ │ │ ├── step_through_patterns.dart │ │ │ │ ├── step_through_patterns.dart.strong.expect │ │ │ │ ├── step_through_patterns.dart.strong.transformed.expect │ │ │ │ ├── step_through_patterns.dart.textual_outline.expect │ │ │ │ ├── step_through_patterns.dart.textual_outline_modelled.expect │ │ │ │ ├── step_through_patterns.dart.weak.expect │ │ │ │ ├── step_through_patterns.dart.weak.modular.expect │ │ │ │ ├── step_through_patterns.dart.weak.outline.expect │ │ │ │ ├── step_through_patterns.dart.weak.transformed.expect │ │ │ │ ├── switch_encoding.dart │ │ │ │ ├── switch_encoding.dart.strong.expect │ │ │ │ ├── switch_encoding.dart.strong.transformed.expect │ │ │ │ ├── switch_encoding.dart.textual_outline.expect │ │ │ │ ├── switch_encoding.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_encoding.dart.weak.expect │ │ │ │ ├── switch_encoding.dart.weak.modular.expect │ │ │ │ ├── switch_encoding.dart.weak.outline.expect │ │ │ │ └── switch_encoding.dart.weak.transformed.expect │ │ │ ├── outline.status │ │ │ ├── patterns │ │ │ │ ├── assignment_in_guard.dart │ │ │ │ ├── assignment_in_guard.dart.strong.expect │ │ │ │ ├── assignment_in_guard.dart.strong.transformed.expect │ │ │ │ ├── assignment_in_guard.dart.textual_outline.expect │ │ │ │ ├── assignment_in_guard.dart.textual_outline_modelled.expect │ │ │ │ ├── assignment_in_guard.dart.weak.expect │ │ │ │ ├── assignment_in_guard.dart.weak.modular.expect │ │ │ │ ├── assignment_in_guard.dart.weak.outline.expect │ │ │ │ ├── assignment_in_guard.dart.weak.transformed.expect │ │ │ │ ├── boolean_literal_inside_case.dart │ │ │ │ ├── boolean_literal_inside_case.dart.strong.expect │ │ │ │ ├── boolean_literal_inside_case.dart.strong.transformed.expect │ │ │ │ ├── boolean_literal_inside_case.dart.textual_outline.expect │ │ │ │ ├── boolean_literal_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── boolean_literal_inside_case.dart.weak.expect │ │ │ │ ├── boolean_literal_inside_case.dart.weak.modular.expect │ │ │ │ ├── boolean_literal_inside_case.dart.weak.outline.expect │ │ │ │ ├── boolean_literal_inside_case.dart.weak.transformed.expect │ │ │ │ ├── boolean_literal_inside_cast.dart │ │ │ │ ├── boolean_literal_inside_cast.dart.strong.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.textual_outline.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.weak.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.weak.modular.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.weak.outline.expect │ │ │ │ ├── boolean_literal_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart │ │ │ │ ├── boolean_literal_inside_if_case.dart.strong.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.weak.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── boolean_literal_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart │ │ │ │ ├── boolean_literal_inside_null_assert.dart.strong.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.weak.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── boolean_literal_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart │ │ │ │ ├── boolean_literal_inside_null_check.dart.strong.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.weak.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── boolean_literal_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── cache_lookups.dart │ │ │ │ ├── cache_lookups.dart.strong.expect │ │ │ │ ├── cache_lookups.dart.strong.transformed.expect │ │ │ │ ├── cache_lookups.dart.textual_outline.expect │ │ │ │ ├── cache_lookups.dart.textual_outline_modelled.expect │ │ │ │ ├── cache_lookups.dart.weak.expect │ │ │ │ ├── cache_lookups.dart.weak.modular.expect │ │ │ │ ├── cache_lookups.dart.weak.outline.expect │ │ │ │ ├── cache_lookups.dart.weak.transformed.expect │ │ │ │ ├── cache_lookups_lib.dart │ │ │ │ ├── caching.dart │ │ │ │ ├── caching.dart.strong.expect │ │ │ │ ├── caching.dart.strong.transformed.expect │ │ │ │ ├── caching.dart.textual_outline.expect │ │ │ │ ├── caching.dart.textual_outline_modelled.expect │ │ │ │ ├── caching.dart.weak.expect │ │ │ │ ├── caching.dart.weak.modular.expect │ │ │ │ ├── caching.dart.weak.outline.expect │ │ │ │ ├── caching.dart.weak.transformed.expect │ │ │ │ ├── caching_constants.dart │ │ │ │ ├── caching_constants.dart.strong.expect │ │ │ │ ├── caching_constants.dart.strong.transformed.expect │ │ │ │ ├── caching_constants.dart.textual_outline.expect │ │ │ │ ├── caching_constants.dart.textual_outline_modelled.expect │ │ │ │ ├── caching_constants.dart.weak.expect │ │ │ │ ├── caching_constants.dart.weak.modular.expect │ │ │ │ ├── caching_constants.dart.weak.outline.expect │ │ │ │ ├── caching_constants.dart.weak.transformed.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.strong.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.strong.transformed.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.textual_outline.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.textual_outline_modelled.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.weak.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.weak.modular.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.weak.outline.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideIfStatement.dart.weak.transformed.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.strong.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.strong.transformed.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.textual_outline.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.textual_outline_modelled.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.weak.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.weak.modular.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.weak.outline.expect │ │ │ │ ├── caseHead_withClassicPattern_guarded_insideSwitchStatement.dart.weak.transformed.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.strong.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.strong.transformed.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.textual_outline.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.textual_outline_modelled.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.weak.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.weak.modular.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.weak.outline.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideIfStatement.dart.weak.transformed.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.strong.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.strong.transformed.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.textual_outline.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.textual_outline_modelled.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.weak.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.weak.modular.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.weak.outline.expect │ │ │ │ ├── caseHead_withNewPattern_guarded_insideSwitchStatement.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_case.dart │ │ │ │ ├── cast_inside_case.dart.strong.expect │ │ │ │ ├── cast_inside_case.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_case.dart.textual_outline.expect │ │ │ │ ├── cast_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_case.dart.weak.expect │ │ │ │ ├── cast_inside_case.dart.weak.modular.expect │ │ │ │ ├── cast_inside_case.dart.weak.outline.expect │ │ │ │ ├── cast_inside_case.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart │ │ │ │ ├── cast_inside_extractor_pattern.dart.strong.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.textual_outline.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.weak.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.weak.modular.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.weak.outline.expect │ │ │ │ ├── cast_inside_extractor_pattern.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.strong.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.textual_outline.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.weak.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.weak.modular.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.weak.outline.expect │ │ │ │ ├── cast_inside_extractor_pattern_implicitly_named.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_if_case.dart │ │ │ │ ├── cast_inside_if_case.dart.strong.expect │ │ │ │ ├── cast_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── cast_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_if_case.dart.weak.expect │ │ │ │ ├── cast_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── cast_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── cast_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_list_pattern.dart │ │ │ │ ├── cast_inside_list_pattern.dart.strong.expect │ │ │ │ ├── cast_inside_list_pattern.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_list_pattern.dart.textual_outline.expect │ │ │ │ ├── cast_inside_list_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_list_pattern.dart.weak.expect │ │ │ │ ├── cast_inside_list_pattern.dart.weak.modular.expect │ │ │ │ ├── cast_inside_list_pattern.dart.weak.outline.expect │ │ │ │ ├── cast_inside_list_pattern.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart │ │ │ │ ├── cast_inside_logical_and_lhs.dart.strong.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.textual_outline.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.weak.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.weak.modular.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.weak.outline.expect │ │ │ │ ├── cast_inside_logical_and_lhs.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart │ │ │ │ ├── cast_inside_logical_and_rhs.dart.strong.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.textual_outline.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.weak.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.weak.modular.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.weak.outline.expect │ │ │ │ ├── cast_inside_logical_and_rhs.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart │ │ │ │ ├── cast_inside_logical_or_lhs.dart.strong.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.textual_outline.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.weak.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.weak.modular.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.weak.outline.expect │ │ │ │ ├── cast_inside_logical_or_lhs.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart │ │ │ │ ├── cast_inside_logical_or_rhs.dart.strong.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.textual_outline.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.weak.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.weak.modular.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.weak.outline.expect │ │ │ │ ├── cast_inside_logical_or_rhs.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_map_pattern.dart │ │ │ │ ├── cast_inside_map_pattern.dart.strong.expect │ │ │ │ ├── cast_inside_map_pattern.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_map_pattern.dart.textual_outline.expect │ │ │ │ ├── cast_inside_map_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_map_pattern.dart.weak.expect │ │ │ │ ├── cast_inside_map_pattern.dart.weak.modular.expect │ │ │ │ ├── cast_inside_map_pattern.dart.weak.outline.expect │ │ │ │ ├── cast_inside_map_pattern.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.strong.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.textual_outline.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.weak.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.weak.modular.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.weak.outline.expect │ │ │ │ ├── cast_inside_parenthesized_pattern.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.strong.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.textual_outline.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.weak.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.weak.modular.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.weak.outline.expect │ │ │ │ ├── cast_inside_record_pattern_implicitly_named.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart │ │ │ │ ├── cast_inside_record_pattern_named.dart.strong.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.textual_outline.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.weak.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.weak.modular.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.weak.outline.expect │ │ │ │ ├── cast_inside_record_pattern_named.dart.weak.transformed.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.strong.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.strong.transformed.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.textual_outline.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.textual_outline_modelled.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.weak.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.weak.modular.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.weak.outline.expect │ │ │ │ ├── cast_inside_record_pattern_unnamed.dart.weak.transformed.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.strong.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.strong.transformed.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.textual_outline.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.weak.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.weak.modular.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.weak.outline.expect │ │ │ │ ├── collections_entry_to_element_conversion_in_inference.dart.weak.transformed.expect │ │ │ │ ├── const_patterns.dart │ │ │ │ ├── const_patterns.dart.strong.expect │ │ │ │ ├── const_patterns.dart.strong.transformed.expect │ │ │ │ ├── const_patterns.dart.textual_outline.expect │ │ │ │ ├── const_patterns.dart.textual_outline_modelled.expect │ │ │ │ ├── const_patterns.dart.weak.expect │ │ │ │ ├── const_patterns.dart.weak.modular.expect │ │ │ │ ├── const_patterns.dart.weak.outline.expect │ │ │ │ ├── const_patterns.dart.weak.transformed.expect │ │ │ │ ├── const_patterns_binary.dart │ │ │ │ ├── const_patterns_binary.dart.strong.expect │ │ │ │ ├── const_patterns_binary.dart.strong.transformed.expect │ │ │ │ ├── const_patterns_binary.dart.textual_outline.expect │ │ │ │ ├── const_patterns_binary.dart.textual_outline_modelled.expect │ │ │ │ ├── const_patterns_binary.dart.weak.expect │ │ │ │ ├── const_patterns_binary.dart.weak.modular.expect │ │ │ │ ├── const_patterns_binary.dart.weak.outline.expect │ │ │ │ ├── const_patterns_binary.dart.weak.transformed.expect │ │ │ │ ├── constant_identifier_inside_case.dart │ │ │ │ ├── constant_identifier_inside_case.dart.strong.expect │ │ │ │ ├── constant_identifier_inside_case.dart.strong.transformed.expect │ │ │ │ ├── constant_identifier_inside_case.dart.textual_outline.expect │ │ │ │ ├── constant_identifier_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_identifier_inside_case.dart.weak.expect │ │ │ │ ├── constant_identifier_inside_case.dart.weak.modular.expect │ │ │ │ ├── constant_identifier_inside_case.dart.weak.outline.expect │ │ │ │ ├── constant_identifier_inside_case.dart.weak.transformed.expect │ │ │ │ ├── constant_identifier_inside_cast.dart │ │ │ │ ├── constant_identifier_inside_cast.dart.strong.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.textual_outline.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.weak.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.weak.modular.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.weak.outline.expect │ │ │ │ ├── constant_identifier_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart │ │ │ │ ├── constant_identifier_inside_if_case.dart.strong.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.weak.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── constant_identifier_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart │ │ │ │ ├── constant_identifier_inside_null_assert.dart.strong.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.weak.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── constant_identifier_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart │ │ │ │ ├── constant_identifier_inside_null_check.dart.strong.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.weak.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── constant_identifier_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── constant_pattern_in_if.dart │ │ │ │ ├── constant_pattern_in_if.dart.strong.expect │ │ │ │ ├── constant_pattern_in_if.dart.strong.transformed.expect │ │ │ │ ├── constant_pattern_in_if.dart.textual_outline.expect │ │ │ │ ├── constant_pattern_in_if.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_pattern_in_if.dart.weak.expect │ │ │ │ ├── constant_pattern_in_if.dart.weak.modular.expect │ │ │ │ ├── constant_pattern_in_if.dart.weak.outline.expect │ │ │ │ ├── constant_pattern_in_if.dart.weak.transformed.expect │ │ │ │ ├── constant_pattern_in_switch.dart │ │ │ │ ├── constant_pattern_in_switch.dart.strong.expect │ │ │ │ ├── constant_pattern_in_switch.dart.strong.transformed.expect │ │ │ │ ├── constant_pattern_in_switch.dart.textual_outline.expect │ │ │ │ ├── constant_pattern_in_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_pattern_in_switch.dart.weak.expect │ │ │ │ ├── constant_pattern_in_switch.dart.weak.modular.expect │ │ │ │ ├── constant_pattern_in_switch.dart.weak.outline.expect │ │ │ │ ├── constant_pattern_in_switch.dart.weak.transformed.expect │ │ │ │ ├── double_literal_inside_case.dart │ │ │ │ ├── double_literal_inside_case.dart.strong.expect │ │ │ │ ├── double_literal_inside_case.dart.strong.transformed.expect │ │ │ │ ├── double_literal_inside_case.dart.textual_outline.expect │ │ │ │ ├── double_literal_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── double_literal_inside_case.dart.weak.expect │ │ │ │ ├── double_literal_inside_case.dart.weak.modular.expect │ │ │ │ ├── double_literal_inside_case.dart.weak.outline.expect │ │ │ │ ├── double_literal_inside_case.dart.weak.transformed.expect │ │ │ │ ├── double_literal_inside_cast.dart │ │ │ │ ├── double_literal_inside_cast.dart.strong.expect │ │ │ │ ├── double_literal_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── double_literal_inside_cast.dart.textual_outline.expect │ │ │ │ ├── double_literal_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── double_literal_inside_cast.dart.weak.expect │ │ │ │ ├── double_literal_inside_cast.dart.weak.modular.expect │ │ │ │ ├── double_literal_inside_cast.dart.weak.outline.expect │ │ │ │ ├── double_literal_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── double_literal_inside_if_case.dart │ │ │ │ ├── double_literal_inside_if_case.dart.strong.expect │ │ │ │ ├── double_literal_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── double_literal_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── double_literal_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── double_literal_inside_if_case.dart.weak.expect │ │ │ │ ├── double_literal_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── double_literal_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── double_literal_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── double_literal_inside_null_assert.dart │ │ │ │ ├── double_literal_inside_null_assert.dart.strong.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.weak.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── double_literal_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── double_literal_inside_null_check.dart │ │ │ │ ├── double_literal_inside_null_check.dart.strong.expect │ │ │ │ ├── double_literal_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── double_literal_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── double_literal_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── double_literal_inside_null_check.dart.weak.expect │ │ │ │ ├── double_literal_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── double_literal_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── double_literal_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── dynamic_guard.dart │ │ │ │ ├── dynamic_guard.dart.strong.expect │ │ │ │ ├── dynamic_guard.dart.strong.transformed.expect │ │ │ │ ├── dynamic_guard.dart.textual_outline.expect │ │ │ │ ├── dynamic_guard.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_guard.dart.weak.expect │ │ │ │ ├── dynamic_guard.dart.weak.modular.expect │ │ │ │ ├── dynamic_guard.dart.weak.outline.expect │ │ │ │ ├── dynamic_guard.dart.weak.transformed.expect │ │ │ │ ├── element_to_entry_conversion.dart │ │ │ │ ├── element_to_entry_conversion.dart.strong.expect │ │ │ │ ├── element_to_entry_conversion.dart.strong.transformed.expect │ │ │ │ ├── element_to_entry_conversion.dart.textual_outline.expect │ │ │ │ ├── element_to_entry_conversion.dart.textual_outline_modelled.expect │ │ │ │ ├── element_to_entry_conversion.dart.weak.expect │ │ │ │ ├── element_to_entry_conversion.dart.weak.modular.expect │ │ │ │ ├── element_to_entry_conversion.dart.weak.outline.expect │ │ │ │ ├── element_to_entry_conversion.dart.weak.transformed.expect │ │ │ │ ├── empty_map_pattern.dart │ │ │ │ ├── empty_map_pattern.dart.strong.expect │ │ │ │ ├── empty_map_pattern.dart.strong.transformed.expect │ │ │ │ ├── empty_map_pattern.dart.textual_outline.expect │ │ │ │ ├── empty_map_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── empty_map_pattern.dart.weak.expect │ │ │ │ ├── empty_map_pattern.dart.weak.modular.expect │ │ │ │ ├── empty_map_pattern.dart.weak.outline.expect │ │ │ │ ├── empty_map_pattern.dart.weak.transformed.expect │ │ │ │ ├── error_cases.dart │ │ │ │ ├── error_cases.dart.strong.expect │ │ │ │ ├── error_cases.dart.strong.transformed.expect │ │ │ │ ├── error_cases.dart.textual_outline.expect │ │ │ │ ├── error_cases.dart.textual_outline_modelled.expect │ │ │ │ ├── error_cases.dart.weak.expect │ │ │ │ ├── error_cases.dart.weak.modular.expect │ │ │ │ ├── error_cases.dart.weak.outline.expect │ │ │ │ ├── error_cases.dart.weak.transformed.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.strong.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.strong.transformed.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.textual_outline.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.textual_outline_modelled.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.weak.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.weak.modular.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.weak.outline.expect │ │ │ │ ├── error_recovery_after_question_suffix_in_expression.dart.weak.transformed.expect │ │ │ │ ├── exhaustiveness │ │ │ │ │ ├── bool_switch.dart │ │ │ │ │ ├── bool_switch.dart.strong.expect │ │ │ │ │ ├── bool_switch.dart.strong.transformed.expect │ │ │ │ │ ├── bool_switch.dart.textual_outline.expect │ │ │ │ │ ├── bool_switch.dart.textual_outline_modelled.expect │ │ │ │ │ ├── bool_switch.dart.weak.expect │ │ │ │ │ ├── bool_switch.dart.weak.modular.expect │ │ │ │ │ ├── bool_switch.dart.weak.outline.expect │ │ │ │ │ ├── bool_switch.dart.weak.transformed.expect │ │ │ │ │ ├── enum_switch.dart │ │ │ │ │ ├── enum_switch.dart.strong.expect │ │ │ │ │ ├── enum_switch.dart.strong.transformed.expect │ │ │ │ │ ├── enum_switch.dart.textual_outline.expect │ │ │ │ │ ├── enum_switch.dart.textual_outline_modelled.expect │ │ │ │ │ ├── enum_switch.dart.weak.expect │ │ │ │ │ ├── enum_switch.dart.weak.modular.expect │ │ │ │ │ ├── enum_switch.dart.weak.outline.expect │ │ │ │ │ ├── enum_switch.dart.weak.transformed.expect │ │ │ │ │ ├── intersect.dart │ │ │ │ │ ├── intersect.dart.strong.expect │ │ │ │ │ ├── intersect.dart.strong.transformed.expect │ │ │ │ │ ├── intersect.dart.textual_outline.expect │ │ │ │ │ ├── intersect.dart.textual_outline_modelled.expect │ │ │ │ │ ├── intersect.dart.weak.expect │ │ │ │ │ ├── intersect.dart.weak.modular.expect │ │ │ │ │ ├── intersect.dart.weak.outline.expect │ │ │ │ │ ├── intersect.dart.weak.transformed.expect │ │ │ │ │ ├── issue2878_example0.dart │ │ │ │ │ ├── issue2878_example0.dart.strong.expect │ │ │ │ │ ├── issue2878_example0.dart.strong.transformed.expect │ │ │ │ │ ├── issue2878_example0.dart.textual_outline.expect │ │ │ │ │ ├── issue2878_example0.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue2878_example0.dart.weak.expect │ │ │ │ │ ├── issue2878_example0.dart.weak.modular.expect │ │ │ │ │ ├── issue2878_example0.dart.weak.outline.expect │ │ │ │ │ ├── issue2878_example0.dart.weak.transformed.expect │ │ │ │ │ ├── issue2878_example1.dart │ │ │ │ │ ├── issue2878_example1.dart.strong.expect │ │ │ │ │ ├── issue2878_example1.dart.strong.transformed.expect │ │ │ │ │ ├── issue2878_example1.dart.textual_outline.expect │ │ │ │ │ ├── issue2878_example1.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue2878_example1.dart.weak.expect │ │ │ │ │ ├── issue2878_example1.dart.weak.modular.expect │ │ │ │ │ ├── issue2878_example1.dart.weak.outline.expect │ │ │ │ │ ├── issue2878_example1.dart.weak.transformed.expect │ │ │ │ │ ├── issue2878_example2.dart │ │ │ │ │ ├── issue2878_example2.dart.strong.expect │ │ │ │ │ ├── issue2878_example2.dart.strong.transformed.expect │ │ │ │ │ ├── issue2878_example2.dart.textual_outline.expect │ │ │ │ │ ├── issue2878_example2.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue2878_example2.dart.weak.expect │ │ │ │ │ ├── issue2878_example2.dart.weak.modular.expect │ │ │ │ │ ├── issue2878_example2.dart.weak.outline.expect │ │ │ │ │ ├── issue2878_example2.dart.weak.transformed.expect │ │ │ │ │ ├── issue2878_example3.dart │ │ │ │ │ ├── issue2878_example3.dart.strong.expect │ │ │ │ │ ├── issue2878_example3.dart.strong.transformed.expect │ │ │ │ │ ├── issue2878_example3.dart.textual_outline.expect │ │ │ │ │ ├── issue2878_example3.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue2878_example3.dart.weak.expect │ │ │ │ │ ├── issue2878_example3.dart.weak.modular.expect │ │ │ │ │ ├── issue2878_example3.dart.weak.outline.expect │ │ │ │ │ ├── issue2878_example3.dart.weak.transformed.expect │ │ │ │ │ ├── issue2878_example4.dart │ │ │ │ │ ├── issue2878_example4.dart.strong.expect │ │ │ │ │ ├── issue2878_example4.dart.strong.transformed.expect │ │ │ │ │ ├── issue2878_example4.dart.textual_outline.expect │ │ │ │ │ ├── issue2878_example4.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue2878_example4.dart.weak.expect │ │ │ │ │ ├── issue2878_example4.dart.weak.modular.expect │ │ │ │ │ ├── issue2878_example4.dart.weak.outline.expect │ │ │ │ │ ├── issue2878_example4.dart.weak.transformed.expect │ │ │ │ │ ├── issue51957.dart │ │ │ │ │ ├── issue51957.dart.strong.expect │ │ │ │ │ ├── issue51957.dart.strong.transformed.expect │ │ │ │ │ ├── issue51957.dart.textual_outline.expect │ │ │ │ │ ├── issue51957.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue51957.dart.weak.expect │ │ │ │ │ ├── issue51957.dart.weak.modular.expect │ │ │ │ │ ├── issue51957.dart.weak.outline.expect │ │ │ │ │ ├── issue51957.dart.weak.transformed.expect │ │ │ │ │ ├── issue52048.dart │ │ │ │ │ ├── issue52048.dart.strong.expect │ │ │ │ │ ├── issue52048.dart.strong.transformed.expect │ │ │ │ │ ├── issue52048.dart.textual_outline.expect │ │ │ │ │ ├── issue52048.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue52048.dart.weak.expect │ │ │ │ │ ├── issue52048.dart.weak.modular.expect │ │ │ │ │ ├── issue52048.dart.weak.outline.expect │ │ │ │ │ ├── issue52048.dart.weak.transformed.expect │ │ │ │ │ ├── list.dart │ │ │ │ │ ├── list.dart.strong.expect │ │ │ │ │ ├── list.dart.strong.transformed.expect │ │ │ │ │ ├── list.dart.textual_outline.expect │ │ │ │ │ ├── list.dart.textual_outline_modelled.expect │ │ │ │ │ ├── list.dart.weak.expect │ │ │ │ │ ├── list.dart.weak.modular.expect │ │ │ │ │ ├── list.dart.weak.outline.expect │ │ │ │ │ ├── list.dart.weak.transformed.expect │ │ │ │ │ ├── null.dart │ │ │ │ │ ├── null.dart.strong.expect │ │ │ │ │ ├── null.dart.strong.transformed.expect │ │ │ │ │ ├── null.dart.textual_outline.expect │ │ │ │ │ ├── null.dart.textual_outline_modelled.expect │ │ │ │ │ ├── null.dart.weak.expect │ │ │ │ │ ├── null.dart.weak.modular.expect │ │ │ │ │ ├── null.dart.weak.outline.expect │ │ │ │ │ ├── null.dart.weak.transformed.expect │ │ │ │ │ ├── object_pattern.dart │ │ │ │ │ ├── object_pattern.dart.strong.expect │ │ │ │ │ ├── object_pattern.dart.strong.transformed.expect │ │ │ │ │ ├── object_pattern.dart.textual_outline.expect │ │ │ │ │ ├── object_pattern.dart.textual_outline_modelled.expect │ │ │ │ │ ├── object_pattern.dart.weak.expect │ │ │ │ │ ├── object_pattern.dart.weak.modular.expect │ │ │ │ │ ├── object_pattern.dart.weak.outline.expect │ │ │ │ │ ├── object_pattern.dart.weak.transformed.expect │ │ │ │ │ ├── record.dart │ │ │ │ │ ├── record.dart.strong.expect │ │ │ │ │ ├── record.dart.strong.transformed.expect │ │ │ │ │ ├── record.dart.textual_outline.expect │ │ │ │ │ ├── record.dart.textual_outline_modelled.expect │ │ │ │ │ ├── record.dart.weak.expect │ │ │ │ │ ├── record.dart.weak.modular.expect │ │ │ │ │ ├── record.dart.weak.outline.expect │ │ │ │ │ └── record.dart.weak.transformed.expect │ │ │ │ ├── extension_access.dart │ │ │ │ ├── extension_access.dart.strong.expect │ │ │ │ ├── extension_access.dart.strong.transformed.expect │ │ │ │ ├── extension_access.dart.textual_outline.expect │ │ │ │ ├── extension_access.dart.textual_outline_modelled.expect │ │ │ │ ├── extension_access.dart.weak.expect │ │ │ │ ├── extension_access.dart.weak.modular.expect │ │ │ │ ├── extension_access.dart.weak.outline.expect │ │ │ │ ├── extension_access.dart.weak.transformed.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart │ │ │ │ ├── extractor_pattern_inside_cast.dart.strong.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.textual_outline.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.weak.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.weak.modular.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.weak.outline.expect │ │ │ │ ├── extractor_pattern_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.strong.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.weak.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── extractor_pattern_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart │ │ │ │ ├── extractor_pattern_inside_null_check.dart.strong.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.weak.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── extractor_pattern_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart │ │ │ │ ├── extractor_pattern_with_type_args.dart.strong.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.strong.transformed.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.textual_outline.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.textual_outline_modelled.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.weak.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.weak.modular.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.weak.outline.expect │ │ │ │ ├── extractor_pattern_with_type_args.dart.weak.transformed.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.strong.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.weak.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── extractor_pattern_with_type_args_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── fields_order.dart │ │ │ │ ├── fields_order.dart.strong.expect │ │ │ │ ├── fields_order.dart.strong.transformed.expect │ │ │ │ ├── fields_order.dart.textual_outline.expect │ │ │ │ ├── fields_order.dart.textual_outline_modelled.expect │ │ │ │ ├── fields_order.dart.weak.expect │ │ │ │ ├── fields_order.dart.weak.modular.expect │ │ │ │ ├── fields_order.dart.weak.outline.expect │ │ │ │ ├── fields_order.dart.weak.transformed.expect │ │ │ │ ├── final_joint_variables.dart │ │ │ │ ├── final_joint_variables.dart.strong.expect │ │ │ │ ├── final_joint_variables.dart.strong.transformed.expect │ │ │ │ ├── final_joint_variables.dart.textual_outline.expect │ │ │ │ ├── final_joint_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── final_joint_variables.dart.weak.expect │ │ │ │ ├── final_joint_variables.dart.weak.modular.expect │ │ │ │ ├── final_joint_variables.dart.weak.outline.expect │ │ │ │ ├── final_joint_variables.dart.weak.transformed.expect │ │ │ │ ├── final_variable_inside_case.dart │ │ │ │ ├── final_variable_inside_case.dart.strong.expect │ │ │ │ ├── final_variable_inside_case.dart.strong.transformed.expect │ │ │ │ ├── final_variable_inside_case.dart.textual_outline.expect │ │ │ │ ├── final_variable_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── final_variable_inside_case.dart.weak.expect │ │ │ │ ├── final_variable_inside_case.dart.weak.modular.expect │ │ │ │ ├── final_variable_inside_case.dart.weak.outline.expect │ │ │ │ ├── final_variable_inside_case.dart.weak.transformed.expect │ │ │ │ ├── final_variable_inside_cast.dart │ │ │ │ ├── final_variable_inside_cast.dart.strong.expect │ │ │ │ ├── final_variable_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── final_variable_inside_cast.dart.textual_outline.expect │ │ │ │ ├── final_variable_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── final_variable_inside_cast.dart.weak.expect │ │ │ │ ├── final_variable_inside_cast.dart.weak.modular.expect │ │ │ │ ├── final_variable_inside_cast.dart.weak.outline.expect │ │ │ │ ├── final_variable_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── final_variable_inside_if_case.dart │ │ │ │ ├── final_variable_inside_if_case.dart.strong.expect │ │ │ │ ├── final_variable_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── final_variable_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── final_variable_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── final_variable_inside_if_case.dart.weak.expect │ │ │ │ ├── final_variable_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── final_variable_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── final_variable_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── final_variable_inside_null_assert.dart │ │ │ │ ├── final_variable_inside_null_assert.dart.strong.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.weak.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── final_variable_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── final_variable_inside_null_check.dart │ │ │ │ ├── final_variable_inside_null_check.dart.strong.expect │ │ │ │ ├── final_variable_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── final_variable_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── final_variable_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── final_variable_inside_null_check.dart.weak.expect │ │ │ │ ├── final_variable_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── final_variable_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── final_variable_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── for_final_variable.dart │ │ │ │ ├── for_final_variable.dart.strong.expect │ │ │ │ ├── for_final_variable.dart.strong.transformed.expect │ │ │ │ ├── for_final_variable.dart.textual_outline.expect │ │ │ │ ├── for_final_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── for_final_variable.dart.weak.expect │ │ │ │ ├── for_final_variable.dart.weak.modular.expect │ │ │ │ ├── for_final_variable.dart.weak.outline.expect │ │ │ │ ├── for_final_variable.dart.weak.transformed.expect │ │ │ │ ├── for_in_inference.dart │ │ │ │ ├── for_in_inference.dart.strong.expect │ │ │ │ ├── for_in_inference.dart.strong.transformed.expect │ │ │ │ ├── for_in_inference.dart.textual_outline.expect │ │ │ │ ├── for_in_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_inference.dart.weak.expect │ │ │ │ ├── for_in_inference.dart.weak.modular.expect │ │ │ │ ├── for_in_inference.dart.weak.outline.expect │ │ │ │ ├── for_in_inference.dart.weak.transformed.expect │ │ │ │ ├── for_in_inference_error.dart │ │ │ │ ├── for_in_inference_error.dart.strong.expect │ │ │ │ ├── for_in_inference_error.dart.strong.transformed.expect │ │ │ │ ├── for_in_inference_error.dart.textual_outline.expect │ │ │ │ ├── for_in_inference_error.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_inference_error.dart.weak.expect │ │ │ │ ├── for_in_inference_error.dart.weak.modular.expect │ │ │ │ ├── for_in_inference_error.dart.weak.outline.expect │ │ │ │ ├── for_in_inference_error.dart.weak.transformed.expect │ │ │ │ ├── generic_extension_access.dart │ │ │ │ ├── generic_extension_access.dart.strong.expect │ │ │ │ ├── generic_extension_access.dart.strong.transformed.expect │ │ │ │ ├── generic_extension_access.dart.textual_outline.expect │ │ │ │ ├── generic_extension_access.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_extension_access.dart.weak.expect │ │ │ │ ├── generic_extension_access.dart.weak.modular.expect │ │ │ │ ├── generic_extension_access.dart.weak.outline.expect │ │ │ │ ├── generic_extension_access.dart.weak.transformed.expect │ │ │ │ ├── identical_map_keys.dart │ │ │ │ ├── identical_map_keys.dart.strong.expect │ │ │ │ ├── identical_map_keys.dart.strong.transformed.expect │ │ │ │ ├── identical_map_keys.dart.textual_outline.expect │ │ │ │ ├── identical_map_keys.dart.textual_outline_modelled.expect │ │ │ │ ├── identical_map_keys.dart.weak.expect │ │ │ │ ├── identical_map_keys.dart.weak.modular.expect │ │ │ │ ├── identical_map_keys.dart.weak.outline.expect │ │ │ │ ├── identical_map_keys.dart.weak.transformed.expect │ │ │ │ ├── if_else_in_collections_errors.dart │ │ │ │ ├── if_else_in_collections_errors.dart.strong.expect │ │ │ │ ├── if_else_in_collections_errors.dart.strong.transformed.expect │ │ │ │ ├── if_else_in_collections_errors.dart.textual_outline.expect │ │ │ │ ├── if_else_in_collections_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── if_else_in_collections_errors.dart.weak.expect │ │ │ │ ├── if_else_in_collections_errors.dart.weak.modular.expect │ │ │ │ ├── if_else_in_collections_errors.dart.weak.outline.expect │ │ │ │ ├── if_else_in_collections_errors.dart.weak.transformed.expect │ │ │ │ ├── integer_literal_inside_case.dart │ │ │ │ ├── integer_literal_inside_case.dart.strong.expect │ │ │ │ ├── integer_literal_inside_case.dart.strong.transformed.expect │ │ │ │ ├── integer_literal_inside_case.dart.textual_outline.expect │ │ │ │ ├── integer_literal_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── integer_literal_inside_case.dart.weak.expect │ │ │ │ ├── integer_literal_inside_case.dart.weak.modular.expect │ │ │ │ ├── integer_literal_inside_case.dart.weak.outline.expect │ │ │ │ ├── integer_literal_inside_case.dart.weak.transformed.expect │ │ │ │ ├── integer_literal_inside_cast.dart │ │ │ │ ├── integer_literal_inside_cast.dart.strong.expect │ │ │ │ ├── integer_literal_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── integer_literal_inside_cast.dart.textual_outline.expect │ │ │ │ ├── integer_literal_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── integer_literal_inside_cast.dart.weak.expect │ │ │ │ ├── integer_literal_inside_cast.dart.weak.modular.expect │ │ │ │ ├── integer_literal_inside_cast.dart.weak.outline.expect │ │ │ │ ├── integer_literal_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── integer_literal_inside_if_case.dart │ │ │ │ ├── integer_literal_inside_if_case.dart.strong.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.weak.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── integer_literal_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart │ │ │ │ ├── integer_literal_inside_null_assert.dart.strong.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.weak.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── integer_literal_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── integer_literal_inside_null_check.dart │ │ │ │ ├── integer_literal_inside_null_check.dart.strong.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.weak.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── integer_literal_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── invalid.dart │ │ │ │ ├── invalid.dart.strong.expect │ │ │ │ ├── invalid.dart.strong.transformed.expect │ │ │ │ ├── invalid.dart.textual_outline.expect │ │ │ │ ├── invalid.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid.dart.weak.expect │ │ │ │ ├── invalid.dart.weak.modular.expect │ │ │ │ ├── invalid.dart.weak.outline.expect │ │ │ │ ├── invalid.dart.weak.transformed.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart │ │ │ │ ├── invalid_pattern_declares_variables.dart.strong.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.strong.transformed.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.textual_outline.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.weak.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.weak.modular.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.weak.outline.expect │ │ │ │ ├── invalid_pattern_declares_variables.dart.weak.transformed.expect │ │ │ │ ├── issue50629.dart │ │ │ │ ├── issue50629.dart.strong.expect │ │ │ │ ├── issue50629.dart.strong.transformed.expect │ │ │ │ ├── issue50629.dart.textual_outline.expect │ │ │ │ ├── issue50629.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50629.dart.weak.expect │ │ │ │ ├── issue50629.dart.weak.modular.expect │ │ │ │ ├── issue50629.dart.weak.outline.expect │ │ │ │ ├── issue50629.dart.weak.transformed.expect │ │ │ │ ├── issue50871.dart │ │ │ │ ├── issue50871.dart.strong.expect │ │ │ │ ├── issue50871.dart.strong.transformed.expect │ │ │ │ ├── issue50871.dart.textual_outline.expect │ │ │ │ ├── issue50871.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50871.dart.weak.expect │ │ │ │ ├── issue50871.dart.weak.modular.expect │ │ │ │ ├── issue50871.dart.weak.outline.expect │ │ │ │ ├── issue50871.dart.weak.transformed.expect │ │ │ │ ├── issue50886.dart │ │ │ │ ├── issue50886.dart.strong.expect │ │ │ │ ├── issue50886.dart.strong.transformed.expect │ │ │ │ ├── issue50886.dart.textual_outline.expect │ │ │ │ ├── issue50886.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50886.dart.weak.expect │ │ │ │ ├── issue50886.dart.weak.modular.expect │ │ │ │ ├── issue50886.dart.weak.outline.expect │ │ │ │ ├── issue50886.dart.weak.transformed.expect │ │ │ │ ├── issue50897.dart │ │ │ │ ├── issue50897.dart.strong.expect │ │ │ │ ├── issue50897.dart.strong.transformed.expect │ │ │ │ ├── issue50897.dart.textual_outline.expect │ │ │ │ ├── issue50897.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50897.dart.weak.expect │ │ │ │ ├── issue50897.dart.weak.modular.expect │ │ │ │ ├── issue50897.dart.weak.outline.expect │ │ │ │ ├── issue50897.dart.weak.transformed.expect │ │ │ │ ├── issue50931.dart │ │ │ │ ├── issue50931.dart.strong.expect │ │ │ │ ├── issue50931.dart.strong.transformed.expect │ │ │ │ ├── issue50931.dart.textual_outline.expect │ │ │ │ ├── issue50931.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50931.dart.weak.expect │ │ │ │ ├── issue50931.dart.weak.modular.expect │ │ │ │ ├── issue50931.dart.weak.outline.expect │ │ │ │ ├── issue50931.dart.weak.transformed.expect │ │ │ │ ├── issue50932.dart │ │ │ │ ├── issue50932.dart.strong.expect │ │ │ │ ├── issue50932.dart.strong.transformed.expect │ │ │ │ ├── issue50932.dart.textual_outline.expect │ │ │ │ ├── issue50932.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50932.dart.weak.expect │ │ │ │ ├── issue50932.dart.weak.modular.expect │ │ │ │ ├── issue50932.dart.weak.outline.expect │ │ │ │ ├── issue50932.dart.weak.transformed.expect │ │ │ │ ├── issue50985.dart │ │ │ │ ├── issue50985.dart.strong.expect │ │ │ │ ├── issue50985.dart.strong.transformed.expect │ │ │ │ ├── issue50985.dart.textual_outline.expect │ │ │ │ ├── issue50985.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50985.dart.weak.expect │ │ │ │ ├── issue50985.dart.weak.modular.expect │ │ │ │ ├── issue50985.dart.weak.outline.expect │ │ │ │ ├── issue50985.dart.weak.transformed.expect │ │ │ │ ├── issue50993.dart │ │ │ │ ├── issue50993.dart.strong.expect │ │ │ │ ├── issue50993.dart.strong.transformed.expect │ │ │ │ ├── issue50993.dart.textual_outline.expect │ │ │ │ ├── issue50993.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50993.dart.weak.expect │ │ │ │ ├── issue50993.dart.weak.modular.expect │ │ │ │ ├── issue50993.dart.weak.outline.expect │ │ │ │ ├── issue50993.dart.weak.transformed.expect │ │ │ │ ├── issue51009.dart │ │ │ │ ├── issue51009.dart.strong.expect │ │ │ │ ├── issue51009.dart.strong.transformed.expect │ │ │ │ ├── issue51009.dart.textual_outline.expect │ │ │ │ ├── issue51009.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51009.dart.weak.expect │ │ │ │ ├── issue51009.dart.weak.modular.expect │ │ │ │ ├── issue51009.dart.weak.outline.expect │ │ │ │ ├── issue51009.dart.weak.transformed.expect │ │ │ │ ├── issue51012.dart │ │ │ │ ├── issue51012.dart.strong.expect │ │ │ │ ├── issue51012.dart.strong.transformed.expect │ │ │ │ ├── issue51012.dart.textual_outline.expect │ │ │ │ ├── issue51012.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51012.dart.weak.expect │ │ │ │ ├── issue51012.dart.weak.modular.expect │ │ │ │ ├── issue51012.dart.weak.outline.expect │ │ │ │ ├── issue51012.dart.weak.transformed.expect │ │ │ │ ├── issue51029.dart │ │ │ │ ├── issue51029.dart.strong.expect │ │ │ │ ├── issue51029.dart.strong.transformed.expect │ │ │ │ ├── issue51029.dart.textual_outline.expect │ │ │ │ ├── issue51029.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51029.dart.weak.expect │ │ │ │ ├── issue51029.dart.weak.modular.expect │ │ │ │ ├── issue51029.dart.weak.outline.expect │ │ │ │ ├── issue51029.dart.weak.transformed.expect │ │ │ │ ├── issue51112.dart │ │ │ │ ├── issue51112.dart.strong.expect │ │ │ │ ├── issue51112.dart.strong.transformed.expect │ │ │ │ ├── issue51112.dart.textual_outline.expect │ │ │ │ ├── issue51112.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51112.dart.weak.expect │ │ │ │ ├── issue51112.dart.weak.modular.expect │ │ │ │ ├── issue51112.dart.weak.outline.expect │ │ │ │ ├── issue51112.dart.weak.transformed.expect │ │ │ │ ├── issue51138.dart │ │ │ │ ├── issue51138.dart.strong.expect │ │ │ │ ├── issue51138.dart.strong.transformed.expect │ │ │ │ ├── issue51138.dart.textual_outline.expect │ │ │ │ ├── issue51138.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51138.dart.weak.expect │ │ │ │ ├── issue51138.dart.weak.modular.expect │ │ │ │ ├── issue51138.dart.weak.outline.expect │ │ │ │ ├── issue51138.dart.weak.transformed.expect │ │ │ │ ├── issue51140.dart │ │ │ │ ├── issue51140.dart.strong.expect │ │ │ │ ├── issue51140.dart.strong.transformed.expect │ │ │ │ ├── issue51140.dart.textual_outline.expect │ │ │ │ ├── issue51140.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51140.dart.weak.expect │ │ │ │ ├── issue51140.dart.weak.modular.expect │ │ │ │ ├── issue51140.dart.weak.outline.expect │ │ │ │ ├── issue51140.dart.weak.transformed.expect │ │ │ │ ├── issue51260.dart │ │ │ │ ├── issue51260.dart.strong.expect │ │ │ │ ├── issue51260.dart.strong.transformed.expect │ │ │ │ ├── issue51260.dart.textual_outline.expect │ │ │ │ ├── issue51260.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51260.dart.weak.expect │ │ │ │ ├── issue51260.dart.weak.modular.expect │ │ │ │ ├── issue51260.dart.weak.outline.expect │ │ │ │ ├── issue51260.dart.weak.transformed.expect │ │ │ │ ├── issue51313.dart │ │ │ │ ├── issue51313.dart.strong.expect │ │ │ │ ├── issue51313.dart.strong.transformed.expect │ │ │ │ ├── issue51313.dart.textual_outline.expect │ │ │ │ ├── issue51313.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51313.dart.weak.expect │ │ │ │ ├── issue51313.dart.weak.modular.expect │ │ │ │ ├── issue51313.dart.weak.outline.expect │ │ │ │ ├── issue51313.dart.weak.transformed.expect │ │ │ │ ├── issue51314.dart │ │ │ │ ├── issue51314.dart.strong.expect │ │ │ │ ├── issue51314.dart.strong.transformed.expect │ │ │ │ ├── issue51314.dart.textual_outline.expect │ │ │ │ ├── issue51314.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51314.dart.weak.expect │ │ │ │ ├── issue51314.dart.weak.modular.expect │ │ │ │ ├── issue51314.dart.weak.outline.expect │ │ │ │ ├── issue51314.dart.weak.transformed.expect │ │ │ │ ├── issue51410.dart │ │ │ │ ├── issue51410.dart.strong.expect │ │ │ │ ├── issue51410.dart.strong.transformed.expect │ │ │ │ ├── issue51410.dart.textual_outline.expect │ │ │ │ ├── issue51410.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51410.dart.weak.expect │ │ │ │ ├── issue51410.dart.weak.modular.expect │ │ │ │ ├── issue51410.dart.weak.outline.expect │ │ │ │ ├── issue51410.dart.weak.transformed.expect │ │ │ │ ├── issue51432.dart │ │ │ │ ├── issue51432.dart.strong.expect │ │ │ │ ├── issue51432.dart.strong.transformed.expect │ │ │ │ ├── issue51432.dart.textual_outline.expect │ │ │ │ ├── issue51432.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51432.dart.weak.expect │ │ │ │ ├── issue51432.dart.weak.modular.expect │ │ │ │ ├── issue51432.dart.weak.outline.expect │ │ │ │ ├── issue51432.dart.weak.transformed.expect │ │ │ │ ├── issue51437.dart │ │ │ │ ├── issue51437.dart.strong.expect │ │ │ │ ├── issue51437.dart.strong.transformed.expect │ │ │ │ ├── issue51437.dart.textual_outline.expect │ │ │ │ ├── issue51437.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51437.dart.weak.expect │ │ │ │ ├── issue51437.dart.weak.modular.expect │ │ │ │ ├── issue51437.dart.weak.outline.expect │ │ │ │ ├── issue51437.dart.weak.transformed.expect │ │ │ │ ├── issue51480.dart │ │ │ │ ├── issue51480.dart.strong.expect │ │ │ │ ├── issue51480.dart.strong.transformed.expect │ │ │ │ ├── issue51480.dart.textual_outline.expect │ │ │ │ ├── issue51480.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51480.dart.weak.expect │ │ │ │ ├── issue51480.dart.weak.modular.expect │ │ │ │ ├── issue51480.dart.weak.outline.expect │ │ │ │ ├── issue51480.dart.weak.transformed.expect │ │ │ │ ├── issue51489.dart │ │ │ │ ├── issue51489.dart.strong.expect │ │ │ │ ├── issue51489.dart.strong.transformed.expect │ │ │ │ ├── issue51489.dart.textual_outline.expect │ │ │ │ ├── issue51489.dart.weak.expect │ │ │ │ ├── issue51489.dart.weak.modular.expect │ │ │ │ ├── issue51489.dart.weak.outline.expect │ │ │ │ ├── issue51489.dart.weak.transformed.expect │ │ │ │ ├── issue51523.dart │ │ │ │ ├── issue51523.dart.strong.expect │ │ │ │ ├── issue51523.dart.strong.transformed.expect │ │ │ │ ├── issue51523.dart.textual_outline.expect │ │ │ │ ├── issue51523.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51523.dart.weak.expect │ │ │ │ ├── issue51523.dart.weak.modular.expect │ │ │ │ ├── issue51523.dart.weak.outline.expect │ │ │ │ ├── issue51523.dart.weak.transformed.expect │ │ │ │ ├── issue51553.dart │ │ │ │ ├── issue51553.dart.strong.expect │ │ │ │ ├── issue51553.dart.strong.transformed.expect │ │ │ │ ├── issue51553.dart.textual_outline.expect │ │ │ │ ├── issue51553.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51553.dart.weak.expect │ │ │ │ ├── issue51553.dart.weak.modular.expect │ │ │ │ ├── issue51553.dart.weak.outline.expect │ │ │ │ ├── issue51553.dart.weak.transformed.expect │ │ │ │ ├── issue51587.dart │ │ │ │ ├── issue51587.dart.strong.expect │ │ │ │ ├── issue51587.dart.strong.transformed.expect │ │ │ │ ├── issue51587.dart.textual_outline.expect │ │ │ │ ├── issue51587.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51587.dart.weak.expect │ │ │ │ ├── issue51587.dart.weak.modular.expect │ │ │ │ ├── issue51587.dart.weak.outline.expect │ │ │ │ ├── issue51587.dart.weak.transformed.expect │ │ │ │ ├── issue51604.dart │ │ │ │ ├── issue51604.dart.strong.expect │ │ │ │ ├── issue51604.dart.strong.transformed.expect │ │ │ │ ├── issue51604.dart.textual_outline.expect │ │ │ │ ├── issue51604.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51604.dart.weak.expect │ │ │ │ ├── issue51604.dart.weak.modular.expect │ │ │ │ ├── issue51604.dart.weak.outline.expect │ │ │ │ ├── issue51604.dart.weak.transformed.expect │ │ │ │ ├── issue51626.dart │ │ │ │ ├── issue51626.dart.strong.expect │ │ │ │ ├── issue51626.dart.strong.transformed.expect │ │ │ │ ├── issue51626.dart.textual_outline.expect │ │ │ │ ├── issue51626.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51626.dart.weak.expect │ │ │ │ ├── issue51626.dart.weak.modular.expect │ │ │ │ ├── issue51626.dart.weak.outline.expect │ │ │ │ ├── issue51626.dart.weak.transformed.expect │ │ │ │ ├── issue51636.dart │ │ │ │ ├── issue51636.dart.strong.expect │ │ │ │ ├── issue51636.dart.strong.transformed.expect │ │ │ │ ├── issue51636.dart.textual_outline.expect │ │ │ │ ├── issue51636.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51636.dart.weak.expect │ │ │ │ ├── issue51636.dart.weak.modular.expect │ │ │ │ ├── issue51636.dart.weak.outline.expect │ │ │ │ ├── issue51636.dart.weak.transformed.expect │ │ │ │ ├── issue51676.dart │ │ │ │ ├── issue51676.dart.strong.expect │ │ │ │ ├── issue51676.dart.strong.transformed.expect │ │ │ │ ├── issue51676.dart.textual_outline.expect │ │ │ │ ├── issue51676.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51676.dart.weak.expect │ │ │ │ ├── issue51676.dart.weak.modular.expect │ │ │ │ ├── issue51676.dart.weak.outline.expect │ │ │ │ ├── issue51676.dart.weak.transformed.expect │ │ │ │ ├── issue51710.dart │ │ │ │ ├── issue51710.dart.strong.expect │ │ │ │ ├── issue51710.dart.strong.transformed.expect │ │ │ │ ├── issue51710.dart.textual_outline.expect │ │ │ │ ├── issue51710.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51710.dart.weak.expect │ │ │ │ ├── issue51710.dart.weak.modular.expect │ │ │ │ ├── issue51710.dart.weak.outline.expect │ │ │ │ ├── issue51710.dart.weak.transformed.expect │ │ │ │ ├── issue51716 │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib1.dart │ │ │ │ │ ├── main_lib2.dart │ │ │ │ │ └── test.options │ │ │ │ ├── issue51724.dart │ │ │ │ ├── issue51724.dart.strong.expect │ │ │ │ ├── issue51724.dart.strong.transformed.expect │ │ │ │ ├── issue51724.dart.textual_outline.expect │ │ │ │ ├── issue51724.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51724.dart.weak.expect │ │ │ │ ├── issue51724.dart.weak.modular.expect │ │ │ │ ├── issue51724.dart.weak.outline.expect │ │ │ │ ├── issue51724.dart.weak.transformed.expect │ │ │ │ ├── issue51724_2.dart │ │ │ │ ├── issue51724_2.dart.strong.expect │ │ │ │ ├── issue51724_2.dart.strong.transformed.expect │ │ │ │ ├── issue51724_2.dart.textual_outline.expect │ │ │ │ ├── issue51724_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51724_2.dart.weak.expect │ │ │ │ ├── issue51724_2.dart.weak.modular.expect │ │ │ │ ├── issue51724_2.dart.weak.outline.expect │ │ │ │ ├── issue51724_2.dart.weak.transformed.expect │ │ │ │ ├── issue51739.dart │ │ │ │ ├── issue51739.dart.strong.expect │ │ │ │ ├── issue51739.dart.strong.transformed.expect │ │ │ │ ├── issue51739.dart.textual_outline.expect │ │ │ │ ├── issue51739.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51739.dart.weak.expect │ │ │ │ ├── issue51739.dart.weak.modular.expect │ │ │ │ ├── issue51739.dart.weak.outline.expect │ │ │ │ ├── issue51739.dart.weak.transformed.expect │ │ │ │ ├── issue51770.dart │ │ │ │ ├── issue51770.dart.strong.expect │ │ │ │ ├── issue51770.dart.strong.transformed.expect │ │ │ │ ├── issue51770.dart.textual_outline.expect │ │ │ │ ├── issue51770.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51770.dart.weak.expect │ │ │ │ ├── issue51770.dart.weak.modular.expect │ │ │ │ ├── issue51770.dart.weak.outline.expect │ │ │ │ ├── issue51770.dart.weak.transformed.expect │ │ │ │ ├── issue51771.dart │ │ │ │ ├── issue51771.dart.strong.expect │ │ │ │ ├── issue51771.dart.strong.transformed.expect │ │ │ │ ├── issue51771.dart.textual_outline.expect │ │ │ │ ├── issue51771.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51771.dart.weak.expect │ │ │ │ ├── issue51771.dart.weak.modular.expect │ │ │ │ ├── issue51771.dart.weak.outline.expect │ │ │ │ ├── issue51771.dart.weak.transformed.expect │ │ │ │ ├── issue51800.dart │ │ │ │ ├── issue51800.dart.strong.expect │ │ │ │ ├── issue51800.dart.strong.transformed.expect │ │ │ │ ├── issue51800.dart.textual_outline.expect │ │ │ │ ├── issue51800.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51800.dart.weak.expect │ │ │ │ ├── issue51800.dart.weak.modular.expect │ │ │ │ ├── issue51800.dart.weak.outline.expect │ │ │ │ ├── issue51800.dart.weak.transformed.expect │ │ │ │ ├── issue51861.dart │ │ │ │ ├── issue51861.dart.strong.expect │ │ │ │ ├── issue51861.dart.strong.transformed.expect │ │ │ │ ├── issue51861.dart.textual_outline.expect │ │ │ │ ├── issue51861.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51861.dart.weak.expect │ │ │ │ ├── issue51861.dart.weak.modular.expect │ │ │ │ ├── issue51861.dart.weak.outline.expect │ │ │ │ ├── issue51861.dart.weak.transformed.expect │ │ │ │ ├── issue51871.dart │ │ │ │ ├── issue51871.dart.strong.expect │ │ │ │ ├── issue51871.dart.strong.transformed.expect │ │ │ │ ├── issue51871.dart.textual_outline.expect │ │ │ │ ├── issue51871.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51871.dart.weak.expect │ │ │ │ ├── issue51871.dart.weak.modular.expect │ │ │ │ ├── issue51871.dart.weak.outline.expect │ │ │ │ ├── issue51871.dart.weak.transformed.expect │ │ │ │ ├── issue51898.dart │ │ │ │ ├── issue51898.dart.strong.expect │ │ │ │ ├── issue51898.dart.strong.transformed.expect │ │ │ │ ├── issue51898.dart.textual_outline.expect │ │ │ │ ├── issue51898.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51898.dart.weak.expect │ │ │ │ ├── issue51898.dart.weak.modular.expect │ │ │ │ ├── issue51898.dart.weak.outline.expect │ │ │ │ ├── issue51898.dart.weak.transformed.expect │ │ │ │ ├── language_issue2770.dart │ │ │ │ ├── language_issue2770.dart.strong.expect │ │ │ │ ├── language_issue2770.dart.strong.transformed.expect │ │ │ │ ├── language_issue2770.dart.textual_outline.expect │ │ │ │ ├── language_issue2770.dart.textual_outline_modelled.expect │ │ │ │ ├── language_issue2770.dart.weak.expect │ │ │ │ ├── language_issue2770.dart.weak.modular.expect │ │ │ │ ├── language_issue2770.dart.weak.outline.expect │ │ │ │ ├── language_issue2770.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_errors.dart │ │ │ │ ├── list_pattern_errors.dart.strong.expect │ │ │ │ ├── list_pattern_errors.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_errors.dart.textual_outline.expect │ │ │ │ ├── list_pattern_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_errors.dart.weak.expect │ │ │ │ ├── list_pattern_errors.dart.weak.modular.expect │ │ │ │ ├── list_pattern_errors.dart.weak.outline.expect │ │ │ │ ├── list_pattern_errors.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_case.dart │ │ │ │ ├── list_pattern_inside_case.dart.strong.expect │ │ │ │ ├── list_pattern_inside_case.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_case.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_case.dart.weak.expect │ │ │ │ ├── list_pattern_inside_case.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_case.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_case.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart │ │ │ │ ├── list_pattern_inside_case_empty.dart.strong.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.weak.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_case_empty.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.strong.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.weak.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_case_empty_whitespace.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.strong.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.weak.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_case_with_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_cast.dart │ │ │ │ ├── list_pattern_inside_cast.dart.strong.expect │ │ │ │ ├── list_pattern_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_cast.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_cast.dart.weak.expect │ │ │ │ ├── list_pattern_inside_cast.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_cast.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_if_case.dart │ │ │ │ ├── list_pattern_inside_if_case.dart.strong.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.weak.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart │ │ │ │ ├── list_pattern_inside_null_assert.dart.strong.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.weak.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── list_pattern_inside_null_check.dart │ │ │ │ ├── list_pattern_inside_null_check.dart.strong.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.weak.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── list_pattern_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── local_shadows_pattern.dart │ │ │ │ ├── local_shadows_pattern.dart.strong.expect │ │ │ │ ├── local_shadows_pattern.dart.strong.transformed.expect │ │ │ │ ├── local_shadows_pattern.dart.textual_outline.expect │ │ │ │ ├── local_shadows_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── local_shadows_pattern.dart.weak.expect │ │ │ │ ├── local_shadows_pattern.dart.weak.modular.expect │ │ │ │ ├── local_shadows_pattern.dart.weak.outline.expect │ │ │ │ ├── local_shadows_pattern.dart.weak.transformed.expect │ │ │ │ ├── logical_and_inside_if_case.dart │ │ │ │ ├── logical_and_inside_if_case.dart.strong.expect │ │ │ │ ├── logical_and_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── logical_and_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── logical_and_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_and_inside_if_case.dart.weak.expect │ │ │ │ ├── logical_and_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── logical_and_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── logical_and_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.strong.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.strong.transformed.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.textual_outline.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.weak.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.weak.modular.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.weak.outline.expect │ │ │ │ ├── logical_and_inside_logical_and_lhs.dart.weak.transformed.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.strong.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.strong.transformed.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.textual_outline.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.weak.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.weak.modular.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.weak.outline.expect │ │ │ │ ├── logical_and_inside_logical_or_lhs.dart.weak.transformed.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.strong.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.strong.transformed.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.textual_outline.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.weak.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.weak.modular.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.weak.outline.expect │ │ │ │ ├── logical_and_inside_logical_or_rhs.dart.weak.transformed.expect │ │ │ │ ├── logical_or_inside_if_case.dart │ │ │ │ ├── logical_or_inside_if_case.dart.strong.expect │ │ │ │ ├── logical_or_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── logical_or_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── logical_or_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_or_inside_if_case.dart.weak.expect │ │ │ │ ├── logical_or_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── logical_or_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── logical_or_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.strong.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.strong.transformed.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.textual_outline.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.weak.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.weak.modular.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.weak.outline.expect │ │ │ │ ├── logical_or_inside_logical_or_lhs.dart.weak.transformed.expect │ │ │ │ ├── map_lookup.dart │ │ │ │ ├── map_lookup.dart.strong.expect │ │ │ │ ├── map_lookup.dart.strong.transformed.expect │ │ │ │ ├── map_lookup.dart.textual_outline.expect │ │ │ │ ├── map_lookup.dart.textual_outline_modelled.expect │ │ │ │ ├── map_lookup.dart.weak.expect │ │ │ │ ├── map_lookup.dart.weak.modular.expect │ │ │ │ ├── map_lookup.dart.weak.outline.expect │ │ │ │ ├── map_lookup.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_errors.dart │ │ │ │ ├── map_pattern_errors.dart.strong.expect │ │ │ │ ├── map_pattern_errors.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_errors.dart.textual_outline.expect │ │ │ │ ├── map_pattern_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_errors.dart.weak.expect │ │ │ │ ├── map_pattern_errors.dart.weak.modular.expect │ │ │ │ ├── map_pattern_errors.dart.weak.outline.expect │ │ │ │ ├── map_pattern_errors.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_case.dart │ │ │ │ ├── map_pattern_inside_case.dart.strong.expect │ │ │ │ ├── map_pattern_inside_case.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_case.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_case.dart.weak.expect │ │ │ │ ├── map_pattern_inside_case.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_case.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_case.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart │ │ │ │ ├── map_pattern_inside_case_empty.dart.strong.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.weak.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_case_empty.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.strong.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.weak.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_case_with_type_arguments.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_cast.dart │ │ │ │ ├── map_pattern_inside_cast.dart.strong.expect │ │ │ │ ├── map_pattern_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_cast.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_cast.dart.weak.expect │ │ │ │ ├── map_pattern_inside_cast.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_cast.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_if_case.dart │ │ │ │ ├── map_pattern_inside_if_case.dart.strong.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.weak.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart │ │ │ │ ├── map_pattern_inside_null_assert.dart.strong.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.weak.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── map_pattern_inside_null_check.dart │ │ │ │ ├── map_pattern_inside_null_check.dart.strong.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.weak.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── map_pattern_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.strong.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.strong.transformed.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.textual_outline.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.textual_outline_modelled.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.weak.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.weak.modular.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.weak.outline.expect │ │ │ │ ├── matching_and_capturing_accesses_list_element_once.dart.weak.transformed.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart │ │ │ │ ├── mismatching_joint_pattern_variables.dart.strong.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.strong.transformed.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.textual_outline.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.weak.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.weak.modular.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.weak.outline.expect │ │ │ │ ├── mismatching_joint_pattern_variables.dart.weak.transformed.expect │ │ │ │ ├── multiple_targets.dart │ │ │ │ ├── multiple_targets.dart.strong.expect │ │ │ │ ├── multiple_targets.dart.strong.transformed.expect │ │ │ │ ├── multiple_targets.dart.textual_outline.expect │ │ │ │ ├── multiple_targets.dart.textual_outline_modelled.expect │ │ │ │ ├── multiple_targets.dart.weak.expect │ │ │ │ ├── multiple_targets.dart.weak.modular.expect │ │ │ │ ├── multiple_targets.dart.weak.outline.expect │ │ │ │ ├── multiple_targets.dart.weak.transformed.expect │ │ │ │ ├── negative_length.dart │ │ │ │ ├── negative_length.dart.strong.expect │ │ │ │ ├── negative_length.dart.strong.transformed.expect │ │ │ │ ├── negative_length.dart.textual_outline.expect │ │ │ │ ├── negative_length.dart.textual_outline_modelled.expect │ │ │ │ ├── negative_length.dart.weak.expect │ │ │ │ ├── negative_length.dart.weak.modular.expect │ │ │ │ ├── negative_length.dart.weak.outline.expect │ │ │ │ ├── negative_length.dart.weak.transformed.expect │ │ │ │ ├── never_pattern.dart │ │ │ │ ├── never_pattern.dart.strong.expect │ │ │ │ ├── never_pattern.dart.strong.transformed.expect │ │ │ │ ├── never_pattern.dart.textual_outline.expect │ │ │ │ ├── never_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── never_pattern.dart.weak.expect │ │ │ │ ├── never_pattern.dart.weak.modular.expect │ │ │ │ ├── never_pattern.dart.weak.outline.expect │ │ │ │ ├── never_pattern.dart.weak.transformed.expect │ │ │ │ ├── non_bool_guard.dart │ │ │ │ ├── non_bool_guard.dart.strong.expect │ │ │ │ ├── non_bool_guard.dart.strong.transformed.expect │ │ │ │ ├── non_bool_guard.dart.textual_outline.expect │ │ │ │ ├── non_bool_guard.dart.textual_outline_modelled.expect │ │ │ │ ├── non_bool_guard.dart.weak.expect │ │ │ │ ├── non_bool_guard.dart.weak.modular.expect │ │ │ │ ├── non_bool_guard.dart.weak.outline.expect │ │ │ │ ├── non_bool_guard.dart.weak.transformed.expect │ │ │ │ ├── non_constant_pattern_in_if.dart │ │ │ │ ├── non_constant_pattern_in_if.dart.strong.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.strong.transformed.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.textual_outline.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.textual_outline_modelled.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.weak.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.weak.modular.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.weak.outline.expect │ │ │ │ ├── non_constant_pattern_in_if.dart.weak.transformed.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart │ │ │ │ ├── non_constant_pattern_in_switch.dart.strong.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.strong.transformed.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.textual_outline.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.weak.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.weak.modular.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.weak.outline.expect │ │ │ │ ├── non_constant_pattern_in_switch.dart.weak.transformed.expect │ │ │ │ ├── non_interface_type_object_pattern.dart │ │ │ │ ├── non_interface_type_object_pattern.dart.strong.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.strong.transformed.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.textual_outline.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.weak.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.weak.modular.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.weak.outline.expect │ │ │ │ ├── non_interface_type_object_pattern.dart.weak.transformed.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.strong.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.strong.transformed.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.textual_outline.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.weak.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.weak.modular.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.weak.outline.expect │ │ │ │ ├── non_pattern_case_among_pattern_cases_in_switch.dart.weak.transformed.expect │ │ │ │ ├── non_type_object_pattern.dart │ │ │ │ ├── non_type_object_pattern.dart.strong.expect │ │ │ │ ├── non_type_object_pattern.dart.strong.transformed.expect │ │ │ │ ├── non_type_object_pattern.dart.textual_outline.expect │ │ │ │ ├── non_type_object_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── non_type_object_pattern.dart.weak.expect │ │ │ │ ├── non_type_object_pattern.dart.weak.modular.expect │ │ │ │ ├── non_type_object_pattern.dart.weak.outline.expect │ │ │ │ ├── non_type_object_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_case.dart │ │ │ │ ├── null_assert_inside_case.dart.strong.expect │ │ │ │ ├── null_assert_inside_case.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_case.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_case.dart.weak.expect │ │ │ │ ├── null_assert_inside_case.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_case.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_case.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.strong.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.weak.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_extractor_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.strong.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.weak.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_extractor_pattern_implicitly_named.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_if_case.dart │ │ │ │ ├── null_assert_inside_if_case.dart.strong.expect │ │ │ │ ├── null_assert_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_if_case.dart.weak.expect │ │ │ │ ├── null_assert_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart │ │ │ │ ├── null_assert_inside_list_pattern.dart.strong.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.weak.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_list_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.strong.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.weak.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_logical_and_lhs.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.strong.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.weak.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_logical_and_rhs.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.strong.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.weak.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_logical_or_lhs.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.strong.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.weak.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_logical_or_rhs.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart │ │ │ │ ├── null_assert_inside_map_pattern.dart.strong.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.weak.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_map_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.strong.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.weak.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_parenthesized_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.strong.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.weak.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_record_pattern_implicitly_named.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.strong.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.weak.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_record_pattern_named.dart.weak.transformed.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.strong.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.strong.transformed.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.textual_outline.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.textual_outline_modelled.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.weak.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.weak.modular.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.weak.outline.expect │ │ │ │ ├── null_assert_inside_record_pattern_unnamed.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_case.dart │ │ │ │ ├── null_check_inside_case.dart.strong.expect │ │ │ │ ├── null_check_inside_case.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_case.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_case.dart.weak.expect │ │ │ │ ├── null_check_inside_case.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_case.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_case.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart │ │ │ │ ├── null_check_inside_extractor_pattern.dart.strong.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.weak.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_extractor_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.strong.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.weak.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_extractor_pattern_implicitly_named.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_if_case.dart │ │ │ │ ├── null_check_inside_if_case.dart.strong.expect │ │ │ │ ├── null_check_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_if_case.dart.weak.expect │ │ │ │ ├── null_check_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_list_pattern.dart │ │ │ │ ├── null_check_inside_list_pattern.dart.strong.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.weak.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_list_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.strong.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.weak.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_logical_and_lhs.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.strong.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.weak.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_logical_and_rhs.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.strong.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.weak.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_logical_or_lhs.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.strong.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.weak.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_logical_or_rhs.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_map_pattern.dart │ │ │ │ ├── null_check_inside_map_pattern.dart.strong.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.weak.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_map_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.strong.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.weak.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_parenthesized_pattern.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.strong.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.weak.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_record_pattern_implicitly_named.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart │ │ │ │ ├── null_check_inside_record_pattern_named.dart.strong.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.weak.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_record_pattern_named.dart.weak.transformed.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.strong.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.strong.transformed.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.textual_outline.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.textual_outline_modelled.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.weak.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.weak.modular.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.weak.outline.expect │ │ │ │ ├── null_check_inside_record_pattern_unnamed.dart.weak.transformed.expect │ │ │ │ ├── null_literal_inside_case.dart │ │ │ │ ├── null_literal_inside_case.dart.strong.expect │ │ │ │ ├── null_literal_inside_case.dart.strong.transformed.expect │ │ │ │ ├── null_literal_inside_case.dart.textual_outline.expect │ │ │ │ ├── null_literal_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_inside_case.dart.weak.expect │ │ │ │ ├── null_literal_inside_case.dart.weak.modular.expect │ │ │ │ ├── null_literal_inside_case.dart.weak.outline.expect │ │ │ │ ├── null_literal_inside_case.dart.weak.transformed.expect │ │ │ │ ├── null_literal_inside_cast.dart │ │ │ │ ├── null_literal_inside_cast.dart.strong.expect │ │ │ │ ├── null_literal_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── null_literal_inside_cast.dart.textual_outline.expect │ │ │ │ ├── null_literal_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_inside_cast.dart.weak.expect │ │ │ │ ├── null_literal_inside_cast.dart.weak.modular.expect │ │ │ │ ├── null_literal_inside_cast.dart.weak.outline.expect │ │ │ │ ├── null_literal_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── null_literal_inside_if_case.dart │ │ │ │ ├── null_literal_inside_if_case.dart.strong.expect │ │ │ │ ├── null_literal_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── null_literal_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── null_literal_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_inside_if_case.dart.weak.expect │ │ │ │ ├── null_literal_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── null_literal_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── null_literal_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── null_literal_inside_null_assert.dart │ │ │ │ ├── null_literal_inside_null_assert.dart.strong.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.weak.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── null_literal_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── null_literal_inside_null_check.dart │ │ │ │ ├── null_literal_inside_null_check.dart.strong.expect │ │ │ │ ├── null_literal_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── null_literal_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── null_literal_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── null_literal_inside_null_check.dart.weak.expect │ │ │ │ ├── null_literal_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── null_literal_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── null_literal_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── object_pattern_errors.dart │ │ │ │ ├── object_pattern_errors.dart.strong.expect │ │ │ │ ├── object_pattern_errors.dart.strong.transformed.expect │ │ │ │ ├── object_pattern_errors.dart.textual_outline.expect │ │ │ │ ├── object_pattern_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── object_pattern_errors.dart.weak.expect │ │ │ │ ├── object_pattern_errors.dart.weak.modular.expect │ │ │ │ ├── object_pattern_errors.dart.weak.outline.expect │ │ │ │ ├── object_pattern_errors.dart.weak.transformed.expect │ │ │ │ ├── omitted_break.dart │ │ │ │ ├── omitted_break.dart.strong.expect │ │ │ │ ├── omitted_break.dart.strong.transformed.expect │ │ │ │ ├── omitted_break.dart.textual_outline.expect │ │ │ │ ├── omitted_break.dart.textual_outline_modelled.expect │ │ │ │ ├── omitted_break.dart.weak.expect │ │ │ │ ├── omitted_break.dart.weak.modular.expect │ │ │ │ ├── omitted_break.dart.weak.outline.expect │ │ │ │ ├── omitted_break.dart.weak.transformed.expect │ │ │ │ ├── opt_out.dart │ │ │ │ ├── opt_out.dart.strong.expect │ │ │ │ ├── opt_out.dart.strong.transformed.expect │ │ │ │ ├── opt_out.dart.textual_outline.expect │ │ │ │ ├── opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── opt_out.dart.weak.expect │ │ │ │ ├── opt_out.dart.weak.modular.expect │ │ │ │ ├── opt_out.dart.weak.outline.expect │ │ │ │ ├── opt_out.dart.weak.transformed.expect │ │ │ │ ├── or_pattern_errors.dart │ │ │ │ ├── or_pattern_errors.dart.strong.expect │ │ │ │ ├── or_pattern_errors.dart.strong.transformed.expect │ │ │ │ ├── or_pattern_errors.dart.textual_outline.expect │ │ │ │ ├── or_pattern_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── or_pattern_errors.dart.weak.expect │ │ │ │ ├── or_pattern_errors.dart.weak.modular.expect │ │ │ │ ├── or_pattern_errors.dart.weak.outline.expect │ │ │ │ ├── or_pattern_errors.dart.weak.transformed.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.strong.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.textual_outline.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.weak.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.weak.modular.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.weak.outline.expect │ │ │ │ ├── parenthesized_pattern_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.strong.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.weak.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── parenthesized_pattern_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.strong.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.weak.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── parenthesized_pattern_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.strong.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.strong.transformed.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.textual_outline.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.textual_outline_modelled.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.weak.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.weak.modular.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.weak.outline.expect │ │ │ │ ├── parser_recovery_in_pattern_arguments.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_disallowsLate.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_final_extractor.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_extractor.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_list.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_map.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_parenthesized.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_noMetadata_var_record.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_extractor.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_list.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_map.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_parenthesized.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_final_record.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_extractor.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_list.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_map.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_parenthesized.dart.weak.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.strong.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.strong.transformed.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.textual_outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.textual_outline_modelled.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.weak.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.weak.modular.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.weak.outline.expect │ │ │ │ ├── patternVariableDeclarationStatement_withMetadata_var_record.dart.weak.transformed.expect │ │ │ │ ├── pattern_assignment_declares.dart │ │ │ │ ├── pattern_assignment_declares.dart.strong.expect │ │ │ │ ├── pattern_assignment_declares.dart.strong.transformed.expect │ │ │ │ ├── pattern_assignment_declares.dart.textual_outline.expect │ │ │ │ ├── pattern_assignment_declares.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_assignment_declares.dart.weak.expect │ │ │ │ ├── pattern_assignment_declares.dart.weak.modular.expect │ │ │ │ ├── pattern_assignment_declares.dart.weak.outline.expect │ │ │ │ ├── pattern_assignment_declares.dart.weak.transformed.expect │ │ │ │ ├── pattern_assignment_final.dart │ │ │ │ ├── pattern_assignment_final.dart.strong.expect │ │ │ │ ├── pattern_assignment_final.dart.strong.transformed.expect │ │ │ │ ├── pattern_assignment_final.dart.textual_outline.expect │ │ │ │ ├── pattern_assignment_final.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.modular.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.outline.expect │ │ │ │ ├── pattern_assignment_final.dart.weak.transformed.expect │ │ │ │ ├── pattern_assignment_non_variable.dart │ │ │ │ ├── pattern_assignment_non_variable.dart.strong.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.strong.transformed.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.textual_outline.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.weak.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.weak.modular.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.weak.outline.expect │ │ │ │ ├── pattern_assignment_non_variable.dart.weak.transformed.expect │ │ │ │ ├── pattern_inForInitializer_element.dart │ │ │ │ ├── pattern_inForInitializer_element.dart.strong.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.strong.transformed.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.textual_outline.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.weak.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.weak.modular.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.weak.outline.expect │ │ │ │ ├── pattern_inForInitializer_element.dart.weak.transformed.expect │ │ │ │ ├── pattern_matching.dart │ │ │ │ ├── pattern_matching.dart.strong.expect │ │ │ │ ├── pattern_matching.dart.strong.transformed.expect │ │ │ │ ├── pattern_matching.dart.textual_outline.expect │ │ │ │ ├── pattern_matching.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_matching.dart.weak.expect │ │ │ │ ├── pattern_matching.dart.weak.modular.expect │ │ │ │ ├── pattern_matching.dart.weak.outline.expect │ │ │ │ ├── pattern_matching.dart.weak.transformed.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.strong.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.strong.transformed.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.textual_outline.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.weak.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.weak.modular.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.weak.outline.expect │ │ │ │ ├── pattern_schema_affects_inferred_expression_type.dart.weak.transformed.expect │ │ │ │ ├── pattern_types.dart │ │ │ │ ├── pattern_types.dart.strong.expect │ │ │ │ ├── pattern_types.dart.strong.transformed.expect │ │ │ │ ├── pattern_types.dart.textual_outline.expect │ │ │ │ ├── pattern_types.dart.textual_outline_modelled.expect │ │ │ │ ├── pattern_types.dart.weak.expect │ │ │ │ ├── pattern_types.dart.weak.modular.expect │ │ │ │ ├── pattern_types.dart.weak.outline.expect │ │ │ │ ├── pattern_types.dart.weak.transformed.expect │ │ │ │ ├── pattern_types_lib1.dart │ │ │ │ ├── pattern_types_lib2.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.strong.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.strong.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.textual_outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.textual_outline_modelled.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.weak.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.weak.modular.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.weak.outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args.dart.weak.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.strong.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.textual_outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.weak.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.weak.modular.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.weak.outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.strong.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.weak.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.strong.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.weak.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── prefixed_extractor_pattern_with_type_args_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── primitive_equality.dart │ │ │ │ ├── primitive_equality.dart.strong.expect │ │ │ │ ├── primitive_equality.dart.strong.transformed.expect │ │ │ │ ├── primitive_equality.dart.textual_outline.expect │ │ │ │ ├── primitive_equality.dart.textual_outline_modelled.expect │ │ │ │ ├── primitive_equality.dart.weak.expect │ │ │ │ ├── primitive_equality.dart.weak.modular.expect │ │ │ │ ├── primitive_equality.dart.weak.outline.expect │ │ │ │ ├── primitive_equality.dart.weak.transformed.expect │ │ │ │ ├── private_names_in_object_patterns.dart │ │ │ │ ├── private_names_in_object_patterns.dart.strong.expect │ │ │ │ ├── private_names_in_object_patterns.dart.strong.transformed.expect │ │ │ │ ├── private_names_in_object_patterns.dart.textual_outline.expect │ │ │ │ ├── private_names_in_object_patterns.dart.textual_outline_modelled.expect │ │ │ │ ├── private_names_in_object_patterns.dart.weak.expect │ │ │ │ ├── private_names_in_object_patterns.dart.weak.modular.expect │ │ │ │ ├── private_names_in_object_patterns.dart.weak.outline.expect │ │ │ │ ├── private_names_in_object_patterns.dart.weak.transformed.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart │ │ │ │ ├── promotions_in_switch_case_guards.dart.strong.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.strong.transformed.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.textual_outline.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.textual_outline_modelled.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.weak.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.weak.modular.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.weak.outline.expect │ │ │ │ ├── promotions_in_switch_case_guards.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_case.dart │ │ │ │ ├── record_pattern_inside_case.dart.strong.expect │ │ │ │ ├── record_pattern_inside_case.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_case.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_case.dart.weak.expect │ │ │ │ ├── record_pattern_inside_case.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_case.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_case.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart │ │ │ │ ├── record_pattern_inside_case_empty.dart.strong.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.weak.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_case_empty.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart │ │ │ │ ├── record_pattern_inside_case_singleton.dart.strong.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.weak.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_case_singleton.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_cast.dart │ │ │ │ ├── record_pattern_inside_cast.dart.strong.expect │ │ │ │ ├── record_pattern_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_cast.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_cast.dart.weak.expect │ │ │ │ ├── record_pattern_inside_cast.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_cast.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_if_case.dart │ │ │ │ ├── record_pattern_inside_if_case.dart.strong.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart │ │ │ │ ├── record_pattern_inside_null_assert.dart.strong.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.weak.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── record_pattern_inside_null_check.dart │ │ │ │ ├── record_pattern_inside_null_check.dart.strong.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.weak.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── record_pattern_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── records │ │ │ │ │ ├── destructuring.dart │ │ │ │ │ ├── destructuring.dart.strong.expect │ │ │ │ │ ├── destructuring.dart.strong.transformed.expect │ │ │ │ │ ├── destructuring.dart.textual_outline.expect │ │ │ │ │ ├── destructuring.dart.textual_outline_modelled.expect │ │ │ │ │ ├── destructuring.dart.weak.expect │ │ │ │ │ ├── destructuring.dart.weak.modular.expect │ │ │ │ │ ├── destructuring.dart.weak.outline.expect │ │ │ │ │ ├── destructuring.dart.weak.transformed.expect │ │ │ │ │ ├── folder.options │ │ │ │ │ ├── issue50963.dart │ │ │ │ │ ├── issue50963.dart.strong.expect │ │ │ │ │ ├── issue50963.dart.strong.transformed.expect │ │ │ │ │ ├── issue50963.dart.textual_outline.expect │ │ │ │ │ ├── issue50963.dart.textual_outline_modelled.expect │ │ │ │ │ ├── issue50963.dart.weak.expect │ │ │ │ │ ├── issue50963.dart.weak.modular.expect │ │ │ │ │ ├── issue50963.dart.weak.outline.expect │ │ │ │ │ ├── issue50963.dart.weak.transformed.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart │ │ │ │ │ ├── record_pattern_inside_if_case.dart.strong.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart.strong.transformed.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart.textual_outline.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.modular.expect │ │ │ │ │ ├── record_pattern_inside_if_case.dart.weak.outline.expect │ │ │ │ │ └── record_pattern_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── relational_assignable.dart │ │ │ │ ├── relational_assignable.dart.strong.expect │ │ │ │ ├── relational_assignable.dart.strong.transformed.expect │ │ │ │ ├── relational_assignable.dart.textual_outline.expect │ │ │ │ ├── relational_assignable.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_assignable.dart.weak.expect │ │ │ │ ├── relational_assignable.dart.weak.modular.expect │ │ │ │ ├── relational_assignable.dart.weak.outline.expect │ │ │ │ ├── relational_assignable.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_case_equal.dart │ │ │ │ ├── relational_inside_case_equal.dart.strong.expect │ │ │ │ ├── relational_inside_case_equal.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_case_equal.dart.textual_outline.expect │ │ │ │ ├── relational_inside_case_equal.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_case_equal.dart.weak.expect │ │ │ │ ├── relational_inside_case_equal.dart.weak.modular.expect │ │ │ │ ├── relational_inside_case_equal.dart.weak.outline.expect │ │ │ │ ├── relational_inside_case_equal.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_case_greater_than.dart │ │ │ │ ├── relational_inside_case_greater_than.dart.strong.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.textual_outline.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.weak.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.weak.modular.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.weak.outline.expect │ │ │ │ ├── relational_inside_case_greater_than.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.strong.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.textual_outline.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.weak.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.weak.modular.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.weak.outline.expect │ │ │ │ ├── relational_inside_case_greater_than_or_equal.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_case_less_than.dart │ │ │ │ ├── relational_inside_case_less_than.dart.strong.expect │ │ │ │ ├── relational_inside_case_less_than.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_case_less_than.dart.textual_outline.expect │ │ │ │ ├── relational_inside_case_less_than.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_case_less_than.dart.weak.expect │ │ │ │ ├── relational_inside_case_less_than.dart.weak.modular.expect │ │ │ │ ├── relational_inside_case_less_than.dart.weak.outline.expect │ │ │ │ ├── relational_inside_case_less_than.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.strong.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.textual_outline.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.weak.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.weak.modular.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.weak.outline.expect │ │ │ │ ├── relational_inside_case_less_than_or_equal.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_case_not_equal.dart │ │ │ │ ├── relational_inside_case_not_equal.dart.strong.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.textual_outline.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.weak.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.weak.modular.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.weak.outline.expect │ │ │ │ ├── relational_inside_case_not_equal.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart │ │ │ │ ├── relational_inside_extractor_pattern.dart.strong.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.textual_outline.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.weak.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.weak.modular.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.weak.outline.expect │ │ │ │ ├── relational_inside_extractor_pattern.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_if_case.dart │ │ │ │ ├── relational_inside_if_case.dart.strong.expect │ │ │ │ ├── relational_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── relational_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_if_case.dart.weak.expect │ │ │ │ ├── relational_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── relational_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── relational_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_list_pattern.dart │ │ │ │ ├── relational_inside_list_pattern.dart.strong.expect │ │ │ │ ├── relational_inside_list_pattern.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_list_pattern.dart.textual_outline.expect │ │ │ │ ├── relational_inside_list_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_list_pattern.dart.weak.expect │ │ │ │ ├── relational_inside_list_pattern.dart.weak.modular.expect │ │ │ │ ├── relational_inside_list_pattern.dart.weak.outline.expect │ │ │ │ ├── relational_inside_list_pattern.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart │ │ │ │ ├── relational_inside_logical_and_lhs.dart.strong.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.textual_outline.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.weak.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.weak.modular.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.weak.outline.expect │ │ │ │ ├── relational_inside_logical_and_lhs.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart │ │ │ │ ├── relational_inside_logical_and_rhs.dart.strong.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.textual_outline.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.weak.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.weak.modular.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.weak.outline.expect │ │ │ │ ├── relational_inside_logical_and_rhs.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart │ │ │ │ ├── relational_inside_logical_or_lhs.dart.strong.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.textual_outline.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.weak.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.weak.modular.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.weak.outline.expect │ │ │ │ ├── relational_inside_logical_or_lhs.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart │ │ │ │ ├── relational_inside_logical_or_rhs.dart.strong.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.textual_outline.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.weak.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.weak.modular.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.weak.outline.expect │ │ │ │ ├── relational_inside_logical_or_rhs.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_map_pattern.dart │ │ │ │ ├── relational_inside_map_pattern.dart.strong.expect │ │ │ │ ├── relational_inside_map_pattern.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_map_pattern.dart.textual_outline.expect │ │ │ │ ├── relational_inside_map_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_map_pattern.dart.weak.expect │ │ │ │ ├── relational_inside_map_pattern.dart.weak.modular.expect │ │ │ │ ├── relational_inside_map_pattern.dart.weak.outline.expect │ │ │ │ ├── relational_inside_map_pattern.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.strong.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.textual_outline.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.weak.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.weak.modular.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.weak.outline.expect │ │ │ │ ├── relational_inside_parenthesized_pattern.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart │ │ │ │ ├── relational_inside_record_pattern_named.dart.strong.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.textual_outline.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.weak.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.weak.modular.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.weak.outline.expect │ │ │ │ ├── relational_inside_record_pattern_named.dart.weak.transformed.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.strong.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.strong.transformed.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.textual_outline.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.textual_outline_modelled.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.weak.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.weak.modular.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.weak.outline.expect │ │ │ │ ├── relational_inside_record_pattern_unnamed.dart.weak.transformed.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.strong.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.strong.transformed.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.textual_outline.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.weak.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.weak.modular.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.weak.outline.expect │ │ │ │ ├── rest_pattern_in_map_pattern_errors.dart.weak.transformed.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart │ │ │ │ ├── rest_pattern_with_subpattern.dart.strong.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.strong.transformed.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.textual_outline.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.textual_outline_modelled.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.weak.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.weak.modular.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.weak.outline.expect │ │ │ │ ├── rest_pattern_with_subpattern.dart.weak.transformed.expect │ │ │ │ ├── same_name_captured_variables.dart │ │ │ │ ├── same_name_captured_variables.dart.strong.expect │ │ │ │ ├── same_name_captured_variables.dart.strong.transformed.expect │ │ │ │ ├── same_name_captured_variables.dart.textual_outline.expect │ │ │ │ ├── same_name_captured_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── same_name_captured_variables.dart.weak.expect │ │ │ │ ├── same_name_captured_variables.dart.weak.modular.expect │ │ │ │ ├── same_name_captured_variables.dart.weak.outline.expect │ │ │ │ ├── same_name_captured_variables.dart.weak.transformed.expect │ │ │ │ ├── shared_errors.dart │ │ │ │ ├── shared_errors.dart.strong.expect │ │ │ │ ├── shared_errors.dart.strong.transformed.expect │ │ │ │ ├── shared_errors.dart.textual_outline.expect │ │ │ │ ├── shared_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── shared_errors.dart.weak.expect │ │ │ │ ├── shared_errors.dart.weak.modular.expect │ │ │ │ ├── shared_errors.dart.weak.outline.expect │ │ │ │ ├── shared_errors.dart.weak.transformed.expect │ │ │ │ ├── side_effect.dart │ │ │ │ ├── side_effect.dart.strong.expect │ │ │ │ ├── side_effect.dart.strong.transformed.expect │ │ │ │ ├── side_effect.dart.textual_outline.expect │ │ │ │ ├── side_effect.dart.textual_outline_modelled.expect │ │ │ │ ├── side_effect.dart.weak.expect │ │ │ │ ├── side_effect.dart.weak.modular.expect │ │ │ │ ├── side_effect.dart.weak.outline.expect │ │ │ │ ├── side_effect.dart.weak.transformed.expect │ │ │ │ ├── simple_assignments.dart │ │ │ │ ├── simple_assignments.dart.strong.expect │ │ │ │ ├── simple_assignments.dart.strong.transformed.expect │ │ │ │ ├── simple_assignments.dart.textual_outline.expect │ │ │ │ ├── simple_assignments.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_assignments.dart.weak.expect │ │ │ │ ├── simple_assignments.dart.weak.modular.expect │ │ │ │ ├── simple_assignments.dart.weak.outline.expect │ │ │ │ ├── simple_assignments.dart.weak.transformed.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.strong.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.strong.transformed.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.textual_outline.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.weak.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.weak.modular.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.weak.outline.expect │ │ │ │ ├── simple_c_style_pattern_for_in_collections.dart.weak.transformed.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart │ │ │ │ ├── simple_guard_clause_runtime_test.dart.strong.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.strong.transformed.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.textual_outline.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.weak.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.weak.modular.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.weak.outline.expect │ │ │ │ ├── simple_guard_clause_runtime_test.dart.weak.transformed.expect │ │ │ │ ├── simple_if_case_in_lists.dart │ │ │ │ ├── simple_if_case_in_lists.dart.strong.expect │ │ │ │ ├── simple_if_case_in_lists.dart.strong.transformed.expect │ │ │ │ ├── simple_if_case_in_lists.dart.textual_outline.expect │ │ │ │ ├── simple_if_case_in_lists.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_if_case_in_lists.dart.weak.expect │ │ │ │ ├── simple_if_case_in_lists.dart.weak.modular.expect │ │ │ │ ├── simple_if_case_in_lists.dart.weak.outline.expect │ │ │ │ ├── simple_if_case_in_lists.dart.weak.transformed.expect │ │ │ │ ├── simple_if_case_map_entries.dart │ │ │ │ ├── simple_if_case_map_entries.dart.strong.expect │ │ │ │ ├── simple_if_case_map_entries.dart.strong.transformed.expect │ │ │ │ ├── simple_if_case_map_entries.dart.textual_outline.expect │ │ │ │ ├── simple_if_case_map_entries.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_if_case_map_entries.dart.weak.expect │ │ │ │ ├── simple_if_case_map_entries.dart.weak.modular.expect │ │ │ │ ├── simple_if_case_map_entries.dart.weak.outline.expect │ │ │ │ ├── simple_if_case_map_entries.dart.weak.transformed.expect │ │ │ │ ├── simple_pattern_for_in.dart │ │ │ │ ├── simple_pattern_for_in.dart.strong.expect │ │ │ │ ├── simple_pattern_for_in.dart.strong.transformed.expect │ │ │ │ ├── simple_pattern_for_in.dart.textual_outline.expect │ │ │ │ ├── simple_pattern_for_in.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_pattern_for_in.dart.weak.expect │ │ │ │ ├── simple_pattern_for_in.dart.weak.modular.expect │ │ │ │ ├── simple_pattern_for_in.dart.weak.outline.expect │ │ │ │ ├── simple_pattern_for_in.dart.weak.transformed.expect │ │ │ │ ├── simple_pattern_for_statements.dart │ │ │ │ ├── simple_pattern_for_statements.dart.strong.expect │ │ │ │ ├── simple_pattern_for_statements.dart.strong.transformed.expect │ │ │ │ ├── simple_pattern_for_statements.dart.textual_outline.expect │ │ │ │ ├── simple_pattern_for_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_pattern_for_statements.dart.weak.expect │ │ │ │ ├── simple_pattern_for_statements.dart.weak.modular.expect │ │ │ │ ├── simple_pattern_for_statements.dart.weak.outline.expect │ │ │ │ ├── simple_pattern_for_statements.dart.weak.transformed.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart │ │ │ │ ├── simple_pattern_variable_declaration.dart.strong.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.strong.transformed.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.textual_outline.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.weak.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.weak.modular.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.weak.outline.expect │ │ │ │ ├── simple_pattern_variable_declaration.dart.weak.transformed.expect │ │ │ │ ├── simple_rest_pattern.dart │ │ │ │ ├── simple_rest_pattern.dart.strong.expect │ │ │ │ ├── simple_rest_pattern.dart.strong.transformed.expect │ │ │ │ ├── simple_rest_pattern.dart.textual_outline.expect │ │ │ │ ├── simple_rest_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_rest_pattern.dart.weak.expect │ │ │ │ ├── simple_rest_pattern.dart.weak.modular.expect │ │ │ │ ├── simple_rest_pattern.dart.weak.outline.expect │ │ │ │ ├── simple_rest_pattern.dart.weak.transformed.expect │ │ │ │ ├── simple_runtime_test.dart │ │ │ │ ├── simple_runtime_test.dart.strong.expect │ │ │ │ ├── simple_runtime_test.dart.strong.transformed.expect │ │ │ │ ├── simple_runtime_test.dart.textual_outline.expect │ │ │ │ ├── simple_runtime_test.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_runtime_test.dart.weak.expect │ │ │ │ ├── simple_runtime_test.dart.weak.modular.expect │ │ │ │ ├── simple_runtime_test.dart.weak.outline.expect │ │ │ │ ├── simple_runtime_test.dart.weak.transformed.expect │ │ │ │ ├── simple_switch.dart │ │ │ │ ├── simple_switch.dart.strong.expect │ │ │ │ ├── simple_switch.dart.strong.transformed.expect │ │ │ │ ├── simple_switch.dart.textual_outline.expect │ │ │ │ ├── simple_switch.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_switch.dart.weak.expect │ │ │ │ ├── simple_switch.dart.weak.modular.expect │ │ │ │ ├── simple_switch.dart.weak.outline.expect │ │ │ │ ├── simple_switch.dart.weak.transformed.expect │ │ │ │ ├── simple_switch_expressions.dart │ │ │ │ ├── simple_switch_expressions.dart.strong.expect │ │ │ │ ├── simple_switch_expressions.dart.strong.transformed.expect │ │ │ │ ├── simple_switch_expressions.dart.textual_outline.expect │ │ │ │ ├── simple_switch_expressions.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_switch_expressions.dart.weak.expect │ │ │ │ ├── simple_switch_expressions.dart.weak.modular.expect │ │ │ │ ├── simple_switch_expressions.dart.weak.outline.expect │ │ │ │ ├── simple_switch_expressions.dart.weak.transformed.expect │ │ │ │ ├── simple_switch_with_guards_error.dart │ │ │ │ ├── simple_switch_with_guards_error.dart.strong.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.strong.transformed.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.textual_outline.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.weak.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.weak.modular.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.weak.outline.expect │ │ │ │ ├── simple_switch_with_guards_error.dart.weak.transformed.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart │ │ │ │ ├── simple_switch_with_guards_runtime.dart.strong.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.strong.transformed.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.textual_outline.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.weak.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.weak.modular.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.weak.outline.expect │ │ │ │ ├── simple_switch_with_guards_runtime.dart.weak.transformed.expect │ │ │ │ ├── string_literal_inside_case.dart │ │ │ │ ├── string_literal_inside_case.dart.strong.expect │ │ │ │ ├── string_literal_inside_case.dart.strong.transformed.expect │ │ │ │ ├── string_literal_inside_case.dart.textual_outline.expect │ │ │ │ ├── string_literal_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── string_literal_inside_case.dart.weak.expect │ │ │ │ ├── string_literal_inside_case.dart.weak.modular.expect │ │ │ │ ├── string_literal_inside_case.dart.weak.outline.expect │ │ │ │ ├── string_literal_inside_case.dart.weak.transformed.expect │ │ │ │ ├── string_literal_inside_cast.dart │ │ │ │ ├── string_literal_inside_cast.dart.strong.expect │ │ │ │ ├── string_literal_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── string_literal_inside_cast.dart.textual_outline.expect │ │ │ │ ├── string_literal_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── string_literal_inside_cast.dart.weak.expect │ │ │ │ ├── string_literal_inside_cast.dart.weak.modular.expect │ │ │ │ ├── string_literal_inside_cast.dart.weak.outline.expect │ │ │ │ ├── string_literal_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── string_literal_inside_if_case.dart │ │ │ │ ├── string_literal_inside_if_case.dart.strong.expect │ │ │ │ ├── string_literal_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── string_literal_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── string_literal_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── string_literal_inside_if_case.dart.weak.expect │ │ │ │ ├── string_literal_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── string_literal_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── string_literal_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── string_literal_inside_null_assert.dart │ │ │ │ ├── string_literal_inside_null_assert.dart.strong.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.weak.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── string_literal_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── string_literal_inside_null_check.dart │ │ │ │ ├── string_literal_inside_null_check.dart.strong.expect │ │ │ │ ├── string_literal_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── string_literal_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── string_literal_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── string_literal_inside_null_check.dart.weak.expect │ │ │ │ ├── string_literal_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── string_literal_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── string_literal_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── switchExpression_empty.dart │ │ │ │ ├── switchExpression_empty.dart.strong.expect │ │ │ │ ├── switchExpression_empty.dart.strong.transformed.expect │ │ │ │ ├── switchExpression_empty.dart.textual_outline.expect │ │ │ │ ├── switchExpression_empty.dart.textual_outline_modelled.expect │ │ │ │ ├── switchExpression_empty.dart.weak.expect │ │ │ │ ├── switchExpression_empty.dart.weak.modular.expect │ │ │ │ ├── switchExpression_empty.dart.weak.outline.expect │ │ │ │ ├── switchExpression_empty.dart.weak.transformed.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart │ │ │ │ ├── switchExpression_onePattern_guarded.dart.strong.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.strong.transformed.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.textual_outline.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.textual_outline_modelled.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.weak.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.weak.modular.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.weak.outline.expect │ │ │ │ ├── switchExpression_onePattern_guarded.dart.weak.transformed.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.strong.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.strong.transformed.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.textual_outline.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.textual_outline_modelled.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.weak.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.weak.modular.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.weak.outline.expect │ │ │ │ ├── switchExpression_onePattern_noTrailingComma.dart.weak.transformed.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.strong.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.strong.transformed.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.textual_outline.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.textual_outline_modelled.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.weak.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.weak.modular.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.weak.outline.expect │ │ │ │ ├── switchExpression_onePattern_trailingComma.dart.weak.transformed.expect │ │ │ │ ├── switchExpression_twoPatterns.dart │ │ │ │ ├── switchExpression_twoPatterns.dart.strong.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.strong.transformed.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.textual_outline.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.textual_outline_modelled.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.weak.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.weak.modular.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.weak.outline.expect │ │ │ │ ├── switchExpression_twoPatterns.dart.weak.transformed.expect │ │ │ │ ├── switch_encoding.dart │ │ │ │ ├── switch_encoding.dart.strong.expect │ │ │ │ ├── switch_encoding.dart.strong.transformed.expect │ │ │ │ ├── switch_encoding.dart.textual_outline.expect │ │ │ │ ├── switch_encoding.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_encoding.dart.weak.expect │ │ │ │ ├── switch_encoding.dart.weak.modular.expect │ │ │ │ ├── switch_encoding.dart.weak.outline.expect │ │ │ │ ├── switch_encoding.dart.weak.transformed.expect │ │ │ │ ├── switch_expressions_variable_capture.dart │ │ │ │ ├── switch_expressions_variable_capture.dart.strong.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.strong.transformed.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.textual_outline.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.weak.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.weak.modular.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.weak.outline.expect │ │ │ │ ├── switch_expressions_variable_capture.dart.weak.transformed.expect │ │ │ │ ├── switch_variables.dart │ │ │ │ ├── switch_variables.dart.strong.expect │ │ │ │ ├── switch_variables.dart.strong.transformed.expect │ │ │ │ ├── switch_variables.dart.textual_outline.expect │ │ │ │ ├── switch_variables.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_variables.dart.weak.expect │ │ │ │ ├── switch_variables.dart.weak.modular.expect │ │ │ │ ├── switch_variables.dart.weak.outline.expect │ │ │ │ ├── switch_variables.dart.weak.transformed.expect │ │ │ │ ├── switch_with_continue.dart │ │ │ │ ├── switch_with_continue.dart.strong.expect │ │ │ │ ├── switch_with_continue.dart.strong.transformed.expect │ │ │ │ ├── switch_with_continue.dart.textual_outline.expect │ │ │ │ ├── switch_with_continue.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_with_continue.dart.weak.expect │ │ │ │ ├── switch_with_continue.dart.weak.modular.expect │ │ │ │ ├── switch_with_continue.dart.weak.outline.expect │ │ │ │ ├── switch_with_continue.dart.weak.transformed.expect │ │ │ │ ├── two_switch_statements.dart │ │ │ │ ├── two_switch_statements.dart.strong.expect │ │ │ │ ├── two_switch_statements.dart.strong.transformed.expect │ │ │ │ ├── two_switch_statements.dart.textual_outline.expect │ │ │ │ ├── two_switch_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── two_switch_statements.dart.weak.expect │ │ │ │ ├── two_switch_statements.dart.weak.modular.expect │ │ │ │ ├── two_switch_statements.dart.weak.outline.expect │ │ │ │ ├── two_switch_statements.dart.weak.transformed.expect │ │ │ │ ├── typed_final_variable_inside_case.dart │ │ │ │ ├── typed_final_variable_inside_case.dart.strong.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.strong.transformed.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.textual_outline.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.weak.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.weak.modular.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.weak.outline.expect │ │ │ │ ├── typed_final_variable_inside_case.dart.weak.transformed.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart │ │ │ │ ├── typed_final_variable_inside_cast.dart.strong.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.textual_outline.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.weak.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.weak.modular.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.weak.outline.expect │ │ │ │ ├── typed_final_variable_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart │ │ │ │ ├── typed_final_variable_inside_if_case.dart.strong.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.weak.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── typed_final_variable_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.strong.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.weak.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── typed_final_variable_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart │ │ │ │ ├── typed_final_variable_inside_null_check.dart.strong.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.weak.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── typed_final_variable_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── typed_variable_inside_case.dart │ │ │ │ ├── typed_variable_inside_case.dart.strong.expect │ │ │ │ ├── typed_variable_inside_case.dart.strong.transformed.expect │ │ │ │ ├── typed_variable_inside_case.dart.textual_outline.expect │ │ │ │ ├── typed_variable_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_variable_inside_case.dart.weak.expect │ │ │ │ ├── typed_variable_inside_case.dart.weak.modular.expect │ │ │ │ ├── typed_variable_inside_case.dart.weak.outline.expect │ │ │ │ ├── typed_variable_inside_case.dart.weak.transformed.expect │ │ │ │ ├── typed_variable_inside_cast.dart │ │ │ │ ├── typed_variable_inside_cast.dart.strong.expect │ │ │ │ ├── typed_variable_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── typed_variable_inside_cast.dart.textual_outline.expect │ │ │ │ ├── typed_variable_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_variable_inside_cast.dart.weak.expect │ │ │ │ ├── typed_variable_inside_cast.dart.weak.modular.expect │ │ │ │ ├── typed_variable_inside_cast.dart.weak.outline.expect │ │ │ │ ├── typed_variable_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── typed_variable_inside_if_case.dart │ │ │ │ ├── typed_variable_inside_if_case.dart.strong.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.weak.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── typed_variable_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart │ │ │ │ ├── typed_variable_inside_null_assert.dart.strong.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.weak.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── typed_variable_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── typed_variable_inside_null_check.dart │ │ │ │ ├── typed_variable_inside_null_check.dart.strong.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.weak.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── typed_variable_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── typedef_in_object_pattern.dart │ │ │ │ ├── typedef_in_object_pattern.dart.strong.expect │ │ │ │ ├── typedef_in_object_pattern.dart.strong.transformed.expect │ │ │ │ ├── typedef_in_object_pattern.dart.textual_outline.expect │ │ │ │ ├── typedef_in_object_pattern.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef_in_object_pattern.dart.weak.expect │ │ │ │ ├── typedef_in_object_pattern.dart.weak.modular.expect │ │ │ │ ├── typedef_in_object_pattern.dart.weak.outline.expect │ │ │ │ ├── typedef_in_object_pattern.dart.weak.transformed.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.strong.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.strong.transformed.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.textual_outline.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.textual_outline_modelled.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.weak.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.weak.modular.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.weak.outline.expect │ │ │ │ ├── unused_joint_variable_is_not_joint.dart.weak.transformed.expect │ │ │ │ ├── user_defined_equals.dart │ │ │ │ ├── user_defined_equals.dart.strong.expect │ │ │ │ ├── user_defined_equals.dart.strong.transformed.expect │ │ │ │ ├── user_defined_equals.dart.textual_outline.expect │ │ │ │ ├── user_defined_equals.dart.textual_outline_modelled.expect │ │ │ │ ├── user_defined_equals.dart.weak.expect │ │ │ │ ├── user_defined_equals.dart.weak.modular.expect │ │ │ │ ├── user_defined_equals.dart.weak.outline.expect │ │ │ │ ├── user_defined_equals.dart.weak.transformed.expect │ │ │ │ ├── var_variable_inside_case.dart │ │ │ │ ├── var_variable_inside_case.dart.strong.expect │ │ │ │ ├── var_variable_inside_case.dart.strong.transformed.expect │ │ │ │ ├── var_variable_inside_case.dart.textual_outline.expect │ │ │ │ ├── var_variable_inside_case.dart.textual_outline_modelled.expect │ │ │ │ ├── var_variable_inside_case.dart.weak.expect │ │ │ │ ├── var_variable_inside_case.dart.weak.modular.expect │ │ │ │ ├── var_variable_inside_case.dart.weak.outline.expect │ │ │ │ ├── var_variable_inside_case.dart.weak.transformed.expect │ │ │ │ ├── var_variable_inside_cast.dart │ │ │ │ ├── var_variable_inside_cast.dart.strong.expect │ │ │ │ ├── var_variable_inside_cast.dart.strong.transformed.expect │ │ │ │ ├── var_variable_inside_cast.dart.textual_outline.expect │ │ │ │ ├── var_variable_inside_cast.dart.textual_outline_modelled.expect │ │ │ │ ├── var_variable_inside_cast.dart.weak.expect │ │ │ │ ├── var_variable_inside_cast.dart.weak.modular.expect │ │ │ │ ├── var_variable_inside_cast.dart.weak.outline.expect │ │ │ │ ├── var_variable_inside_cast.dart.weak.transformed.expect │ │ │ │ ├── var_variable_inside_if_case.dart │ │ │ │ ├── var_variable_inside_if_case.dart.strong.expect │ │ │ │ ├── var_variable_inside_if_case.dart.strong.transformed.expect │ │ │ │ ├── var_variable_inside_if_case.dart.textual_outline.expect │ │ │ │ ├── var_variable_inside_if_case.dart.textual_outline_modelled.expect │ │ │ │ ├── var_variable_inside_if_case.dart.weak.expect │ │ │ │ ├── var_variable_inside_if_case.dart.weak.modular.expect │ │ │ │ ├── var_variable_inside_if_case.dart.weak.outline.expect │ │ │ │ ├── var_variable_inside_if_case.dart.weak.transformed.expect │ │ │ │ ├── var_variable_inside_null_assert.dart │ │ │ │ ├── var_variable_inside_null_assert.dart.strong.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.strong.transformed.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.textual_outline.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.textual_outline_modelled.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.weak.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.weak.modular.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.weak.outline.expect │ │ │ │ ├── var_variable_inside_null_assert.dart.weak.transformed.expect │ │ │ │ ├── var_variable_inside_null_check.dart │ │ │ │ ├── var_variable_inside_null_check.dart.strong.expect │ │ │ │ ├── var_variable_inside_null_check.dart.strong.transformed.expect │ │ │ │ ├── var_variable_inside_null_check.dart.textual_outline.expect │ │ │ │ ├── var_variable_inside_null_check.dart.textual_outline_modelled.expect │ │ │ │ ├── var_variable_inside_null_check.dart.weak.expect │ │ │ │ ├── var_variable_inside_null_check.dart.weak.modular.expect │ │ │ │ ├── var_variable_inside_null_check.dart.weak.outline.expect │ │ │ │ ├── var_variable_inside_null_check.dart.weak.transformed.expect │ │ │ │ ├── variable_names.dart │ │ │ │ ├── variable_names.dart.strong.expect │ │ │ │ ├── variable_names.dart.strong.transformed.expect │ │ │ │ ├── variable_names.dart.textual_outline.expect │ │ │ │ ├── variable_names.dart.textual_outline_modelled.expect │ │ │ │ ├── variable_names.dart.weak.expect │ │ │ │ ├── variable_names.dart.weak.modular.expect │ │ │ │ ├── variable_names.dart.weak.outline.expect │ │ │ │ ├── variable_names.dart.weak.transformed.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.strong.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.strong.transformed.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.textual_outline.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.weak.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.weak.modular.expect │ │ │ │ ├── variable_scoping_in_pattern_for_statements.dart.weak.outline.expect │ │ │ │ └── variable_scoping_in_pattern_for_statements.dart.weak.transformed.expect │ │ │ ├── rasta │ │ │ │ ├── README.md │ │ │ │ ├── abstract_constructor.dart │ │ │ │ ├── abstract_constructor.dart.strong.expect │ │ │ │ ├── abstract_constructor.dart.strong.transformed.expect │ │ │ │ ├── abstract_constructor.dart.textual_outline.expect │ │ │ │ ├── abstract_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_constructor.dart.weak.expect │ │ │ │ ├── abstract_constructor.dart.weak.modular.expect │ │ │ │ ├── abstract_constructor.dart.weak.outline.expect │ │ │ │ ├── abstract_constructor.dart.weak.transformed.expect │ │ │ │ ├── bad_constructor_redirection.dart │ │ │ │ ├── bad_constructor_redirection.dart.strong.expect │ │ │ │ ├── bad_constructor_redirection.dart.strong.transformed.expect │ │ │ │ ├── bad_constructor_redirection.dart.textual_outline.expect │ │ │ │ ├── bad_constructor_redirection.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_constructor_redirection.dart.weak.expect │ │ │ │ ├── bad_constructor_redirection.dart.weak.modular.expect │ │ │ │ ├── bad_constructor_redirection.dart.weak.outline.expect │ │ │ │ ├── bad_constructor_redirection.dart.weak.transformed.expect │ │ │ │ ├── bad_continue.dart │ │ │ │ ├── bad_continue.dart.strong.expect │ │ │ │ ├── bad_continue.dart.strong.transformed.expect │ │ │ │ ├── bad_continue.dart.textual_outline.expect │ │ │ │ ├── bad_continue.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_continue.dart.weak.expect │ │ │ │ ├── bad_continue.dart.weak.modular.expect │ │ │ │ ├── bad_continue.dart.weak.outline.expect │ │ │ │ ├── bad_continue.dart.weak.transformed.expect │ │ │ │ ├── bad_default_constructor.dart │ │ │ │ ├── bad_default_constructor.dart.strong.expect │ │ │ │ ├── bad_default_constructor.dart.strong.transformed.expect │ │ │ │ ├── bad_default_constructor.dart.textual_outline.expect │ │ │ │ ├── bad_default_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_default_constructor.dart.weak.expect │ │ │ │ ├── bad_default_constructor.dart.weak.modular.expect │ │ │ │ ├── bad_default_constructor.dart.weak.outline.expect │ │ │ │ ├── bad_default_constructor.dart.weak.transformed.expect │ │ │ │ ├── bad_explicit_super_constructor.dart │ │ │ │ ├── bad_explicit_super_constructor.dart.strong.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.strong.transformed.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.textual_outline.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.weak.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.weak.modular.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.weak.outline.expect │ │ │ │ ├── bad_explicit_super_constructor.dart.weak.transformed.expect │ │ │ │ ├── bad_implicit_super_constructor.dart │ │ │ │ ├── bad_implicit_super_constructor.dart.strong.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.strong.transformed.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.textual_outline.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.weak.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.weak.modular.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.weak.outline.expect │ │ │ │ ├── bad_implicit_super_constructor.dart.weak.transformed.expect │ │ │ │ ├── bad_interpolation.dart │ │ │ │ ├── bad_interpolation.dart.strong.expect │ │ │ │ ├── bad_interpolation.dart.strong.transformed.expect │ │ │ │ ├── bad_interpolation.dart.weak.expect │ │ │ │ ├── bad_interpolation.dart.weak.modular.expect │ │ │ │ ├── bad_interpolation.dart.weak.outline.expect │ │ │ │ ├── bad_interpolation.dart.weak.transformed.expect │ │ │ │ ├── bad_redirection.dart │ │ │ │ ├── bad_redirection.dart.strong.expect │ │ │ │ ├── bad_redirection.dart.strong.transformed.expect │ │ │ │ ├── bad_redirection.dart.textual_outline.expect │ │ │ │ ├── bad_redirection.dart.weak.expect │ │ │ │ ├── bad_redirection.dart.weak.modular.expect │ │ │ │ ├── bad_redirection.dart.weak.outline.expect │ │ │ │ ├── bad_redirection.dart.weak.transformed.expect │ │ │ │ ├── bad_setter_initializer.dart │ │ │ │ ├── bad_setter_initializer.dart.strong.expect │ │ │ │ ├── bad_setter_initializer.dart.strong.transformed.expect │ │ │ │ ├── bad_setter_initializer.dart.textual_outline.expect │ │ │ │ ├── bad_setter_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_setter_initializer.dart.weak.expect │ │ │ │ ├── bad_setter_initializer.dart.weak.modular.expect │ │ │ │ ├── bad_setter_initializer.dart.weak.outline.expect │ │ │ │ ├── bad_setter_initializer.dart.weak.transformed.expect │ │ │ │ ├── bad_unicode.dart │ │ │ │ ├── bad_unicode.dart.strong.expect │ │ │ │ ├── bad_unicode.dart.strong.transformed.expect │ │ │ │ ├── bad_unicode.dart.textual_outline.expect │ │ │ │ ├── bad_unicode.dart.textual_outline_modelled.expect │ │ │ │ ├── bad_unicode.dart.weak.expect │ │ │ │ ├── bad_unicode.dart.weak.modular.expect │ │ │ │ ├── bad_unicode.dart.weak.outline.expect │ │ │ │ ├── bad_unicode.dart.weak.transformed.expect │ │ │ │ ├── breaking_bad.dart │ │ │ │ ├── breaking_bad.dart.strong.expect │ │ │ │ ├── breaking_bad.dart.strong.transformed.expect │ │ │ │ ├── breaking_bad.dart.textual_outline.expect │ │ │ │ ├── breaking_bad.dart.textual_outline_modelled.expect │ │ │ │ ├── breaking_bad.dart.weak.expect │ │ │ │ ├── breaking_bad.dart.weak.modular.expect │ │ │ │ ├── breaking_bad.dart.weak.outline.expect │ │ │ │ ├── breaking_bad.dart.weak.transformed.expect │ │ │ │ ├── cascades.dart │ │ │ │ ├── cascades.dart.strong.expect │ │ │ │ ├── cascades.dart.strong.transformed.expect │ │ │ │ ├── cascades.dart.textual_outline.expect │ │ │ │ ├── cascades.dart.textual_outline_modelled.expect │ │ │ │ ├── cascades.dart.weak.expect │ │ │ │ ├── cascades.dart.weak.modular.expect │ │ │ │ ├── cascades.dart.weak.outline.expect │ │ │ │ ├── cascades.dart.weak.transformed.expect │ │ │ │ ├── class_hierarchy.dart │ │ │ │ ├── class_hierarchy.dart.strong.expect │ │ │ │ ├── class_hierarchy.dart.strong.transformed.expect │ │ │ │ ├── class_hierarchy.dart.textual_outline.expect │ │ │ │ ├── class_hierarchy.dart.textual_outline_modelled.expect │ │ │ │ ├── class_hierarchy.dart.weak.expect │ │ │ │ ├── class_hierarchy.dart.weak.modular.expect │ │ │ │ ├── class_hierarchy.dart.weak.outline.expect │ │ │ │ ├── class_hierarchy.dart.weak.transformed.expect │ │ │ │ ├── class_member.dart │ │ │ │ ├── class_member.dart.strong.expect │ │ │ │ ├── class_member.dart.strong.transformed.expect │ │ │ │ ├── class_member.dart.textual_outline.expect │ │ │ │ ├── class_member.dart.textual_outline_modelled.expect │ │ │ │ ├── class_member.dart.weak.expect │ │ │ │ ├── class_member.dart.weak.modular.expect │ │ │ │ ├── class_member.dart.weak.outline.expect │ │ │ │ ├── class_member.dart.weak.transformed.expect │ │ │ │ ├── constant_get_and_invoke.dart │ │ │ │ ├── constant_get_and_invoke.dart.strong.expect │ │ │ │ ├── constant_get_and_invoke.dart.strong.transformed.expect │ │ │ │ ├── constant_get_and_invoke.dart.textual_outline.expect │ │ │ │ ├── constant_get_and_invoke.dart.textual_outline_modelled.expect │ │ │ │ ├── constant_get_and_invoke.dart.weak.expect │ │ │ │ ├── constant_get_and_invoke.dart.weak.modular.expect │ │ │ │ ├── constant_get_and_invoke.dart.weak.outline.expect │ │ │ │ ├── constant_get_and_invoke.dart.weak.transformed.expect │ │ │ │ ├── deferred_lib.dart │ │ │ │ ├── deferred_load.dart │ │ │ │ ├── deferred_load.dart.strong.expect │ │ │ │ ├── deferred_load.dart.strong.transformed.expect │ │ │ │ ├── deferred_load.dart.textual_outline.expect │ │ │ │ ├── deferred_load.dart.textual_outline_modelled.expect │ │ │ │ ├── deferred_load.dart.weak.expect │ │ │ │ ├── deferred_load.dart.weak.modular.expect │ │ │ │ ├── deferred_load.dart.weak.outline.expect │ │ │ │ ├── deferred_load.dart.weak.transformed.expect │ │ │ │ ├── duplicated_mixin.dart │ │ │ │ ├── duplicated_mixin.dart.strong.expect │ │ │ │ ├── duplicated_mixin.dart.strong.transformed.expect │ │ │ │ ├── duplicated_mixin.dart.textual_outline.expect │ │ │ │ ├── duplicated_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicated_mixin.dart.weak.expect │ │ │ │ ├── duplicated_mixin.dart.weak.modular.expect │ │ │ │ ├── duplicated_mixin.dart.weak.outline.expect │ │ │ │ ├── duplicated_mixin.dart.weak.transformed.expect │ │ │ │ ├── enum.dart │ │ │ │ ├── enum.dart.strong.expect │ │ │ │ ├── enum.dart.strong.transformed.expect │ │ │ │ ├── enum.dart.textual_outline.expect │ │ │ │ ├── enum.dart.textual_outline_modelled.expect │ │ │ │ ├── enum.dart.weak.expect │ │ │ │ ├── enum.dart.weak.modular.expect │ │ │ │ ├── enum.dart.weak.outline.expect │ │ │ │ ├── enum.dart.weak.transformed.expect │ │ │ │ ├── export.dart │ │ │ │ ├── export.dart.strong.expect │ │ │ │ ├── export.dart.strong.transformed.expect │ │ │ │ ├── export.dart.textual_outline.expect │ │ │ │ ├── export.dart.textual_outline_modelled.expect │ │ │ │ ├── export.dart.weak.expect │ │ │ │ ├── export.dart.weak.modular.expect │ │ │ │ ├── export.dart.weak.outline.expect │ │ │ │ ├── export.dart.weak.transformed.expect │ │ │ │ ├── external_factory_redirection.dart │ │ │ │ ├── external_factory_redirection.dart.strong.expect │ │ │ │ ├── external_factory_redirection.dart.strong.transformed.expect │ │ │ │ ├── external_factory_redirection.dart.textual_outline.expect │ │ │ │ ├── external_factory_redirection.dart.textual_outline_modelled.expect │ │ │ │ ├── external_factory_redirection.dart.weak.expect │ │ │ │ ├── external_factory_redirection.dart.weak.modular.expect │ │ │ │ ├── external_factory_redirection.dart.weak.outline.expect │ │ │ │ ├── external_factory_redirection.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── foo.dart │ │ │ │ ├── foo.dart.strong.expect │ │ │ │ ├── foo.dart.strong.transformed.expect │ │ │ │ ├── foo.dart.textual_outline.expect │ │ │ │ ├── foo.dart.textual_outline_modelled.expect │ │ │ │ ├── foo.dart.weak.expect │ │ │ │ ├── foo.dart.weak.modular.expect │ │ │ │ ├── foo.dart.weak.outline.expect │ │ │ │ ├── foo.dart.weak.transformed.expect │ │ │ │ ├── for_loop.dart │ │ │ │ ├── for_loop.dart.strong.expect │ │ │ │ ├── for_loop.dart.strong.transformed.expect │ │ │ │ ├── for_loop.dart.textual_outline.expect │ │ │ │ ├── for_loop.dart.textual_outline_modelled.expect │ │ │ │ ├── for_loop.dart.weak.expect │ │ │ │ ├── for_loop.dart.weak.modular.expect │ │ │ │ ├── for_loop.dart.weak.outline.expect │ │ │ │ ├── for_loop.dart.weak.transformed.expect │ │ │ │ ├── generic_factory.dart │ │ │ │ ├── generic_factory.dart.strong.expect │ │ │ │ ├── generic_factory.dart.strong.transformed.expect │ │ │ │ ├── generic_factory.dart.textual_outline.expect │ │ │ │ ├── generic_factory.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_factory.dart.weak.expect │ │ │ │ ├── generic_factory.dart.weak.modular.expect │ │ │ │ ├── generic_factory.dart.weak.outline.expect │ │ │ │ ├── generic_factory.dart.weak.transformed.expect │ │ │ │ ├── hello.dart │ │ │ │ ├── hello.dart.strong.expect │ │ │ │ ├── hello.dart.strong.transformed.expect │ │ │ │ ├── hello.dart.textual_outline.expect │ │ │ │ ├── hello.dart.textual_outline_modelled.expect │ │ │ │ ├── hello.dart.weak.expect │ │ │ │ ├── hello.dart.weak.modular.expect │ │ │ │ ├── hello.dart.weak.outline.expect │ │ │ │ ├── hello.dart.weak.transformed.expect │ │ │ │ ├── import_export.dart │ │ │ │ ├── import_export.dart.strong.expect │ │ │ │ ├── import_export.dart.strong.transformed.expect │ │ │ │ ├── import_export.dart.textual_outline.expect │ │ │ │ ├── import_export.dart.textual_outline_modelled.expect │ │ │ │ ├── import_export.dart.weak.expect │ │ │ │ ├── import_export.dart.weak.modular.expect │ │ │ │ ├── import_export.dart.weak.outline.expect │ │ │ │ ├── import_export.dart.weak.transformed.expect │ │ │ │ ├── issue_000001.dart │ │ │ │ ├── issue_000001.dart.strong.expect │ │ │ │ ├── issue_000001.dart.strong.transformed.expect │ │ │ │ ├── issue_000001.dart.textual_outline.expect │ │ │ │ ├── issue_000001.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000001.dart.weak.expect │ │ │ │ ├── issue_000001.dart.weak.modular.expect │ │ │ │ ├── issue_000001.dart.weak.outline.expect │ │ │ │ ├── issue_000001.dart.weak.transformed.expect │ │ │ │ ├── issue_000002.dart │ │ │ │ ├── issue_000002.dart.strong.expect │ │ │ │ ├── issue_000002.dart.strong.transformed.expect │ │ │ │ ├── issue_000002.dart.textual_outline.expect │ │ │ │ ├── issue_000002.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000002.dart.weak.expect │ │ │ │ ├── issue_000002.dart.weak.modular.expect │ │ │ │ ├── issue_000002.dart.weak.outline.expect │ │ │ │ ├── issue_000002.dart.weak.transformed.expect │ │ │ │ ├── issue_000004.dart │ │ │ │ ├── issue_000004.dart.strong.expect │ │ │ │ ├── issue_000004.dart.strong.transformed.expect │ │ │ │ ├── issue_000004.dart.textual_outline.expect │ │ │ │ ├── issue_000004.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000004.dart.weak.expect │ │ │ │ ├── issue_000004.dart.weak.modular.expect │ │ │ │ ├── issue_000004.dart.weak.outline.expect │ │ │ │ ├── issue_000004.dart.weak.transformed.expect │ │ │ │ ├── issue_000006.dart │ │ │ │ ├── issue_000006.dart.strong.expect │ │ │ │ ├── issue_000006.dart.strong.transformed.expect │ │ │ │ ├── issue_000006.dart.textual_outline.expect │ │ │ │ ├── issue_000006.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000006.dart.weak.expect │ │ │ │ ├── issue_000006.dart.weak.modular.expect │ │ │ │ ├── issue_000006.dart.weak.outline.expect │ │ │ │ ├── issue_000006.dart.weak.transformed.expect │ │ │ │ ├── issue_000007.dart │ │ │ │ ├── issue_000007.dart.strong.expect │ │ │ │ ├── issue_000007.dart.strong.transformed.expect │ │ │ │ ├── issue_000007.dart.textual_outline.expect │ │ │ │ ├── issue_000007.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000007.dart.weak.expect │ │ │ │ ├── issue_000007.dart.weak.modular.expect │ │ │ │ ├── issue_000007.dart.weak.outline.expect │ │ │ │ ├── issue_000007.dart.weak.transformed.expect │ │ │ │ ├── issue_000008.dart │ │ │ │ ├── issue_000008.dart.strong.expect │ │ │ │ ├── issue_000008.dart.strong.transformed.expect │ │ │ │ ├── issue_000008.dart.textual_outline.expect │ │ │ │ ├── issue_000008.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000008.dart.weak.expect │ │ │ │ ├── issue_000008.dart.weak.modular.expect │ │ │ │ ├── issue_000008.dart.weak.outline.expect │ │ │ │ ├── issue_000008.dart.weak.transformed.expect │ │ │ │ ├── issue_000011.dart │ │ │ │ ├── issue_000011.dart.strong.expect │ │ │ │ ├── issue_000011.dart.strong.transformed.expect │ │ │ │ ├── issue_000011.dart.textual_outline.expect │ │ │ │ ├── issue_000011.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000011.dart.weak.expect │ │ │ │ ├── issue_000011.dart.weak.modular.expect │ │ │ │ ├── issue_000011.dart.weak.outline.expect │ │ │ │ ├── issue_000011.dart.weak.transformed.expect │ │ │ │ ├── issue_000012.dart │ │ │ │ ├── issue_000012.dart.strong.expect │ │ │ │ ├── issue_000012.dart.strong.transformed.expect │ │ │ │ ├── issue_000012.dart.textual_outline.expect │ │ │ │ ├── issue_000012.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000012.dart.weak.expect │ │ │ │ ├── issue_000012.dart.weak.modular.expect │ │ │ │ ├── issue_000012.dart.weak.outline.expect │ │ │ │ ├── issue_000012.dart.weak.transformed.expect │ │ │ │ ├── issue_000025.dart │ │ │ │ ├── issue_000025.dart.strong.expect │ │ │ │ ├── issue_000025.dart.strong.transformed.expect │ │ │ │ ├── issue_000025.dart.textual_outline.expect │ │ │ │ ├── issue_000025.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000025.dart.weak.expect │ │ │ │ ├── issue_000025.dart.weak.modular.expect │ │ │ │ ├── issue_000025.dart.weak.outline.expect │ │ │ │ ├── issue_000025.dart.weak.transformed.expect │ │ │ │ ├── issue_000026.dart │ │ │ │ ├── issue_000026.dart.strong.expect │ │ │ │ ├── issue_000026.dart.strong.transformed.expect │ │ │ │ ├── issue_000026.dart.textual_outline.expect │ │ │ │ ├── issue_000026.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000026.dart.weak.expect │ │ │ │ ├── issue_000026.dart.weak.modular.expect │ │ │ │ ├── issue_000026.dart.weak.outline.expect │ │ │ │ ├── issue_000026.dart.weak.transformed.expect │ │ │ │ ├── issue_000031.dart │ │ │ │ ├── issue_000031.dart.strong.expect │ │ │ │ ├── issue_000031.dart.strong.transformed.expect │ │ │ │ ├── issue_000031.dart.textual_outline.expect │ │ │ │ ├── issue_000031.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000031.dart.weak.expect │ │ │ │ ├── issue_000031.dart.weak.modular.expect │ │ │ │ ├── issue_000031.dart.weak.outline.expect │ │ │ │ ├── issue_000031.dart.weak.transformed.expect │ │ │ │ ├── issue_000032.dart │ │ │ │ ├── issue_000032.dart.strong.expect │ │ │ │ ├── issue_000032.dart.strong.transformed.expect │ │ │ │ ├── issue_000032.dart.textual_outline.expect │ │ │ │ ├── issue_000032.dart.weak.expect │ │ │ │ ├── issue_000032.dart.weak.modular.expect │ │ │ │ ├── issue_000032.dart.weak.outline.expect │ │ │ │ ├── issue_000032.dart.weak.transformed.expect │ │ │ │ ├── issue_000033.dart │ │ │ │ ├── issue_000033.dart.strong.expect │ │ │ │ ├── issue_000033.dart.strong.transformed.expect │ │ │ │ ├── issue_000033.dart.textual_outline.expect │ │ │ │ ├── issue_000033.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000033.dart.weak.expect │ │ │ │ ├── issue_000033.dart.weak.modular.expect │ │ │ │ ├── issue_000033.dart.weak.outline.expect │ │ │ │ ├── issue_000033.dart.weak.transformed.expect │ │ │ │ ├── issue_000034.dart │ │ │ │ ├── issue_000034.dart.strong.expect │ │ │ │ ├── issue_000034.dart.strong.transformed.expect │ │ │ │ ├── issue_000034.dart.textual_outline.expect │ │ │ │ ├── issue_000034.dart.weak.expect │ │ │ │ ├── issue_000034.dart.weak.modular.expect │ │ │ │ ├── issue_000034.dart.weak.outline.expect │ │ │ │ ├── issue_000034.dart.weak.transformed.expect │ │ │ │ ├── issue_000035.dart │ │ │ │ ├── issue_000035.dart.strong.expect │ │ │ │ ├── issue_000035.dart.strong.transformed.expect │ │ │ │ ├── issue_000035.dart.weak.expect │ │ │ │ ├── issue_000035.dart.weak.modular.expect │ │ │ │ ├── issue_000035.dart.weak.outline.expect │ │ │ │ ├── issue_000035.dart.weak.transformed.expect │ │ │ │ ├── issue_000035a.dart │ │ │ │ ├── issue_000035a.dart.strong.expect │ │ │ │ ├── issue_000035a.dart.strong.transformed.expect │ │ │ │ ├── issue_000035a.dart.weak.expect │ │ │ │ ├── issue_000035a.dart.weak.modular.expect │ │ │ │ ├── issue_000035a.dart.weak.outline.expect │ │ │ │ ├── issue_000035a.dart.weak.transformed.expect │ │ │ │ ├── issue_000036.dart │ │ │ │ ├── issue_000036.dart.strong.expect │ │ │ │ ├── issue_000036.dart.strong.transformed.expect │ │ │ │ ├── issue_000036.dart.textual_outline.expect │ │ │ │ ├── issue_000036.dart.weak.expect │ │ │ │ ├── issue_000036.dart.weak.modular.expect │ │ │ │ ├── issue_000036.dart.weak.outline.expect │ │ │ │ ├── issue_000036.dart.weak.transformed.expect │ │ │ │ ├── issue_000039.dart │ │ │ │ ├── issue_000039.dart.strong.expect │ │ │ │ ├── issue_000039.dart.strong.transformed.expect │ │ │ │ ├── issue_000039.dart.textual_outline.expect │ │ │ │ ├── issue_000039.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000039.dart.weak.expect │ │ │ │ ├── issue_000039.dart.weak.modular.expect │ │ │ │ ├── issue_000039.dart.weak.outline.expect │ │ │ │ ├── issue_000039.dart.weak.transformed.expect │ │ │ │ ├── issue_000041.dart │ │ │ │ ├── issue_000041.dart.strong.expect │ │ │ │ ├── issue_000041.dart.strong.transformed.expect │ │ │ │ ├── issue_000041.dart.textual_outline.expect │ │ │ │ ├── issue_000041.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000041.dart.weak.expect │ │ │ │ ├── issue_000041.dart.weak.modular.expect │ │ │ │ ├── issue_000041.dart.weak.outline.expect │ │ │ │ ├── issue_000041.dart.weak.transformed.expect │ │ │ │ ├── issue_000042.dart │ │ │ │ ├── issue_000042.dart.strong.expect │ │ │ │ ├── issue_000042.dart.strong.transformed.expect │ │ │ │ ├── issue_000042.dart.textual_outline.expect │ │ │ │ ├── issue_000042.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000042.dart.weak.expect │ │ │ │ ├── issue_000042.dart.weak.modular.expect │ │ │ │ ├── issue_000042.dart.weak.outline.expect │ │ │ │ ├── issue_000042.dart.weak.transformed.expect │ │ │ │ ├── issue_000043.dart │ │ │ │ ├── issue_000043.dart.strong.expect │ │ │ │ ├── issue_000043.dart.strong.transformed.expect │ │ │ │ ├── issue_000043.dart.textual_outline.expect │ │ │ │ ├── issue_000043.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000043.dart.weak.expect │ │ │ │ ├── issue_000043.dart.weak.modular.expect │ │ │ │ ├── issue_000043.dart.weak.outline.expect │ │ │ │ ├── issue_000043.dart.weak.transformed.expect │ │ │ │ ├── issue_000044.dart │ │ │ │ ├── issue_000044.dart.strong.expect │ │ │ │ ├── issue_000044.dart.strong.transformed.expect │ │ │ │ ├── issue_000044.dart.textual_outline.expect │ │ │ │ ├── issue_000044.dart.weak.expect │ │ │ │ ├── issue_000044.dart.weak.modular.expect │ │ │ │ ├── issue_000044.dart.weak.outline.expect │ │ │ │ ├── issue_000044.dart.weak.transformed.expect │ │ │ │ ├── issue_000045.dart │ │ │ │ ├── issue_000045.dart.strong.expect │ │ │ │ ├── issue_000045.dart.strong.transformed.expect │ │ │ │ ├── issue_000045.dart.weak.expect │ │ │ │ ├── issue_000045.dart.weak.modular.expect │ │ │ │ ├── issue_000045.dart.weak.outline.expect │ │ │ │ ├── issue_000045.dart.weak.transformed.expect │ │ │ │ ├── issue_000046.dart │ │ │ │ ├── issue_000046.dart.strong.expect │ │ │ │ ├── issue_000046.dart.strong.transformed.expect │ │ │ │ ├── issue_000046.dart.textual_outline.expect │ │ │ │ ├── issue_000046.dart.weak.expect │ │ │ │ ├── issue_000046.dart.weak.modular.expect │ │ │ │ ├── issue_000046.dart.weak.outline.expect │ │ │ │ ├── issue_000046.dart.weak.transformed.expect │ │ │ │ ├── issue_000047.dart │ │ │ │ ├── issue_000047.dart.strong.expect │ │ │ │ ├── issue_000047.dart.strong.transformed.expect │ │ │ │ ├── issue_000047.dart.textual_outline.expect │ │ │ │ ├── issue_000047.dart.weak.expect │ │ │ │ ├── issue_000047.dart.weak.modular.expect │ │ │ │ ├── issue_000047.dart.weak.outline.expect │ │ │ │ ├── issue_000047.dart.weak.transformed.expect │ │ │ │ ├── issue_000048.dart │ │ │ │ ├── issue_000048.dart.strong.expect │ │ │ │ ├── issue_000048.dart.strong.transformed.expect │ │ │ │ ├── issue_000048.dart.textual_outline.expect │ │ │ │ ├── issue_000048.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000048.dart.weak.expect │ │ │ │ ├── issue_000048.dart.weak.modular.expect │ │ │ │ ├── issue_000048.dart.weak.outline.expect │ │ │ │ ├── issue_000048.dart.weak.transformed.expect │ │ │ │ ├── issue_000052.dart │ │ │ │ ├── issue_000052.dart.strong.expect │ │ │ │ ├── issue_000052.dart.strong.transformed.expect │ │ │ │ ├── issue_000052.dart.textual_outline.expect │ │ │ │ ├── issue_000052.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000052.dart.weak.expect │ │ │ │ ├── issue_000052.dart.weak.modular.expect │ │ │ │ ├── issue_000052.dart.weak.outline.expect │ │ │ │ ├── issue_000052.dart.weak.transformed.expect │ │ │ │ ├── issue_000053.dart │ │ │ │ ├── issue_000053.dart.strong.expect │ │ │ │ ├── issue_000053.dart.strong.transformed.expect │ │ │ │ ├── issue_000053.dart.textual_outline.expect │ │ │ │ ├── issue_000053.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000053.dart.weak.expect │ │ │ │ ├── issue_000053.dart.weak.modular.expect │ │ │ │ ├── issue_000053.dart.weak.outline.expect │ │ │ │ ├── issue_000053.dart.weak.transformed.expect │ │ │ │ ├── issue_000067.dart │ │ │ │ ├── issue_000067.dart.strong.expect │ │ │ │ ├── issue_000067.dart.strong.transformed.expect │ │ │ │ ├── issue_000067.dart.textual_outline.expect │ │ │ │ ├── issue_000067.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000067.dart.weak.expect │ │ │ │ ├── issue_000067.dart.weak.modular.expect │ │ │ │ ├── issue_000067.dart.weak.outline.expect │ │ │ │ ├── issue_000067.dart.weak.transformed.expect │ │ │ │ ├── issue_000068.dart │ │ │ │ ├── issue_000068.dart.strong.expect │ │ │ │ ├── issue_000068.dart.strong.transformed.expect │ │ │ │ ├── issue_000068.dart.textual_outline.expect │ │ │ │ ├── issue_000068.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000068.dart.weak.expect │ │ │ │ ├── issue_000068.dart.weak.modular.expect │ │ │ │ ├── issue_000068.dart.weak.outline.expect │ │ │ │ ├── issue_000068.dart.weak.transformed.expect │ │ │ │ ├── issue_000069.dart │ │ │ │ ├── issue_000069.dart.strong.expect │ │ │ │ ├── issue_000069.dart.strong.transformed.expect │ │ │ │ ├── issue_000069.dart.textual_outline.expect │ │ │ │ ├── issue_000069.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000069.dart.weak.expect │ │ │ │ ├── issue_000069.dart.weak.modular.expect │ │ │ │ ├── issue_000069.dart.weak.outline.expect │ │ │ │ ├── issue_000069.dart.weak.transformed.expect │ │ │ │ ├── issue_000070.dart │ │ │ │ ├── issue_000070.dart.strong.expect │ │ │ │ ├── issue_000070.dart.strong.transformed.expect │ │ │ │ ├── issue_000070.dart.textual_outline.expect │ │ │ │ ├── issue_000070.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000070.dart.weak.expect │ │ │ │ ├── issue_000070.dart.weak.modular.expect │ │ │ │ ├── issue_000070.dart.weak.outline.expect │ │ │ │ ├── issue_000070.dart.weak.transformed.expect │ │ │ │ ├── issue_000080.dart │ │ │ │ ├── issue_000080.dart.strong.expect │ │ │ │ ├── issue_000080.dart.strong.transformed.expect │ │ │ │ ├── issue_000080.dart.textual_outline.expect │ │ │ │ ├── issue_000080.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000080.dart.weak.expect │ │ │ │ ├── issue_000080.dart.weak.modular.expect │ │ │ │ ├── issue_000080.dart.weak.outline.expect │ │ │ │ ├── issue_000080.dart.weak.transformed.expect │ │ │ │ ├── issue_000081.dart │ │ │ │ ├── issue_000081.dart.strong.expect │ │ │ │ ├── issue_000081.dart.strong.transformed.expect │ │ │ │ ├── issue_000081.dart.textual_outline.expect │ │ │ │ ├── issue_000081.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_000081.dart.weak.expect │ │ │ │ ├── issue_000081.dart.weak.modular.expect │ │ │ │ ├── issue_000081.dart.weak.outline.expect │ │ │ │ ├── issue_000081.dart.weak.transformed.expect │ │ │ │ ├── malformed_const_constructor.dart │ │ │ │ ├── malformed_const_constructor.dart.strong.expect │ │ │ │ ├── malformed_const_constructor.dart.strong.transformed.expect │ │ │ │ ├── malformed_const_constructor.dart.textual_outline.expect │ │ │ │ ├── malformed_const_constructor.dart.weak.expect │ │ │ │ ├── malformed_const_constructor.dart.weak.modular.expect │ │ │ │ ├── malformed_const_constructor.dart.weak.outline.expect │ │ │ │ ├── malformed_const_constructor.dart.weak.transformed.expect │ │ │ │ ├── malformed_function.dart │ │ │ │ ├── malformed_function.dart.strong.expect │ │ │ │ ├── malformed_function.dart.strong.transformed.expect │ │ │ │ ├── malformed_function.dart.textual_outline.expect │ │ │ │ ├── malformed_function.dart.textual_outline_modelled.expect │ │ │ │ ├── malformed_function.dart.weak.expect │ │ │ │ ├── malformed_function.dart.weak.modular.expect │ │ │ │ ├── malformed_function.dart.weak.outline.expect │ │ │ │ ├── malformed_function.dart.weak.transformed.expect │ │ │ │ ├── malformed_function_type.dart │ │ │ │ ├── malformed_function_type.dart.strong.expect │ │ │ │ ├── malformed_function_type.dart.strong.transformed.expect │ │ │ │ ├── malformed_function_type.dart.textual_outline.expect │ │ │ │ ├── malformed_function_type.dart.textual_outline_modelled.expect │ │ │ │ ├── malformed_function_type.dart.weak.expect │ │ │ │ ├── malformed_function_type.dart.weak.modular.expect │ │ │ │ ├── malformed_function_type.dart.weak.outline.expect │ │ │ │ ├── malformed_function_type.dart.weak.transformed.expect │ │ │ │ ├── mandatory_parameter_initializer.dart │ │ │ │ ├── mandatory_parameter_initializer.dart.strong.expect │ │ │ │ ├── mandatory_parameter_initializer.dart.strong.transformed.expect │ │ │ │ ├── mandatory_parameter_initializer.dart.textual_outline.expect │ │ │ │ ├── mandatory_parameter_initializer.dart.weak.expect │ │ │ │ ├── mandatory_parameter_initializer.dart.weak.modular.expect │ │ │ │ ├── mandatory_parameter_initializer.dart.weak.outline.expect │ │ │ │ ├── mandatory_parameter_initializer.dart.weak.transformed.expect │ │ │ │ ├── mixin_library.dart │ │ │ │ ├── mixin_library.dart.strong.expect │ │ │ │ ├── mixin_library.dart.strong.transformed.expect │ │ │ │ ├── mixin_library.dart.textual_outline.expect │ │ │ │ ├── mixin_library.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_library.dart.weak.expect │ │ │ │ ├── mixin_library.dart.weak.modular.expect │ │ │ │ ├── mixin_library.dart.weak.outline.expect │ │ │ │ ├── mixin_library.dart.weak.transformed.expect │ │ │ │ ├── native_is_illegal.dart │ │ │ │ ├── native_is_illegal.dart.strong.expect │ │ │ │ ├── native_is_illegal.dart.strong.transformed.expect │ │ │ │ ├── native_is_illegal.dart.textual_outline.expect │ │ │ │ ├── native_is_illegal.dart.textual_outline_modelled.expect │ │ │ │ ├── native_is_illegal.dart.weak.expect │ │ │ │ ├── native_is_illegal.dart.weak.modular.expect │ │ │ │ ├── native_is_illegal.dart.weak.outline.expect │ │ │ │ ├── native_is_illegal.dart.weak.transformed.expect │ │ │ │ ├── parser_error.dart │ │ │ │ ├── parser_error.dart.strong.expect │ │ │ │ ├── parser_error.dart.strong.transformed.expect │ │ │ │ ├── parser_error.dart.textual_outline.expect │ │ │ │ ├── parser_error.dart.textual_outline_modelled.expect │ │ │ │ ├── parser_error.dart.weak.expect │ │ │ │ ├── parser_error.dart.weak.modular.expect │ │ │ │ ├── parser_error.dart.weak.outline.expect │ │ │ │ ├── parser_error.dart.weak.transformed.expect │ │ │ │ ├── previsit_deferred.dart │ │ │ │ ├── previsit_deferred.dart.strong.expect │ │ │ │ ├── previsit_deferred.dart.strong.transformed.expect │ │ │ │ ├── previsit_deferred.dart.textual_outline.expect │ │ │ │ ├── previsit_deferred.dart.textual_outline_modelled.expect │ │ │ │ ├── previsit_deferred.dart.weak.expect │ │ │ │ ├── previsit_deferred.dart.weak.modular.expect │ │ │ │ ├── previsit_deferred.dart.weak.outline.expect │ │ │ │ ├── previsit_deferred.dart.weak.transformed.expect │ │ │ │ ├── static.dart │ │ │ │ ├── static.dart.strong.expect │ │ │ │ ├── static.dart.strong.transformed.expect │ │ │ │ ├── static.dart.textual_outline.expect │ │ │ │ ├── static.dart.textual_outline_modelled.expect │ │ │ │ ├── static.dart.weak.expect │ │ │ │ ├── static.dart.weak.modular.expect │ │ │ │ ├── static.dart.weak.outline.expect │ │ │ │ ├── static.dart.weak.transformed.expect │ │ │ │ ├── super.dart │ │ │ │ ├── super.dart.strong.expect │ │ │ │ ├── super.dart.strong.transformed.expect │ │ │ │ ├── super.dart.textual_outline.expect │ │ │ │ ├── super.dart.textual_outline_modelled.expect │ │ │ │ ├── super.dart.weak.expect │ │ │ │ ├── super.dart.weak.modular.expect │ │ │ │ ├── super.dart.weak.outline.expect │ │ │ │ ├── super.dart.weak.transformed.expect │ │ │ │ ├── super_initializer.dart │ │ │ │ ├── super_initializer.dart.strong.expect │ │ │ │ ├── super_initializer.dart.strong.transformed.expect │ │ │ │ ├── super_initializer.dart.textual_outline.expect │ │ │ │ ├── super_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── super_initializer.dart.weak.expect │ │ │ │ ├── super_initializer.dart.weak.modular.expect │ │ │ │ ├── super_initializer.dart.weak.outline.expect │ │ │ │ ├── super_initializer.dart.weak.transformed.expect │ │ │ │ ├── super_mixin.dart │ │ │ │ ├── super_mixin.dart.strong.expect │ │ │ │ ├── super_mixin.dart.strong.transformed.expect │ │ │ │ ├── super_mixin.dart.textual_outline.expect │ │ │ │ ├── super_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── super_mixin.dart.weak.expect │ │ │ │ ├── super_mixin.dart.weak.modular.expect │ │ │ │ ├── super_mixin.dart.weak.outline.expect │ │ │ │ ├── super_mixin.dart.weak.transformed.expect │ │ │ │ ├── super_operator.dart │ │ │ │ ├── super_operator.dart.strong.expect │ │ │ │ ├── super_operator.dart.strong.transformed.expect │ │ │ │ ├── super_operator.dart.textual_outline.expect │ │ │ │ ├── super_operator.dart.textual_outline_modelled.expect │ │ │ │ ├── super_operator.dart.weak.expect │ │ │ │ ├── super_operator.dart.weak.modular.expect │ │ │ │ ├── super_operator.dart.weak.outline.expect │ │ │ │ ├── super_operator.dart.weak.transformed.expect │ │ │ │ ├── supports_reflection.dart │ │ │ │ ├── supports_reflection.dart.strong.expect │ │ │ │ ├── supports_reflection.dart.strong.transformed.expect │ │ │ │ ├── supports_reflection.dart.textual_outline.expect │ │ │ │ ├── supports_reflection.dart.textual_outline_modelled.expect │ │ │ │ ├── supports_reflection.dart.weak.expect │ │ │ │ ├── supports_reflection.dart.weak.modular.expect │ │ │ │ ├── supports_reflection.dart.weak.outline.expect │ │ │ │ ├── supports_reflection.dart.weak.transformed.expect │ │ │ │ ├── switch_execution_case_t01.dart │ │ │ │ ├── switch_execution_case_t01.dart.strong.expect │ │ │ │ ├── switch_execution_case_t01.dart.strong.transformed.expect │ │ │ │ ├── switch_execution_case_t01.dart.textual_outline.expect │ │ │ │ ├── switch_execution_case_t01.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_execution_case_t01.dart.weak.expect │ │ │ │ ├── switch_execution_case_t01.dart.weak.modular.expect │ │ │ │ ├── switch_execution_case_t01.dart.weak.outline.expect │ │ │ │ ├── switch_execution_case_t01.dart.weak.transformed.expect │ │ │ │ ├── switch_execution_case_t02.dart │ │ │ │ ├── switch_execution_case_t02.dart.strong.expect │ │ │ │ ├── switch_execution_case_t02.dart.strong.transformed.expect │ │ │ │ ├── switch_execution_case_t02.dart.textual_outline.expect │ │ │ │ ├── switch_execution_case_t02.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_execution_case_t02.dart.weak.expect │ │ │ │ ├── switch_execution_case_t02.dart.weak.modular.expect │ │ │ │ ├── switch_execution_case_t02.dart.weak.outline.expect │ │ │ │ ├── switch_execution_case_t02.dart.weak.transformed.expect │ │ │ │ ├── switch_fall_through.dart │ │ │ │ ├── switch_fall_through.dart.strong.expect │ │ │ │ ├── switch_fall_through.dart.strong.transformed.expect │ │ │ │ ├── switch_fall_through.dart.textual_outline.expect │ │ │ │ ├── switch_fall_through.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_fall_through.dart.weak.expect │ │ │ │ ├── switch_fall_through.dart.weak.modular.expect │ │ │ │ ├── switch_fall_through.dart.weak.outline.expect │ │ │ │ ├── switch_fall_through.dart.weak.transformed.expect │ │ │ │ ├── switch_fall_through2.dart │ │ │ │ ├── switch_fall_through2.dart.strong.expect │ │ │ │ ├── switch_fall_through2.dart.strong.transformed.expect │ │ │ │ ├── switch_fall_through2.dart.textual_outline.expect │ │ │ │ ├── switch_fall_through2.dart.textual_outline_modelled.expect │ │ │ │ ├── switch_fall_through2.dart.weak.expect │ │ │ │ ├── switch_fall_through2.dart.weak.modular.expect │ │ │ │ ├── switch_fall_through2.dart.weak.outline.expect │ │ │ │ ├── switch_fall_through2.dart.weak.transformed.expect │ │ │ │ ├── this_invoke.dart │ │ │ │ ├── this_invoke.dart.strong.expect │ │ │ │ ├── this_invoke.dart.strong.transformed.expect │ │ │ │ ├── this_invoke.dart.textual_outline.expect │ │ │ │ ├── this_invoke.dart.textual_outline_modelled.expect │ │ │ │ ├── this_invoke.dart.weak.expect │ │ │ │ ├── this_invoke.dart.weak.modular.expect │ │ │ │ ├── this_invoke.dart.weak.outline.expect │ │ │ │ ├── this_invoke.dart.weak.transformed.expect │ │ │ │ ├── try_label.dart │ │ │ │ ├── try_label.dart.strong.expect │ │ │ │ ├── try_label.dart.strong.transformed.expect │ │ │ │ ├── try_label.dart.textual_outline.expect │ │ │ │ ├── try_label.dart.textual_outline_modelled.expect │ │ │ │ ├── try_label.dart.weak.expect │ │ │ │ ├── try_label.dart.weak.modular.expect │ │ │ │ ├── try_label.dart.weak.outline.expect │ │ │ │ ├── try_label.dart.weak.transformed.expect │ │ │ │ ├── type_literals.dart │ │ │ │ ├── type_literals.dart.strong.expect │ │ │ │ ├── type_literals.dart.strong.transformed.expect │ │ │ │ ├── type_literals.dart.textual_outline.expect │ │ │ │ ├── type_literals.dart.textual_outline_modelled.expect │ │ │ │ ├── type_literals.dart.weak.expect │ │ │ │ ├── type_literals.dart.weak.modular.expect │ │ │ │ ├── type_literals.dart.weak.outline.expect │ │ │ │ ├── type_literals.dart.weak.transformed.expect │ │ │ │ ├── type_with_parse_error.dart │ │ │ │ ├── type_with_parse_error.dart.strong.expect │ │ │ │ ├── type_with_parse_error.dart.strong.transformed.expect │ │ │ │ ├── type_with_parse_error.dart.textual_outline.expect │ │ │ │ ├── type_with_parse_error.dart.textual_outline_modelled.expect │ │ │ │ ├── type_with_parse_error.dart.weak.expect │ │ │ │ ├── type_with_parse_error.dart.weak.modular.expect │ │ │ │ ├── type_with_parse_error.dart.weak.outline.expect │ │ │ │ ├── type_with_parse_error.dart.weak.transformed.expect │ │ │ │ ├── typedef.dart │ │ │ │ ├── typedef.dart.strong.expect │ │ │ │ ├── typedef.dart.strong.transformed.expect │ │ │ │ ├── typedef.dart.textual_outline.expect │ │ │ │ ├── typedef.dart.textual_outline_modelled.expect │ │ │ │ ├── typedef.dart.weak.expect │ │ │ │ ├── typedef.dart.weak.modular.expect │ │ │ │ ├── typedef.dart.weak.outline.expect │ │ │ │ ├── typedef.dart.weak.transformed.expect │ │ │ │ ├── unresolved.dart │ │ │ │ ├── unresolved.dart.strong.expect │ │ │ │ ├── unresolved.dart.strong.transformed.expect │ │ │ │ ├── unresolved.dart.textual_outline.expect │ │ │ │ ├── unresolved.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved.dart.weak.expect │ │ │ │ ├── unresolved.dart.weak.modular.expect │ │ │ │ ├── unresolved.dart.weak.outline.expect │ │ │ │ ├── unresolved.dart.weak.transformed.expect │ │ │ │ ├── unresolved_constructor.dart │ │ │ │ ├── unresolved_constructor.dart.strong.expect │ │ │ │ ├── unresolved_constructor.dart.strong.transformed.expect │ │ │ │ ├── unresolved_constructor.dart.textual_outline.expect │ │ │ │ ├── unresolved_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_constructor.dart.weak.expect │ │ │ │ ├── unresolved_constructor.dart.weak.modular.expect │ │ │ │ ├── unresolved_constructor.dart.weak.outline.expect │ │ │ │ ├── unresolved_constructor.dart.weak.transformed.expect │ │ │ │ ├── unresolved_for_in.dart │ │ │ │ ├── unresolved_for_in.dart.strong.expect │ │ │ │ ├── unresolved_for_in.dart.strong.transformed.expect │ │ │ │ ├── unresolved_for_in.dart.textual_outline.expect │ │ │ │ ├── unresolved_for_in.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_for_in.dart.weak.expect │ │ │ │ ├── unresolved_for_in.dart.weak.modular.expect │ │ │ │ ├── unresolved_for_in.dart.weak.outline.expect │ │ │ │ ├── unresolved_for_in.dart.weak.transformed.expect │ │ │ │ ├── unresolved_recovery.dart │ │ │ │ ├── unresolved_recovery.dart.strong.expect │ │ │ │ ├── unresolved_recovery.dart.strong.transformed.expect │ │ │ │ ├── unresolved_recovery.dart.textual_outline.expect │ │ │ │ ├── unresolved_recovery.dart.textual_outline_modelled.expect │ │ │ │ ├── unresolved_recovery.dart.weak.expect │ │ │ │ ├── unresolved_recovery.dart.weak.modular.expect │ │ │ │ ├── unresolved_recovery.dart.weak.outline.expect │ │ │ │ ├── unresolved_recovery.dart.weak.transformed.expect │ │ │ │ ├── unsupported_platform_library.dart │ │ │ │ ├── unsupported_platform_library.dart.strong.expect │ │ │ │ ├── unsupported_platform_library.dart.strong.transformed.expect │ │ │ │ ├── unsupported_platform_library.dart.textual_outline.expect │ │ │ │ ├── unsupported_platform_library.dart.textual_outline_modelled.expect │ │ │ │ ├── unsupported_platform_library.dart.weak.expect │ │ │ │ ├── unsupported_platform_library.dart.weak.modular.expect │ │ │ │ ├── unsupported_platform_library.dart.weak.outline.expect │ │ │ │ └── unsupported_platform_library.dart.weak.transformed.expect │ │ │ ├── records │ │ │ │ ├── access_through_type_variable.dart │ │ │ │ ├── access_through_type_variable.dart.strong.expect │ │ │ │ ├── access_through_type_variable.dart.strong.transformed.expect │ │ │ │ ├── access_through_type_variable.dart.textual_outline.expect │ │ │ │ ├── access_through_type_variable.dart.textual_outline_modelled.expect │ │ │ │ ├── access_through_type_variable.dart.weak.expect │ │ │ │ ├── access_through_type_variable.dart.weak.modular.expect │ │ │ │ ├── access_through_type_variable.dart.weak.outline.expect │ │ │ │ ├── access_through_type_variable.dart.weak.transformed.expect │ │ │ │ ├── block_combine_statements.dart │ │ │ │ ├── block_combine_statements.dart.strong.expect │ │ │ │ ├── block_combine_statements.dart.strong.transformed.expect │ │ │ │ ├── block_combine_statements.dart.textual_outline.expect │ │ │ │ ├── block_combine_statements.dart.textual_outline_modelled.expect │ │ │ │ ├── block_combine_statements.dart.weak.expect │ │ │ │ ├── block_combine_statements.dart.weak.modular.expect │ │ │ │ ├── block_combine_statements.dart.weak.outline.expect │ │ │ │ ├── block_combine_statements.dart.weak.transformed.expect │ │ │ │ ├── const_local_access.dart │ │ │ │ ├── const_local_access.dart.strong.expect │ │ │ │ ├── const_local_access.dart.strong.transformed.expect │ │ │ │ ├── const_local_access.dart.textual_outline.expect │ │ │ │ ├── const_local_access.dart.textual_outline_modelled.expect │ │ │ │ ├── const_local_access.dart.weak.expect │ │ │ │ ├── const_local_access.dart.weak.modular.expect │ │ │ │ ├── const_local_access.dart.weak.outline.expect │ │ │ │ ├── const_local_access.dart.weak.transformed.expect │ │ │ │ ├── const_record_literal.dart │ │ │ │ ├── const_record_literal.dart.strong.expect │ │ │ │ ├── const_record_literal.dart.strong.transformed.expect │ │ │ │ ├── const_record_literal.dart.textual_outline.expect │ │ │ │ ├── const_record_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── const_record_literal.dart.weak.expect │ │ │ │ ├── const_record_literal.dart.weak.modular.expect │ │ │ │ ├── const_record_literal.dart.weak.outline.expect │ │ │ │ ├── const_record_literal.dart.weak.transformed.expect │ │ │ │ ├── custom_record_class_unsupported.dart │ │ │ │ ├── custom_record_class_unsupported.dart.strong.expect │ │ │ │ ├── custom_record_class_unsupported.dart.strong.transformed.expect │ │ │ │ ├── custom_record_class_unsupported.dart.textual_outline.expect │ │ │ │ ├── custom_record_class_unsupported.dart.textual_outline_modelled.expect │ │ │ │ ├── custom_record_class_unsupported.dart.weak.expect │ │ │ │ ├── custom_record_class_unsupported.dart.weak.modular.expect │ │ │ │ ├── custom_record_class_unsupported.dart.weak.outline.expect │ │ │ │ ├── custom_record_class_unsupported.dart.weak.transformed.expect │ │ │ │ ├── duplicated_name_errors.dart │ │ │ │ ├── duplicated_name_errors.dart.strong.expect │ │ │ │ ├── duplicated_name_errors.dart.strong.transformed.expect │ │ │ │ ├── duplicated_name_errors.dart.textual_outline.expect │ │ │ │ ├── duplicated_name_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── duplicated_name_errors.dart.weak.expect │ │ │ │ ├── duplicated_name_errors.dart.weak.modular.expect │ │ │ │ ├── duplicated_name_errors.dart.weak.outline.expect │ │ │ │ ├── duplicated_name_errors.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── for_in_without_variable.dart │ │ │ │ ├── for_in_without_variable.dart.strong.expect │ │ │ │ ├── for_in_without_variable.dart.strong.transformed.expect │ │ │ │ ├── for_in_without_variable.dart.textual_outline.expect │ │ │ │ ├── for_in_without_variable.dart.weak.expect │ │ │ │ ├── for_in_without_variable.dart.weak.modular.expect │ │ │ │ ├── for_in_without_variable.dart.weak.outline.expect │ │ │ │ ├── for_in_without_variable.dart.weak.transformed.expect │ │ │ │ ├── issue50004.dart │ │ │ │ ├── issue50004.dart.strong.expect │ │ │ │ ├── issue50004.dart.strong.transformed.expect │ │ │ │ ├── issue50004.dart.textual_outline.expect │ │ │ │ ├── issue50004.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50004.dart.weak.expect │ │ │ │ ├── issue50004.dart.weak.modular.expect │ │ │ │ ├── issue50004.dart.weak.outline.expect │ │ │ │ ├── issue50004.dart.weak.transformed.expect │ │ │ │ ├── issue50132.dart │ │ │ │ ├── issue50132.dart.strong.expect │ │ │ │ ├── issue50132.dart.strong.transformed.expect │ │ │ │ ├── issue50132.dart.textual_outline.expect │ │ │ │ ├── issue50132.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50132.dart.weak.expect │ │ │ │ ├── issue50132.dart.weak.modular.expect │ │ │ │ ├── issue50132.dart.weak.outline.expect │ │ │ │ ├── issue50132.dart.weak.transformed.expect │ │ │ │ ├── issue50133.dart │ │ │ │ ├── issue50133.dart.strong.expect │ │ │ │ ├── issue50133.dart.strong.transformed.expect │ │ │ │ ├── issue50133.dart.textual_outline.expect │ │ │ │ ├── issue50133.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50133.dart.weak.expect │ │ │ │ ├── issue50133.dart.weak.modular.expect │ │ │ │ ├── issue50133.dart.weak.outline.expect │ │ │ │ ├── issue50133.dart.weak.transformed.expect │ │ │ │ ├── issue50135.dart │ │ │ │ ├── issue50135.dart.strong.expect │ │ │ │ ├── issue50135.dart.strong.transformed.expect │ │ │ │ ├── issue50135.dart.textual_outline.expect │ │ │ │ ├── issue50135.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50135.dart.weak.expect │ │ │ │ ├── issue50135.dart.weak.modular.expect │ │ │ │ ├── issue50135.dart.weak.outline.expect │ │ │ │ ├── issue50135.dart.weak.transformed.expect │ │ │ │ ├── issue50157.dart │ │ │ │ ├── issue50157.dart.strong.expect │ │ │ │ ├── issue50157.dart.strong.transformed.expect │ │ │ │ ├── issue50157.dart.textual_outline.expect │ │ │ │ ├── issue50157.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50157.dart.weak.expect │ │ │ │ ├── issue50157.dart.weak.modular.expect │ │ │ │ ├── issue50157.dart.weak.outline.expect │ │ │ │ ├── issue50157.dart.weak.transformed.expect │ │ │ │ ├── issue50182.dart │ │ │ │ ├── issue50182.dart.strong.expect │ │ │ │ ├── issue50182.dart.strong.transformed.expect │ │ │ │ ├── issue50182.dart.textual_outline.expect │ │ │ │ ├── issue50182.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50182.dart.weak.expect │ │ │ │ ├── issue50182.dart.weak.modular.expect │ │ │ │ ├── issue50182.dart.weak.outline.expect │ │ │ │ ├── issue50182.dart.weak.transformed.expect │ │ │ │ ├── issue50513.dart │ │ │ │ ├── issue50513.dart.strong.expect │ │ │ │ ├── issue50513.dart.strong.transformed.expect │ │ │ │ ├── issue50513.dart.textual_outline.expect │ │ │ │ ├── issue50513.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50513.dart.weak.expect │ │ │ │ ├── issue50513.dart.weak.modular.expect │ │ │ │ ├── issue50513.dart.weak.outline.expect │ │ │ │ ├── issue50513.dart.weak.transformed.expect │ │ │ │ ├── issue50514.dart │ │ │ │ ├── issue50514.dart.strong.expect │ │ │ │ ├── issue50514.dart.strong.transformed.expect │ │ │ │ ├── issue50514.dart.textual_outline.expect │ │ │ │ ├── issue50514.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50514.dart.weak.expect │ │ │ │ ├── issue50514.dart.weak.modular.expect │ │ │ │ ├── issue50514.dart.weak.outline.expect │ │ │ │ ├── issue50514.dart.weak.transformed.expect │ │ │ │ ├── issue50515.dart │ │ │ │ ├── issue50515.dart.strong.expect │ │ │ │ ├── issue50515.dart.strong.transformed.expect │ │ │ │ ├── issue50515.dart.textual_outline.expect │ │ │ │ ├── issue50515.dart.textual_outline_modelled.expect │ │ │ │ ├── issue50515.dart.weak.expect │ │ │ │ ├── issue50515.dart.weak.modular.expect │ │ │ │ ├── issue50515.dart.weak.outline.expect │ │ │ │ ├── issue50515.dart.weak.transformed.expect │ │ │ │ ├── issue51731.dart │ │ │ │ ├── issue51731.dart.strong.expect │ │ │ │ ├── issue51731.dart.strong.transformed.expect │ │ │ │ ├── issue51731.dart.textual_outline.expect │ │ │ │ ├── issue51731.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51731.dart.weak.expect │ │ │ │ ├── issue51731.dart.weak.modular.expect │ │ │ │ ├── issue51731.dart.weak.outline.expect │ │ │ │ ├── issue51731.dart.weak.transformed.expect │ │ │ │ ├── issue51940.dart │ │ │ │ ├── issue51940.dart.strong.expect │ │ │ │ ├── issue51940.dart.strong.transformed.expect │ │ │ │ ├── issue51940.dart.textual_outline.expect │ │ │ │ ├── issue51940.dart.textual_outline_modelled.expect │ │ │ │ ├── issue51940.dart.weak.expect │ │ │ │ ├── issue51940.dart.weak.modular.expect │ │ │ │ ├── issue51940.dart.weak.outline.expect │ │ │ │ ├── issue51940.dart.weak.transformed.expect │ │ │ │ ├── metadata.dart │ │ │ │ ├── metadata.dart.strong.expect │ │ │ │ ├── metadata.dart.strong.transformed.expect │ │ │ │ ├── metadata.dart.textual_outline.expect │ │ │ │ ├── metadata.dart.weak.expect │ │ │ │ ├── metadata.dart.weak.modular.expect │ │ │ │ ├── metadata.dart.weak.outline.expect │ │ │ │ ├── metadata.dart.weak.transformed.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart │ │ │ │ ├── named_fields_clashing_with_positional.dart.strong.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.strong.transformed.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.textual_outline.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.textual_outline_modelled.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.weak.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.weak.modular.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.weak.outline.expect │ │ │ │ ├── named_fields_clashing_with_positional.dart.weak.transformed.expect │ │ │ │ ├── null_shorting.dart │ │ │ │ ├── null_shorting.dart.strong.expect │ │ │ │ ├── null_shorting.dart.strong.transformed.expect │ │ │ │ ├── null_shorting.dart.textual_outline.expect │ │ │ │ ├── null_shorting.dart.textual_outline_modelled.expect │ │ │ │ ├── null_shorting.dart.weak.expect │ │ │ │ ├── null_shorting.dart.weak.modular.expect │ │ │ │ ├── null_shorting.dart.weak.outline.expect │ │ │ │ ├── null_shorting.dart.weak.transformed.expect │ │ │ │ ├── nullable_access.dart │ │ │ │ ├── nullable_access.dart.strong.expect │ │ │ │ ├── nullable_access.dart.strong.transformed.expect │ │ │ │ ├── nullable_access.dart.textual_outline.expect │ │ │ │ ├── nullable_access.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_access.dart.weak.expect │ │ │ │ ├── nullable_access.dart.weak.modular.expect │ │ │ │ ├── nullable_access.dart.weak.outline.expect │ │ │ │ ├── nullable_access.dart.weak.transformed.expect │ │ │ │ ├── nullable_access_extension.dart │ │ │ │ ├── nullable_access_extension.dart.strong.expect │ │ │ │ ├── nullable_access_extension.dart.strong.transformed.expect │ │ │ │ ├── nullable_access_extension.dart.textual_outline.expect │ │ │ │ ├── nullable_access_extension.dart.textual_outline_modelled.expect │ │ │ │ ├── nullable_access_extension.dart.weak.expect │ │ │ │ ├── nullable_access_extension.dart.weak.modular.expect │ │ │ │ ├── nullable_access_extension.dart.weak.outline.expect │ │ │ │ ├── nullable_access_extension.dart.weak.transformed.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart │ │ │ │ ├── pointwise_implicit_downcasts.dart.strong.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.strong.transformed.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.textual_outline.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.textual_outline_modelled.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.weak.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.weak.modular.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.weak.outline.expect │ │ │ │ ├── pointwise_implicit_downcasts.dart.weak.transformed.expect │ │ │ │ ├── private_field_names.dart │ │ │ │ ├── private_field_names.dart.strong.expect │ │ │ │ ├── private_field_names.dart.strong.transformed.expect │ │ │ │ ├── private_field_names.dart.textual_outline.expect │ │ │ │ ├── private_field_names.dart.textual_outline_modelled.expect │ │ │ │ ├── private_field_names.dart.weak.expect │ │ │ │ ├── private_field_names.dart.weak.modular.expect │ │ │ │ ├── private_field_names.dart.weak.outline.expect │ │ │ │ ├── private_field_names.dart.weak.transformed.expect │ │ │ │ ├── record_get.dart │ │ │ │ ├── record_get.dart.strong.expect │ │ │ │ ├── record_get.dart.strong.transformed.expect │ │ │ │ ├── record_get.dart.textual_outline.expect │ │ │ │ ├── record_get.dart.textual_outline_modelled.expect │ │ │ │ ├── record_get.dart.weak.expect │ │ │ │ ├── record_get.dart.weak.modular.expect │ │ │ │ ├── record_get.dart.weak.outline.expect │ │ │ │ ├── record_get.dart.weak.transformed.expect │ │ │ │ ├── record_get_errors.dart │ │ │ │ ├── record_get_errors.dart.strong.expect │ │ │ │ ├── record_get_errors.dart.strong.transformed.expect │ │ │ │ ├── record_get_errors.dart.textual_outline.expect │ │ │ │ ├── record_get_errors.dart.textual_outline_modelled.expect │ │ │ │ ├── record_get_errors.dart.weak.expect │ │ │ │ ├── record_get_errors.dart.weak.modular.expect │ │ │ │ ├── record_get_errors.dart.weak.outline.expect │ │ │ │ ├── record_get_errors.dart.weak.transformed.expect │ │ │ │ ├── record_literal.dart │ │ │ │ ├── record_literal.dart.strong.expect │ │ │ │ ├── record_literal.dart.strong.transformed.expect │ │ │ │ ├── record_literal.dart.textual_outline.expect │ │ │ │ ├── record_literal.dart.textual_outline_modelled.expect │ │ │ │ ├── record_literal.dart.weak.expect │ │ │ │ ├── record_literal.dart.weak.modular.expect │ │ │ │ ├── record_literal.dart.weak.outline.expect │ │ │ │ ├── record_literal.dart.weak.transformed.expect │ │ │ │ ├── record_literal_errors.dart │ │ │ │ ├── record_literal_errors.dart.strong.expect │ │ │ │ ├── record_literal_errors.dart.strong.transformed.expect │ │ │ │ ├── record_literal_errors.dart.textual_outline.expect │ │ │ │ ├── record_literal_errors.dart.weak.expect │ │ │ │ ├── record_literal_errors.dart.weak.modular.expect │ │ │ │ ├── record_literal_errors.dart.weak.outline.expect │ │ │ │ ├── record_literal_errors.dart.weak.transformed.expect │ │ │ │ ├── record_literal_unsupported.dart │ │ │ │ ├── record_literal_unsupported.dart.strong.expect │ │ │ │ ├── record_literal_unsupported.dart.strong.transformed.expect │ │ │ │ ├── record_literal_unsupported.dart.textual_outline.expect │ │ │ │ ├── record_literal_unsupported.dart.textual_outline_modelled.expect │ │ │ │ ├── record_literal_unsupported.dart.weak.expect │ │ │ │ ├── record_literal_unsupported.dart.weak.modular.expect │ │ │ │ ├── record_literal_unsupported.dart.weak.outline.expect │ │ │ │ ├── record_literal_unsupported.dart.weak.transformed.expect │ │ │ │ ├── record_type.dart │ │ │ │ ├── record_type.dart.strong.expect │ │ │ │ ├── record_type.dart.strong.transformed.expect │ │ │ │ ├── record_type.dart.textual_outline.expect │ │ │ │ ├── record_type.dart.textual_outline_modelled.expect │ │ │ │ ├── record_type.dart.weak.expect │ │ │ │ ├── record_type.dart.weak.modular.expect │ │ │ │ ├── record_type.dart.weak.outline.expect │ │ │ │ ├── record_type.dart.weak.transformed.expect │ │ │ │ ├── record_type_errors.dart │ │ │ │ ├── record_type_errors.dart.strong.expect │ │ │ │ ├── record_type_errors.dart.strong.transformed.expect │ │ │ │ ├── record_type_errors.dart.textual_outline.expect │ │ │ │ ├── record_type_errors.dart.weak.expect │ │ │ │ ├── record_type_errors.dart.weak.modular.expect │ │ │ │ ├── record_type_errors.dart.weak.outline.expect │ │ │ │ ├── record_type_errors.dart.weak.transformed.expect │ │ │ │ ├── record_type_unsupported.dart │ │ │ │ ├── record_type_unsupported.dart.strong.expect │ │ │ │ ├── record_type_unsupported.dart.strong.transformed.expect │ │ │ │ ├── record_type_unsupported.dart.textual_outline.expect │ │ │ │ ├── record_type_unsupported.dart.weak.expect │ │ │ │ ├── record_type_unsupported.dart.weak.modular.expect │ │ │ │ ├── record_type_unsupported.dart.weak.outline.expect │ │ │ │ ├── record_type_unsupported.dart.weak.transformed.expect │ │ │ │ ├── restricted_object_member_names.dart │ │ │ │ ├── restricted_object_member_names.dart.strong.expect │ │ │ │ ├── restricted_object_member_names.dart.strong.transformed.expect │ │ │ │ ├── restricted_object_member_names.dart.textual_outline.expect │ │ │ │ ├── restricted_object_member_names.dart.textual_outline_modelled.expect │ │ │ │ ├── restricted_object_member_names.dart.weak.expect │ │ │ │ ├── restricted_object_member_names.dart.weak.modular.expect │ │ │ │ ├── restricted_object_member_names.dart.weak.outline.expect │ │ │ │ ├── restricted_object_member_names.dart.weak.transformed.expect │ │ │ │ ├── simple_inference.dart │ │ │ │ ├── simple_inference.dart.strong.expect │ │ │ │ ├── simple_inference.dart.strong.transformed.expect │ │ │ │ ├── simple_inference.dart.textual_outline.expect │ │ │ │ ├── simple_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_inference.dart.weak.expect │ │ │ │ ├── simple_inference.dart.weak.modular.expect │ │ │ │ ├── simple_inference.dart.weak.outline.expect │ │ │ │ ├── simple_inference.dart.weak.transformed.expect │ │ │ │ ├── structurally_constant.dart │ │ │ │ ├── structurally_constant.dart.strong.expect │ │ │ │ ├── structurally_constant.dart.strong.transformed.expect │ │ │ │ ├── structurally_constant.dart.textual_outline.expect │ │ │ │ ├── structurally_constant.dart.textual_outline_modelled.expect │ │ │ │ ├── structurally_constant.dart.weak.expect │ │ │ │ ├── structurally_constant.dart.weak.modular.expect │ │ │ │ ├── structurally_constant.dart.weak.outline.expect │ │ │ │ ├── structurally_constant.dart.weak.transformed.expect │ │ │ │ ├── tear_off_with_record_type.dart │ │ │ │ ├── tear_off_with_record_type.dart.strong.expect │ │ │ │ ├── tear_off_with_record_type.dart.strong.transformed.expect │ │ │ │ ├── tear_off_with_record_type.dart.textual_outline.expect │ │ │ │ ├── tear_off_with_record_type.dart.textual_outline_modelled.expect │ │ │ │ ├── tear_off_with_record_type.dart.weak.expect │ │ │ │ ├── tear_off_with_record_type.dart.weak.modular.expect │ │ │ │ ├── tear_off_with_record_type.dart.weak.outline.expect │ │ │ │ ├── tear_off_with_record_type.dart.weak.transformed.expect │ │ │ │ ├── type_record.dart │ │ │ │ ├── type_record.dart.strong.expect │ │ │ │ ├── type_record.dart.strong.transformed.expect │ │ │ │ ├── type_record.dart.textual_outline.expect │ │ │ │ ├── type_record.dart.textual_outline_modelled.expect │ │ │ │ ├── type_record.dart.weak.expect │ │ │ │ ├── type_record.dart.weak.modular.expect │ │ │ │ ├── type_record.dart.weak.outline.expect │ │ │ │ ├── type_record.dart.weak.transformed.expect │ │ │ │ ├── type_record_as_supertype.dart │ │ │ │ ├── type_record_as_supertype.dart.strong.expect │ │ │ │ ├── type_record_as_supertype.dart.strong.transformed.expect │ │ │ │ ├── type_record_as_supertype.dart.textual_outline.expect │ │ │ │ ├── type_record_as_supertype.dart.textual_outline_modelled.expect │ │ │ │ ├── type_record_as_supertype.dart.weak.expect │ │ │ │ ├── type_record_as_supertype.dart.weak.modular.expect │ │ │ │ ├── type_record_as_supertype.dart.weak.outline.expect │ │ │ │ ├── type_record_as_supertype.dart.weak.transformed.expect │ │ │ │ ├── type_record_constructor_forbidden.dart │ │ │ │ ├── type_record_constructor_forbidden.dart.strong.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.strong.transformed.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.textual_outline.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.textual_outline_modelled.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.weak.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.weak.modular.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.weak.outline.expect │ │ │ │ ├── type_record_constructor_forbidden.dart.weak.transformed.expect │ │ │ │ ├── type_record_unsupported.dart │ │ │ │ ├── type_record_unsupported.dart.strong.expect │ │ │ │ ├── type_record_unsupported.dart.strong.transformed.expect │ │ │ │ ├── type_record_unsupported.dart.textual_outline.expect │ │ │ │ ├── type_record_unsupported.dart.textual_outline_modelled.expect │ │ │ │ ├── type_record_unsupported.dart.weak.expect │ │ │ │ ├── type_record_unsupported.dart.weak.modular.expect │ │ │ │ ├── type_record_unsupported.dart.weak.outline.expect │ │ │ │ ├── type_record_unsupported.dart.weak.transformed.expect │ │ │ │ └── type_record_unsupported_lib.dart │ │ │ ├── regress │ │ │ │ ├── ambiguous_builder_01.dart │ │ │ │ ├── ambiguous_builder_01.dart.strong.expect │ │ │ │ ├── ambiguous_builder_01.dart.strong.transformed.expect │ │ │ │ ├── ambiguous_builder_01.dart.textual_outline.expect │ │ │ │ ├── ambiguous_builder_01.dart.weak.expect │ │ │ │ ├── ambiguous_builder_01.dart.weak.modular.expect │ │ │ │ ├── ambiguous_builder_01.dart.weak.outline.expect │ │ │ │ ├── ambiguous_builder_01.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── issue_29937.dart │ │ │ │ ├── issue_29937.dart.strong.expect │ │ │ │ ├── issue_29937.dart.strong.transformed.expect │ │ │ │ ├── issue_29937.dart.textual_outline.expect │ │ │ │ ├── issue_29937.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29937.dart.weak.expect │ │ │ │ ├── issue_29937.dart.weak.modular.expect │ │ │ │ ├── issue_29937.dart.weak.outline.expect │ │ │ │ ├── issue_29937.dart.weak.transformed.expect │ │ │ │ ├── issue_29940.dart │ │ │ │ ├── issue_29940.dart.strong.expect │ │ │ │ ├── issue_29940.dart.strong.transformed.expect │ │ │ │ ├── issue_29940.dart.textual_outline.expect │ │ │ │ ├── issue_29940.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29940.dart.weak.expect │ │ │ │ ├── issue_29940.dart.weak.modular.expect │ │ │ │ ├── issue_29940.dart.weak.outline.expect │ │ │ │ ├── issue_29940.dart.weak.transformed.expect │ │ │ │ ├── issue_29941.dart │ │ │ │ ├── issue_29941.dart.strong.expect │ │ │ │ ├── issue_29941.dart.strong.transformed.expect │ │ │ │ ├── issue_29941.dart.textual_outline.expect │ │ │ │ ├── issue_29941.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29941.dart.weak.expect │ │ │ │ ├── issue_29941.dart.weak.modular.expect │ │ │ │ ├── issue_29941.dart.weak.outline.expect │ │ │ │ ├── issue_29941.dart.weak.transformed.expect │ │ │ │ ├── issue_29942.dart │ │ │ │ ├── issue_29942.dart.strong.expect │ │ │ │ ├── issue_29942.dart.strong.transformed.expect │ │ │ │ ├── issue_29942.dart.textual_outline.expect │ │ │ │ ├── issue_29942.dart.weak.expect │ │ │ │ ├── issue_29942.dart.weak.modular.expect │ │ │ │ ├── issue_29942.dart.weak.outline.expect │ │ │ │ ├── issue_29942.dart.weak.transformed.expect │ │ │ │ ├── issue_29943.dart │ │ │ │ ├── issue_29943.dart.strong.expect │ │ │ │ ├── issue_29943.dart.strong.transformed.expect │ │ │ │ ├── issue_29943.dart.textual_outline.expect │ │ │ │ ├── issue_29943.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29943.dart.weak.expect │ │ │ │ ├── issue_29943.dart.weak.modular.expect │ │ │ │ ├── issue_29943.dart.weak.outline.expect │ │ │ │ ├── issue_29943.dart.weak.transformed.expect │ │ │ │ ├── issue_29944.dart │ │ │ │ ├── issue_29944.dart.strong.expect │ │ │ │ ├── issue_29944.dart.strong.transformed.expect │ │ │ │ ├── issue_29944.dart.textual_outline.expect │ │ │ │ ├── issue_29944.dart.weak.expect │ │ │ │ ├── issue_29944.dart.weak.modular.expect │ │ │ │ ├── issue_29944.dart.weak.outline.expect │ │ │ │ ├── issue_29944.dart.weak.transformed.expect │ │ │ │ ├── issue_29945.dart │ │ │ │ ├── issue_29945.dart.strong.expect │ │ │ │ ├── issue_29945.dart.strong.transformed.expect │ │ │ │ ├── issue_29945.dart.textual_outline.expect │ │ │ │ ├── issue_29945.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29945.dart.weak.expect │ │ │ │ ├── issue_29945.dart.weak.modular.expect │ │ │ │ ├── issue_29945.dart.weak.outline.expect │ │ │ │ ├── issue_29945.dart.weak.transformed.expect │ │ │ │ ├── issue_29975.dart │ │ │ │ ├── issue_29975.dart.strong.expect │ │ │ │ ├── issue_29975.dart.strong.transformed.expect │ │ │ │ ├── issue_29975.dart.textual_outline.expect │ │ │ │ ├── issue_29975.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29975.dart.weak.expect │ │ │ │ ├── issue_29975.dart.weak.modular.expect │ │ │ │ ├── issue_29975.dart.weak.outline.expect │ │ │ │ ├── issue_29975.dart.weak.transformed.expect │ │ │ │ ├── issue_29976.dart │ │ │ │ ├── issue_29976.dart.strong.expect │ │ │ │ ├── issue_29976.dart.strong.transformed.expect │ │ │ │ ├── issue_29976.dart.weak.expect │ │ │ │ ├── issue_29976.dart.weak.modular.expect │ │ │ │ ├── issue_29976.dart.weak.outline.expect │ │ │ │ ├── issue_29976.dart.weak.transformed.expect │ │ │ │ ├── issue_29977.dart │ │ │ │ ├── issue_29977.dart.strong.expect │ │ │ │ ├── issue_29977.dart.strong.transformed.expect │ │ │ │ ├── issue_29977.dart.textual_outline.expect │ │ │ │ ├── issue_29977.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29977.dart.weak.expect │ │ │ │ ├── issue_29977.dart.weak.modular.expect │ │ │ │ ├── issue_29977.dart.weak.outline.expect │ │ │ │ ├── issue_29977.dart.weak.transformed.expect │ │ │ │ ├── issue_29978.dart │ │ │ │ ├── issue_29978.dart.strong.expect │ │ │ │ ├── issue_29978.dart.strong.transformed.expect │ │ │ │ ├── issue_29978.dart.textual_outline.expect │ │ │ │ ├── issue_29978.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29978.dart.weak.expect │ │ │ │ ├── issue_29978.dart.weak.modular.expect │ │ │ │ ├── issue_29978.dart.weak.outline.expect │ │ │ │ ├── issue_29978.dart.weak.transformed.expect │ │ │ │ ├── issue_29979.dart │ │ │ │ ├── issue_29979.dart.strong.expect │ │ │ │ ├── issue_29979.dart.strong.transformed.expect │ │ │ │ ├── issue_29979.dart.textual_outline.expect │ │ │ │ ├── issue_29979.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29979.dart.weak.expect │ │ │ │ ├── issue_29979.dart.weak.modular.expect │ │ │ │ ├── issue_29979.dart.weak.outline.expect │ │ │ │ ├── issue_29979.dart.weak.transformed.expect │ │ │ │ ├── issue_29980.dart │ │ │ │ ├── issue_29980.dart.strong.expect │ │ │ │ ├── issue_29980.dart.strong.transformed.expect │ │ │ │ ├── issue_29980.dart.textual_outline.expect │ │ │ │ ├── issue_29980.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29980.dart.weak.expect │ │ │ │ ├── issue_29980.dart.weak.modular.expect │ │ │ │ ├── issue_29980.dart.weak.outline.expect │ │ │ │ ├── issue_29980.dart.weak.transformed.expect │ │ │ │ ├── issue_29981.dart │ │ │ │ ├── issue_29981.dart.strong.expect │ │ │ │ ├── issue_29981.dart.strong.transformed.expect │ │ │ │ ├── issue_29981.dart.textual_outline.expect │ │ │ │ ├── issue_29981.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29981.dart.weak.expect │ │ │ │ ├── issue_29981.dart.weak.modular.expect │ │ │ │ ├── issue_29981.dart.weak.outline.expect │ │ │ │ ├── issue_29981.dart.weak.transformed.expect │ │ │ │ ├── issue_29982.dart │ │ │ │ ├── issue_29982.dart.strong.expect │ │ │ │ ├── issue_29982.dart.strong.transformed.expect │ │ │ │ ├── issue_29982.dart.weak.expect │ │ │ │ ├── issue_29982.dart.weak.modular.expect │ │ │ │ ├── issue_29982.dart.weak.outline.expect │ │ │ │ ├── issue_29982.dart.weak.transformed.expect │ │ │ │ ├── issue_29983.dart │ │ │ │ ├── issue_29983.dart.strong.expect │ │ │ │ ├── issue_29983.dart.strong.transformed.expect │ │ │ │ ├── issue_29983.dart.textual_outline.expect │ │ │ │ ├── issue_29983.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29983.dart.weak.expect │ │ │ │ ├── issue_29983.dart.weak.modular.expect │ │ │ │ ├── issue_29983.dart.weak.outline.expect │ │ │ │ ├── issue_29983.dart.weak.transformed.expect │ │ │ │ ├── issue_29984.dart │ │ │ │ ├── issue_29984.dart.strong.expect │ │ │ │ ├── issue_29984.dart.strong.transformed.expect │ │ │ │ ├── issue_29984.dart.textual_outline.expect │ │ │ │ ├── issue_29984.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29984.dart.weak.expect │ │ │ │ ├── issue_29984.dart.weak.modular.expect │ │ │ │ ├── issue_29984.dart.weak.outline.expect │ │ │ │ ├── issue_29984.dart.weak.transformed.expect │ │ │ │ ├── issue_29985.dart │ │ │ │ ├── issue_29985.dart.strong.expect │ │ │ │ ├── issue_29985.dart.strong.transformed.expect │ │ │ │ ├── issue_29985.dart.weak.expect │ │ │ │ ├── issue_29985.dart.weak.modular.expect │ │ │ │ ├── issue_29985.dart.weak.outline.expect │ │ │ │ ├── issue_29985.dart.weak.transformed.expect │ │ │ │ ├── issue_29986.dart │ │ │ │ ├── issue_29986.dart.strong.expect │ │ │ │ ├── issue_29986.dart.strong.transformed.expect │ │ │ │ ├── issue_29986.dart.textual_outline.expect │ │ │ │ ├── issue_29986.dart.weak.expect │ │ │ │ ├── issue_29986.dart.weak.modular.expect │ │ │ │ ├── issue_29986.dart.weak.outline.expect │ │ │ │ ├── issue_29986.dart.weak.transformed.expect │ │ │ │ ├── issue_29987.dart │ │ │ │ ├── issue_29987.dart.strong.expect │ │ │ │ ├── issue_29987.dart.strong.transformed.expect │ │ │ │ ├── issue_29987.dart.textual_outline.expect │ │ │ │ ├── issue_29987.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_29987.dart.weak.expect │ │ │ │ ├── issue_29987.dart.weak.modular.expect │ │ │ │ ├── issue_29987.dart.weak.outline.expect │ │ │ │ ├── issue_29987.dart.weak.transformed.expect │ │ │ │ ├── issue_30834.dart │ │ │ │ ├── issue_30834.dart.strong.expect │ │ │ │ ├── issue_30834.dart.strong.transformed.expect │ │ │ │ ├── issue_30834.dart.textual_outline.expect │ │ │ │ ├── issue_30834.dart.weak.expect │ │ │ │ ├── issue_30834.dart.weak.modular.expect │ │ │ │ ├── issue_30834.dart.weak.outline.expect │ │ │ │ ├── issue_30834.dart.weak.transformed.expect │ │ │ │ ├── issue_30836.dart │ │ │ │ ├── issue_30836.dart.strong.expect │ │ │ │ ├── issue_30836.dart.strong.transformed.expect │ │ │ │ ├── issue_30836.dart.textual_outline.expect │ │ │ │ ├── issue_30836.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_30836.dart.weak.expect │ │ │ │ ├── issue_30836.dart.weak.modular.expect │ │ │ │ ├── issue_30836.dart.weak.outline.expect │ │ │ │ ├── issue_30836.dart.weak.transformed.expect │ │ │ │ ├── issue_30838.dart │ │ │ │ ├── issue_30838.dart.strong.expect │ │ │ │ ├── issue_30838.dart.strong.transformed.expect │ │ │ │ ├── issue_30838.dart.textual_outline.expect │ │ │ │ ├── issue_30838.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_30838.dart.weak.expect │ │ │ │ ├── issue_30838.dart.weak.modular.expect │ │ │ │ ├── issue_30838.dart.weak.outline.expect │ │ │ │ ├── issue_30838.dart.weak.transformed.expect │ │ │ │ ├── issue_30981.dart │ │ │ │ ├── issue_30981.dart.strong.expect │ │ │ │ ├── issue_30981.dart.strong.transformed.expect │ │ │ │ ├── issue_30981.dart.textual_outline.expect │ │ │ │ ├── issue_30981.dart.weak.expect │ │ │ │ ├── issue_30981.dart.weak.modular.expect │ │ │ │ ├── issue_30981.dart.weak.outline.expect │ │ │ │ ├── issue_30981.dart.weak.transformed.expect │ │ │ │ ├── issue_30994.dart │ │ │ │ ├── issue_30994.dart.strong.expect │ │ │ │ ├── issue_30994.dart.strong.transformed.expect │ │ │ │ ├── issue_30994.dart.textual_outline.expect │ │ │ │ ├── issue_30994.dart.weak.expect │ │ │ │ ├── issue_30994.dart.weak.modular.expect │ │ │ │ ├── issue_30994.dart.weak.outline.expect │ │ │ │ ├── issue_30994.dart.weak.transformed.expect │ │ │ │ ├── issue_31155.dart │ │ │ │ ├── issue_31155.dart.strong.expect │ │ │ │ ├── issue_31155.dart.strong.transformed.expect │ │ │ │ ├── issue_31155.dart.textual_outline.expect │ │ │ │ ├── issue_31155.dart.weak.expect │ │ │ │ ├── issue_31155.dart.weak.modular.expect │ │ │ │ ├── issue_31155.dart.weak.outline.expect │ │ │ │ ├── issue_31155.dart.weak.transformed.expect │ │ │ │ ├── issue_31157.dart │ │ │ │ ├── issue_31157.dart.strong.expect │ │ │ │ ├── issue_31157.dart.strong.transformed.expect │ │ │ │ ├── issue_31157.dart.textual_outline.expect │ │ │ │ ├── issue_31157.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31157.dart.weak.expect │ │ │ │ ├── issue_31157.dart.weak.modular.expect │ │ │ │ ├── issue_31157.dart.weak.outline.expect │ │ │ │ ├── issue_31157.dart.weak.transformed.expect │ │ │ │ ├── issue_31171.dart │ │ │ │ ├── issue_31171.dart.strong.expect │ │ │ │ ├── issue_31171.dart.strong.transformed.expect │ │ │ │ ├── issue_31171.dart.textual_outline.expect │ │ │ │ ├── issue_31171.dart.weak.expect │ │ │ │ ├── issue_31171.dart.weak.modular.expect │ │ │ │ ├── issue_31171.dart.weak.outline.expect │ │ │ │ ├── issue_31171.dart.weak.transformed.expect │ │ │ │ ├── issue_31180.dart │ │ │ │ ├── issue_31180.dart.strong.expect │ │ │ │ ├── issue_31180.dart.strong.transformed.expect │ │ │ │ ├── issue_31180.dart.textual_outline.expect │ │ │ │ ├── issue_31180.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31180.dart.weak.expect │ │ │ │ ├── issue_31180.dart.weak.modular.expect │ │ │ │ ├── issue_31180.dart.weak.outline.expect │ │ │ │ ├── issue_31180.dart.weak.transformed.expect │ │ │ │ ├── issue_31180_2.dart │ │ │ │ ├── issue_31180_2.dart.strong.expect │ │ │ │ ├── issue_31180_2.dart.strong.transformed.expect │ │ │ │ ├── issue_31180_2.dart.textual_outline.expect │ │ │ │ ├── issue_31180_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31180_2.dart.weak.expect │ │ │ │ ├── issue_31180_2.dart.weak.modular.expect │ │ │ │ ├── issue_31180_2.dart.weak.outline.expect │ │ │ │ ├── issue_31180_2.dart.weak.transformed.expect │ │ │ │ ├── issue_31181.dart │ │ │ │ ├── issue_31181.dart.strong.expect │ │ │ │ ├── issue_31181.dart.strong.transformed.expect │ │ │ │ ├── issue_31181.dart.textual_outline.expect │ │ │ │ ├── issue_31181.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31181.dart.weak.expect │ │ │ │ ├── issue_31181.dart.weak.modular.expect │ │ │ │ ├── issue_31181.dart.weak.outline.expect │ │ │ │ ├── issue_31181.dart.weak.transformed.expect │ │ │ │ ├── issue_31183.dart │ │ │ │ ├── issue_31183.dart.strong.expect │ │ │ │ ├── issue_31183.dart.strong.transformed.expect │ │ │ │ ├── issue_31183.dart.textual_outline.expect │ │ │ │ ├── issue_31183.dart.weak.expect │ │ │ │ ├── issue_31183.dart.weak.modular.expect │ │ │ │ ├── issue_31183.dart.weak.outline.expect │ │ │ │ ├── issue_31183.dart.weak.transformed.expect │ │ │ │ ├── issue_31184.dart │ │ │ │ ├── issue_31184.dart.strong.expect │ │ │ │ ├── issue_31184.dart.strong.transformed.expect │ │ │ │ ├── issue_31184.dart.textual_outline.expect │ │ │ │ ├── issue_31184.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31184.dart.weak.expect │ │ │ │ ├── issue_31184.dart.weak.modular.expect │ │ │ │ ├── issue_31184.dart.weak.outline.expect │ │ │ │ ├── issue_31184.dart.weak.transformed.expect │ │ │ │ ├── issue_31185.dart │ │ │ │ ├── issue_31185.dart.strong.expect │ │ │ │ ├── issue_31185.dart.strong.transformed.expect │ │ │ │ ├── issue_31185.dart.textual_outline.expect │ │ │ │ ├── issue_31185.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31185.dart.weak.expect │ │ │ │ ├── issue_31185.dart.weak.modular.expect │ │ │ │ ├── issue_31185.dart.weak.outline.expect │ │ │ │ ├── issue_31185.dart.weak.transformed.expect │ │ │ │ ├── issue_31186.dart │ │ │ │ ├── issue_31186.dart.strong.expect │ │ │ │ ├── issue_31186.dart.strong.transformed.expect │ │ │ │ ├── issue_31186.dart.textual_outline.expect │ │ │ │ ├── issue_31186.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31186.dart.weak.expect │ │ │ │ ├── issue_31186.dart.weak.modular.expect │ │ │ │ ├── issue_31186.dart.weak.outline.expect │ │ │ │ ├── issue_31186.dart.weak.transformed.expect │ │ │ │ ├── issue_31187.dart │ │ │ │ ├── issue_31187.dart.strong.expect │ │ │ │ ├── issue_31187.dart.strong.transformed.expect │ │ │ │ ├── issue_31187.dart.textual_outline.expect │ │ │ │ ├── issue_31187.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31187.dart.weak.expect │ │ │ │ ├── issue_31187.dart.weak.modular.expect │ │ │ │ ├── issue_31187.dart.weak.outline.expect │ │ │ │ ├── issue_31187.dart.weak.transformed.expect │ │ │ │ ├── issue_31188.dart │ │ │ │ ├── issue_31188.dart.strong.expect │ │ │ │ ├── issue_31188.dart.strong.transformed.expect │ │ │ │ ├── issue_31188.dart.textual_outline.expect │ │ │ │ ├── issue_31188.dart.weak.expect │ │ │ │ ├── issue_31188.dart.weak.modular.expect │ │ │ │ ├── issue_31188.dart.weak.outline.expect │ │ │ │ ├── issue_31188.dart.weak.transformed.expect │ │ │ │ ├── issue_31188_2.dart │ │ │ │ ├── issue_31188_2.dart.strong.expect │ │ │ │ ├── issue_31188_2.dart.strong.transformed.expect │ │ │ │ ├── issue_31188_2.dart.textual_outline.expect │ │ │ │ ├── issue_31188_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31188_2.dart.weak.expect │ │ │ │ ├── issue_31188_2.dart.weak.modular.expect │ │ │ │ ├── issue_31188_2.dart.weak.outline.expect │ │ │ │ ├── issue_31188_2.dart.weak.transformed.expect │ │ │ │ ├── issue_31190.dart │ │ │ │ ├── issue_31190.dart.strong.expect │ │ │ │ ├── issue_31190.dart.strong.transformed.expect │ │ │ │ ├── issue_31190.dart.textual_outline.expect │ │ │ │ ├── issue_31190.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31190.dart.weak.expect │ │ │ │ ├── issue_31190.dart.weak.modular.expect │ │ │ │ ├── issue_31190.dart.weak.outline.expect │ │ │ │ ├── issue_31190.dart.weak.transformed.expect │ │ │ │ ├── issue_31192.dart │ │ │ │ ├── issue_31192.dart.strong.expect │ │ │ │ ├── issue_31192.dart.strong.transformed.expect │ │ │ │ ├── issue_31192.dart.textual_outline.expect │ │ │ │ ├── issue_31192.dart.weak.expect │ │ │ │ ├── issue_31192.dart.weak.modular.expect │ │ │ │ ├── issue_31192.dart.weak.outline.expect │ │ │ │ ├── issue_31192.dart.weak.transformed.expect │ │ │ │ ├── issue_31198.dart │ │ │ │ ├── issue_31198.dart.strong.expect │ │ │ │ ├── issue_31198.dart.strong.transformed.expect │ │ │ │ ├── issue_31198.dart.textual_outline.expect │ │ │ │ ├── issue_31198.dart.weak.expect │ │ │ │ ├── issue_31198.dart.weak.modular.expect │ │ │ │ ├── issue_31198.dart.weak.outline.expect │ │ │ │ ├── issue_31198.dart.weak.transformed.expect │ │ │ │ ├── issue_31213.dart │ │ │ │ ├── issue_31213.dart.strong.expect │ │ │ │ ├── issue_31213.dart.strong.transformed.expect │ │ │ │ ├── issue_31213.dart.textual_outline.expect │ │ │ │ ├── issue_31213.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31213.dart.weak.expect │ │ │ │ ├── issue_31213.dart.weak.modular.expect │ │ │ │ ├── issue_31213.dart.weak.outline.expect │ │ │ │ ├── issue_31213.dart.weak.transformed.expect │ │ │ │ ├── issue_31299.dart │ │ │ │ ├── issue_31299.dart.strong.expect │ │ │ │ ├── issue_31299.dart.strong.transformed.expect │ │ │ │ ├── issue_31299.dart.textual_outline.expect │ │ │ │ ├── issue_31299.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31299.dart.weak.expect │ │ │ │ ├── issue_31299.dart.weak.modular.expect │ │ │ │ ├── issue_31299.dart.weak.outline.expect │ │ │ │ ├── issue_31299.dart.weak.transformed.expect │ │ │ │ ├── issue_31766.dart │ │ │ │ ├── issue_31766.dart.strong.expect │ │ │ │ ├── issue_31766.dart.strong.transformed.expect │ │ │ │ ├── issue_31766.dart.textual_outline.expect │ │ │ │ ├── issue_31766.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31766.dart.weak.expect │ │ │ │ ├── issue_31766.dart.weak.modular.expect │ │ │ │ ├── issue_31766.dart.weak.outline.expect │ │ │ │ ├── issue_31766.dart.weak.transformed.expect │ │ │ │ ├── issue_31846.dart │ │ │ │ ├── issue_31846.dart.strong.expect │ │ │ │ ├── issue_31846.dart.strong.transformed.expect │ │ │ │ ├── issue_31846.dart.textual_outline.expect │ │ │ │ ├── issue_31846.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31846.dart.weak.expect │ │ │ │ ├── issue_31846.dart.weak.modular.expect │ │ │ │ ├── issue_31846.dart.weak.outline.expect │ │ │ │ ├── issue_31846.dart.weak.transformed.expect │ │ │ │ ├── issue_31996.dart │ │ │ │ ├── issue_31996.dart.strong.expect │ │ │ │ ├── issue_31996.dart.strong.transformed.expect │ │ │ │ ├── issue_31996.dart.textual_outline.expect │ │ │ │ ├── issue_31996.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_31996.dart.weak.expect │ │ │ │ ├── issue_31996.dart.weak.modular.expect │ │ │ │ ├── issue_31996.dart.weak.outline.expect │ │ │ │ ├── issue_31996.dart.weak.transformed.expect │ │ │ │ ├── issue_32182.dart │ │ │ │ ├── issue_32182.dart.strong.expect │ │ │ │ ├── issue_32182.dart.strong.transformed.expect │ │ │ │ ├── issue_32182.dart.textual_outline.expect │ │ │ │ ├── issue_32182.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_32182.dart.weak.expect │ │ │ │ ├── issue_32182.dart.weak.modular.expect │ │ │ │ ├── issue_32182.dart.weak.outline.expect │ │ │ │ ├── issue_32182.dart.weak.transformed.expect │ │ │ │ ├── issue_32196.dart │ │ │ │ ├── issue_32196.dart.strong.expect │ │ │ │ ├── issue_32196.dart.strong.transformed.expect │ │ │ │ ├── issue_32196.dart.textual_outline.expect │ │ │ │ ├── issue_32196.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_32196.dart.weak.expect │ │ │ │ ├── issue_32196.dart.weak.modular.expect │ │ │ │ ├── issue_32196.dart.weak.outline.expect │ │ │ │ ├── issue_32196.dart.weak.transformed.expect │ │ │ │ ├── issue_32200.dart │ │ │ │ ├── issue_32200.dart.strong.expect │ │ │ │ ├── issue_32200.dart.strong.transformed.expect │ │ │ │ ├── issue_32200.dart.textual_outline.expect │ │ │ │ ├── issue_32200.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_32200.dart.weak.expect │ │ │ │ ├── issue_32200.dart.weak.modular.expect │ │ │ │ ├── issue_32200.dart.weak.outline.expect │ │ │ │ ├── issue_32200.dart.weak.transformed.expect │ │ │ │ ├── issue_32660.dart │ │ │ │ ├── issue_32660.dart.strong.expect │ │ │ │ ├── issue_32660.dart.strong.transformed.expect │ │ │ │ ├── issue_32660.dart.textual_outline.expect │ │ │ │ ├── issue_32660.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_32660.dart.weak.expect │ │ │ │ ├── issue_32660.dart.weak.modular.expect │ │ │ │ ├── issue_32660.dart.weak.outline.expect │ │ │ │ ├── issue_32660.dart.weak.transformed.expect │ │ │ │ ├── issue_32972.dart │ │ │ │ ├── issue_32972.dart.strong.expect │ │ │ │ ├── issue_32972.dart.strong.transformed.expect │ │ │ │ ├── issue_32972.dart.textual_outline.expect │ │ │ │ ├── issue_32972.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_32972.dart.weak.expect │ │ │ │ ├── issue_32972.dart.weak.modular.expect │ │ │ │ ├── issue_32972.dart.weak.outline.expect │ │ │ │ ├── issue_32972.dart.weak.transformed.expect │ │ │ │ ├── issue_33452.dart │ │ │ │ ├── issue_33452.dart.strong.expect │ │ │ │ ├── issue_33452.dart.strong.transformed.expect │ │ │ │ ├── issue_33452.dart.textual_outline.expect │ │ │ │ ├── issue_33452.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_33452.dart.weak.expect │ │ │ │ ├── issue_33452.dart.weak.modular.expect │ │ │ │ ├── issue_33452.dart.weak.outline.expect │ │ │ │ ├── issue_33452.dart.weak.transformed.expect │ │ │ │ ├── issue_33672.dart │ │ │ │ ├── issue_33672.dart.strong.expect │ │ │ │ ├── issue_33672.dart.strong.transformed.expect │ │ │ │ ├── issue_33672.dart.textual_outline.expect │ │ │ │ ├── issue_33672.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_33672.dart.weak.expect │ │ │ │ ├── issue_33672.dart.weak.modular.expect │ │ │ │ ├── issue_33672.dart.weak.outline.expect │ │ │ │ ├── issue_33672.dart.weak.transformed.expect │ │ │ │ ├── issue_34225.dart │ │ │ │ ├── issue_34225.dart.strong.expect │ │ │ │ ├── issue_34225.dart.strong.transformed.expect │ │ │ │ ├── issue_34225.dart.textual_outline.expect │ │ │ │ ├── issue_34225.dart.weak.expect │ │ │ │ ├── issue_34225.dart.weak.modular.expect │ │ │ │ ├── issue_34225.dart.weak.outline.expect │ │ │ │ ├── issue_34225.dart.weak.transformed.expect │ │ │ │ ├── issue_34291.dart │ │ │ │ ├── issue_34291.dart.strong.expect │ │ │ │ ├── issue_34291.dart.strong.transformed.expect │ │ │ │ ├── issue_34291.dart.textual_outline.expect │ │ │ │ ├── issue_34291.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_34291.dart.weak.expect │ │ │ │ ├── issue_34291.dart.weak.modular.expect │ │ │ │ ├── issue_34291.dart.weak.outline.expect │ │ │ │ ├── issue_34291.dart.weak.transformed.expect │ │ │ │ ├── issue_34291_lib.dart │ │ │ │ ├── issue_34403.dart │ │ │ │ ├── issue_34403.dart.strong.expect │ │ │ │ ├── issue_34403.dart.strong.transformed.expect │ │ │ │ ├── issue_34403.dart.textual_outline.expect │ │ │ │ ├── issue_34403.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_34403.dart.weak.expect │ │ │ │ ├── issue_34403.dart.weak.modular.expect │ │ │ │ ├── issue_34403.dart.weak.outline.expect │ │ │ │ ├── issue_34403.dart.weak.transformed.expect │ │ │ │ ├── issue_34403_2.dart │ │ │ │ ├── issue_34403_2.dart.strong.expect │ │ │ │ ├── issue_34403_2.dart.strong.transformed.expect │ │ │ │ ├── issue_34403_2.dart.textual_outline.expect │ │ │ │ ├── issue_34403_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_34403_2.dart.weak.expect │ │ │ │ ├── issue_34403_2.dart.weak.modular.expect │ │ │ │ ├── issue_34403_2.dart.weak.outline.expect │ │ │ │ ├── issue_34403_2.dart.weak.transformed.expect │ │ │ │ ├── issue_34403_2_lib.dart │ │ │ │ ├── issue_34403_lib.dart │ │ │ │ ├── issue_34498.dart │ │ │ │ ├── issue_34498.dart.strong.expect │ │ │ │ ├── issue_34498.dart.strong.transformed.expect │ │ │ │ ├── issue_34498.dart.textual_outline.expect │ │ │ │ ├── issue_34498.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_34498.dart.weak.expect │ │ │ │ ├── issue_34498.dart.weak.modular.expect │ │ │ │ ├── issue_34498.dart.weak.outline.expect │ │ │ │ ├── issue_34498.dart.weak.transformed.expect │ │ │ │ ├── issue_34498_lib.dart │ │ │ │ ├── issue_34563.dart │ │ │ │ ├── issue_34563.dart.strong.expect │ │ │ │ ├── issue_34563.dart.strong.transformed.expect │ │ │ │ ├── issue_34563.dart.textual_outline.expect │ │ │ │ ├── issue_34563.dart.weak.expect │ │ │ │ ├── issue_34563.dart.weak.modular.expect │ │ │ │ ├── issue_34563.dart.weak.outline.expect │ │ │ │ ├── issue_34563.dart.weak.transformed.expect │ │ │ │ ├── issue_34610.dart │ │ │ │ ├── issue_34610.dart.strong.expect │ │ │ │ ├── issue_34610.dart.strong.transformed.expect │ │ │ │ ├── issue_34610.dart.textual_outline.expect │ │ │ │ ├── issue_34610.dart.weak.expect │ │ │ │ ├── issue_34610.dart.weak.modular.expect │ │ │ │ ├── issue_34610.dart.weak.outline.expect │ │ │ │ ├── issue_34610.dart.weak.transformed.expect │ │ │ │ ├── issue_34614.dart │ │ │ │ ├── issue_34614.dart.strong.expect │ │ │ │ ├── issue_34614.dart.strong.transformed.expect │ │ │ │ ├── issue_34614.dart.textual_outline.expect │ │ │ │ ├── issue_34614.dart.weak.expect │ │ │ │ ├── issue_34614.dart.weak.modular.expect │ │ │ │ ├── issue_34614.dart.weak.outline.expect │ │ │ │ ├── issue_34614.dart.weak.transformed.expect │ │ │ │ ├── issue_34850.dart │ │ │ │ ├── issue_34850.dart.strong.expect │ │ │ │ ├── issue_34850.dart.strong.transformed.expect │ │ │ │ ├── issue_34850.dart.textual_outline.expect │ │ │ │ ├── issue_34850.dart.weak.expect │ │ │ │ ├── issue_34850.dart.weak.modular.expect │ │ │ │ ├── issue_34850.dart.weak.outline.expect │ │ │ │ ├── issue_34850.dart.weak.transformed.expect │ │ │ │ ├── issue_35151.dart │ │ │ │ ├── issue_35151.dart.strong.expect │ │ │ │ ├── issue_35151.dart.strong.transformed.expect │ │ │ │ ├── issue_35151.dart.textual_outline.expect │ │ │ │ ├── issue_35151.dart.weak.expect │ │ │ │ ├── issue_35151.dart.weak.modular.expect │ │ │ │ ├── issue_35151.dart.weak.outline.expect │ │ │ │ ├── issue_35151.dart.weak.transformed.expect │ │ │ │ ├── issue_35177.dart │ │ │ │ ├── issue_35177.dart.strong.expect │ │ │ │ ├── issue_35177.dart.strong.transformed.expect │ │ │ │ ├── issue_35177.dart.textual_outline.expect │ │ │ │ ├── issue_35177.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35177.dart.weak.expect │ │ │ │ ├── issue_35177.dart.weak.modular.expect │ │ │ │ ├── issue_35177.dart.weak.outline.expect │ │ │ │ ├── issue_35177.dart.weak.transformed.expect │ │ │ │ ├── issue_35213.dart │ │ │ │ ├── issue_35213.dart.strong.expect │ │ │ │ ├── issue_35213.dart.strong.transformed.expect │ │ │ │ ├── issue_35213.dart.textual_outline.expect │ │ │ │ ├── issue_35213.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35213.dart.weak.expect │ │ │ │ ├── issue_35213.dart.weak.modular.expect │ │ │ │ ├── issue_35213.dart.weak.outline.expect │ │ │ │ ├── issue_35213.dart.weak.transformed.expect │ │ │ │ ├── issue_35220.dart │ │ │ │ ├── issue_35220.dart.strong.expect │ │ │ │ ├── issue_35220.dart.strong.transformed.expect │ │ │ │ ├── issue_35220.dart.textual_outline.expect │ │ │ │ ├── issue_35220.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35220.dart.weak.expect │ │ │ │ ├── issue_35220.dart.weak.modular.expect │ │ │ │ ├── issue_35220.dart.weak.outline.expect │ │ │ │ ├── issue_35220.dart.weak.transformed.expect │ │ │ │ ├── issue_35258.dart │ │ │ │ ├── issue_35258.dart.strong.expect │ │ │ │ ├── issue_35258.dart.strong.transformed.expect │ │ │ │ ├── issue_35258.dart.textual_outline.expect │ │ │ │ ├── issue_35258.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35258.dart.weak.expect │ │ │ │ ├── issue_35258.dart.weak.modular.expect │ │ │ │ ├── issue_35258.dart.weak.outline.expect │ │ │ │ ├── issue_35258.dart.weak.transformed.expect │ │ │ │ ├── issue_35259.dart │ │ │ │ ├── issue_35259.dart.strong.expect │ │ │ │ ├── issue_35259.dart.strong.transformed.expect │ │ │ │ ├── issue_35259.dart.textual_outline.expect │ │ │ │ ├── issue_35259.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35259.dart.weak.expect │ │ │ │ ├── issue_35259.dart.weak.modular.expect │ │ │ │ ├── issue_35259.dart.weak.outline.expect │ │ │ │ ├── issue_35259.dart.weak.transformed.expect │ │ │ │ ├── issue_35260.dart │ │ │ │ ├── issue_35260.dart.strong.expect │ │ │ │ ├── issue_35260.dart.strong.transformed.expect │ │ │ │ ├── issue_35260.dart.textual_outline.expect │ │ │ │ ├── issue_35260.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35260.dart.weak.expect │ │ │ │ ├── issue_35260.dart.weak.modular.expect │ │ │ │ ├── issue_35260.dart.weak.outline.expect │ │ │ │ ├── issue_35260.dart.weak.transformed.expect │ │ │ │ ├── issue_35266.dart │ │ │ │ ├── issue_35266.dart.strong.expect │ │ │ │ ├── issue_35266.dart.strong.transformed.expect │ │ │ │ ├── issue_35266.dart.textual_outline.expect │ │ │ │ ├── issue_35266.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_35266.dart.weak.expect │ │ │ │ ├── issue_35266.dart.weak.modular.expect │ │ │ │ ├── issue_35266.dart.weak.outline.expect │ │ │ │ ├── issue_35266.dart.weak.transformed.expect │ │ │ │ ├── issue_35900.dart │ │ │ │ ├── issue_35900.dart.strong.expect │ │ │ │ ├── issue_35900.dart.strong.transformed.expect │ │ │ │ ├── issue_35900.dart.weak.expect │ │ │ │ ├── issue_35900.dart.weak.modular.expect │ │ │ │ ├── issue_35900.dart.weak.outline.expect │ │ │ │ ├── issue_35900.dart.weak.transformed.expect │ │ │ │ ├── issue_36400.dart │ │ │ │ ├── issue_36400.dart.strong.expect │ │ │ │ ├── issue_36400.dart.strong.transformed.expect │ │ │ │ ├── issue_36400.dart.textual_outline.expect │ │ │ │ ├── issue_36400.dart.weak.expect │ │ │ │ ├── issue_36400.dart.weak.modular.expect │ │ │ │ ├── issue_36400.dart.weak.outline.expect │ │ │ │ ├── issue_36400.dart.weak.transformed.expect │ │ │ │ ├── issue_36647.dart │ │ │ │ ├── issue_36647.dart.strong.expect │ │ │ │ ├── issue_36647.dart.strong.transformed.expect │ │ │ │ ├── issue_36647.dart.textual_outline.expect │ │ │ │ ├── issue_36647.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_36647.dart.weak.expect │ │ │ │ ├── issue_36647.dart.weak.modular.expect │ │ │ │ ├── issue_36647.dart.weak.outline.expect │ │ │ │ ├── issue_36647.dart.weak.transformed.expect │ │ │ │ ├── issue_36647_2.dart │ │ │ │ ├── issue_36647_2.dart.strong.expect │ │ │ │ ├── issue_36647_2.dart.strong.transformed.expect │ │ │ │ ├── issue_36647_2.dart.textual_outline.expect │ │ │ │ ├── issue_36647_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_36647_2.dart.weak.expect │ │ │ │ ├── issue_36647_2.dart.weak.modular.expect │ │ │ │ ├── issue_36647_2.dart.weak.outline.expect │ │ │ │ ├── issue_36647_2.dart.weak.transformed.expect │ │ │ │ ├── issue_36647_2_lib1.dart │ │ │ │ ├── issue_36647_lib1.dart │ │ │ │ ├── issue_36647_lib2.dart │ │ │ │ ├── issue_36669.dart │ │ │ │ ├── issue_36669.dart.strong.expect │ │ │ │ ├── issue_36669.dart.strong.transformed.expect │ │ │ │ ├── issue_36669.dart.textual_outline.expect │ │ │ │ ├── issue_36669.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_36669.dart.weak.expect │ │ │ │ ├── issue_36669.dart.weak.modular.expect │ │ │ │ ├── issue_36669.dart.weak.outline.expect │ │ │ │ ├── issue_36669.dart.weak.transformed.expect │ │ │ │ ├── issue_36793.dart │ │ │ │ ├── issue_36793.dart.strong.expect │ │ │ │ ├── issue_36793.dart.strong.transformed.expect │ │ │ │ ├── issue_36793.dart.textual_outline.expect │ │ │ │ ├── issue_36793.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_36793.dart.weak.expect │ │ │ │ ├── issue_36793.dart.weak.modular.expect │ │ │ │ ├── issue_36793.dart.weak.outline.expect │ │ │ │ ├── issue_36793.dart.weak.transformed.expect │ │ │ │ ├── issue_37285.dart │ │ │ │ ├── issue_37285.dart.strong.expect │ │ │ │ ├── issue_37285.dart.strong.transformed.expect │ │ │ │ ├── issue_37285.dart.textual_outline.expect │ │ │ │ ├── issue_37285.dart.weak.expect │ │ │ │ ├── issue_37285.dart.weak.modular.expect │ │ │ │ ├── issue_37285.dart.weak.outline.expect │ │ │ │ ├── issue_37285.dart.weak.transformed.expect │ │ │ │ ├── issue_37681.dart │ │ │ │ ├── issue_37681.dart.strong.expect │ │ │ │ ├── issue_37681.dart.strong.transformed.expect │ │ │ │ ├── issue_37681.dart.textual_outline.expect │ │ │ │ ├── issue_37681.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_37681.dart.weak.expect │ │ │ │ ├── issue_37681.dart.weak.modular.expect │ │ │ │ ├── issue_37681.dart.weak.outline.expect │ │ │ │ ├── issue_37681.dart.weak.transformed.expect │ │ │ │ ├── issue_39035.crash_dart │ │ │ │ ├── issue_39035.crash_dart.strong.expect │ │ │ │ ├── issue_39035.crash_dart.strong.transformed.expect │ │ │ │ ├── issue_39035.crash_dart.weak.expect │ │ │ │ ├── issue_39035.crash_dart.weak.modular.expect │ │ │ │ ├── issue_39035.crash_dart.weak.outline.expect │ │ │ │ ├── issue_39035.crash_dart.weak.transformed.expect │ │ │ │ ├── issue_39040.dart │ │ │ │ ├── issue_39040.dart.strong.expect │ │ │ │ ├── issue_39040.dart.strong.transformed.expect │ │ │ │ ├── issue_39040.dart.textual_outline.expect │ │ │ │ ├── issue_39040.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_39040.dart.weak.expect │ │ │ │ ├── issue_39040.dart.weak.modular.expect │ │ │ │ ├── issue_39040.dart.weak.outline.expect │ │ │ │ ├── issue_39040.dart.weak.transformed.expect │ │ │ │ ├── issue_39091_1.dart │ │ │ │ ├── issue_39091_1.dart.strong.expect │ │ │ │ ├── issue_39091_1.dart.strong.transformed.expect │ │ │ │ ├── issue_39091_1.dart.textual_outline.expect │ │ │ │ ├── issue_39091_1.dart.weak.expect │ │ │ │ ├── issue_39091_1.dart.weak.modular.expect │ │ │ │ ├── issue_39091_1.dart.weak.outline.expect │ │ │ │ ├── issue_39091_1.dart.weak.transformed.expect │ │ │ │ ├── issue_39091_2.dart │ │ │ │ ├── issue_39091_2.dart.strong.expect │ │ │ │ ├── issue_39091_2.dart.strong.transformed.expect │ │ │ │ ├── issue_39091_2.dart.weak.expect │ │ │ │ ├── issue_39091_2.dart.weak.modular.expect │ │ │ │ ├── issue_39091_2.dart.weak.outline.expect │ │ │ │ ├── issue_39091_2.dart.weak.transformed.expect │ │ │ │ ├── issue_39682.dart │ │ │ │ ├── issue_39682.dart.strong.expect │ │ │ │ ├── issue_39682.dart.strong.transformed.expect │ │ │ │ ├── issue_39682.dart.textual_outline.expect │ │ │ │ ├── issue_39682.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_39682.dart.weak.expect │ │ │ │ ├── issue_39682.dart.weak.modular.expect │ │ │ │ ├── issue_39682.dart.weak.outline.expect │ │ │ │ ├── issue_39682.dart.weak.transformed.expect │ │ │ │ ├── issue_39682_lib.dart │ │ │ │ ├── issue_41265.crash_dart │ │ │ │ ├── issue_41265.crash_dart.strong.expect │ │ │ │ ├── issue_41265.crash_dart.strong.transformed.expect │ │ │ │ ├── issue_41265.crash_dart.textual_outline.expect │ │ │ │ ├── issue_41265.crash_dart.weak.expect │ │ │ │ ├── issue_41265.crash_dart.weak.modular.expect │ │ │ │ ├── issue_41265.crash_dart.weak.outline.expect │ │ │ │ ├── issue_41265.crash_dart.weak.transformed.expect │ │ │ │ ├── issue_42423.dart │ │ │ │ ├── issue_42423.dart.strong.expect │ │ │ │ ├── issue_42423.dart.strong.transformed.expect │ │ │ │ ├── issue_42423.dart.textual_outline.expect │ │ │ │ ├── issue_42423.dart.textual_outline_modelled.expect │ │ │ │ ├── issue_42423.dart.weak.expect │ │ │ │ ├── issue_42423.dart.weak.modular.expect │ │ │ │ ├── issue_42423.dart.weak.outline.expect │ │ │ │ ├── issue_42423.dart.weak.transformed.expect │ │ │ │ ├── utf_16_le_content.crash_dart │ │ │ │ ├── utf_16_le_content.crash_dart.strong.expect │ │ │ │ ├── utf_16_le_content.crash_dart.strong.transformed.expect │ │ │ │ ├── utf_16_le_content.crash_dart.weak.expect │ │ │ │ ├── utf_16_le_content.crash_dart.weak.modular.expect │ │ │ │ ├── utf_16_le_content.crash_dart.weak.outline.expect │ │ │ │ └── utf_16_le_content.crash_dart.weak.transformed.expect │ │ │ ├── runtime_checks │ │ │ │ ├── call_kinds.dart │ │ │ │ ├── call_kinds.dart.strong.expect │ │ │ │ ├── call_kinds.dart.strong.transformed.expect │ │ │ │ ├── call_kinds.dart.textual_outline.expect │ │ │ │ ├── call_kinds.dart.textual_outline_modelled.expect │ │ │ │ ├── call_kinds.dart.weak.expect │ │ │ │ ├── call_kinds.dart.weak.modular.expect │ │ │ │ ├── call_kinds.dart.weak.outline.expect │ │ │ │ ├── call_kinds.dart.weak.transformed.expect │ │ │ │ ├── call_kinds_get.dart │ │ │ │ ├── call_kinds_get.dart.strong.expect │ │ │ │ ├── call_kinds_get.dart.strong.transformed.expect │ │ │ │ ├── call_kinds_get.dart.textual_outline.expect │ │ │ │ ├── call_kinds_get.dart.textual_outline_modelled.expect │ │ │ │ ├── call_kinds_get.dart.weak.expect │ │ │ │ ├── call_kinds_get.dart.weak.modular.expect │ │ │ │ ├── call_kinds_get.dart.weak.outline.expect │ │ │ │ ├── call_kinds_get.dart.weak.transformed.expect │ │ │ │ ├── call_kinds_set.dart │ │ │ │ ├── call_kinds_set.dart.strong.expect │ │ │ │ ├── call_kinds_set.dart.strong.transformed.expect │ │ │ │ ├── call_kinds_set.dart.textual_outline.expect │ │ │ │ ├── call_kinds_set.dart.textual_outline_modelled.expect │ │ │ │ ├── call_kinds_set.dart.weak.expect │ │ │ │ ├── call_kinds_set.dart.weak.modular.expect │ │ │ │ ├── call_kinds_set.dart.weak.outline.expect │ │ │ │ ├── call_kinds_set.dart.weak.transformed.expect │ │ │ │ ├── call_method_implicit_tear_off.dart │ │ │ │ ├── call_method_implicit_tear_off.dart.strong.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.strong.transformed.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.textual_outline.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.weak.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.weak.modular.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.weak.outline.expect │ │ │ │ ├── call_method_implicit_tear_off.dart.weak.transformed.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.strong.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.strong.transformed.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.textual_outline.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.textual_outline_modelled.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.weak.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.weak.modular.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.weak.outline.expect │ │ │ │ ├── call_method_implicit_tear_off_future_or.dart.weak.transformed.expect │ │ │ │ ├── contravariant_field.dart │ │ │ │ ├── contravariant_field.dart.strong.expect │ │ │ │ ├── contravariant_field.dart.strong.transformed.expect │ │ │ │ ├── contravariant_field.dart.textual_outline.expect │ │ │ │ ├── contravariant_field.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_field.dart.weak.expect │ │ │ │ ├── contravariant_field.dart.weak.modular.expect │ │ │ │ ├── contravariant_field.dart.weak.outline.expect │ │ │ │ ├── contravariant_field.dart.weak.transformed.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.strong.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.strong.transformed.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.textual_outline.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.weak.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.weak.modular.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.weak.outline.expect │ │ │ │ ├── contravariant_generic_method_type_parameter.dart.weak.transformed.expect │ │ │ │ ├── contravariant_generic_return.dart │ │ │ │ ├── contravariant_generic_return.dart.strong.expect │ │ │ │ ├── contravariant_generic_return.dart.strong.transformed.expect │ │ │ │ ├── contravariant_generic_return.dart.textual_outline.expect │ │ │ │ ├── contravariant_generic_return.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_generic_return.dart.weak.expect │ │ │ │ ├── contravariant_generic_return.dart.weak.modular.expect │ │ │ │ ├── contravariant_generic_return.dart.weak.outline.expect │ │ │ │ ├── contravariant_generic_return.dart.weak.transformed.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart │ │ │ │ ├── contravariant_generic_return_null_aware.dart.strong.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.strong.transformed.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.textual_outline.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.weak.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.weak.modular.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.weak.outline.expect │ │ │ │ ├── contravariant_generic_return_null_aware.dart.weak.transformed.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.strong.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.strong.transformed.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.textual_outline.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.weak.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.weak.modular.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.weak.outline.expect │ │ │ │ ├── contravariant_generic_return_null_aware2.dart.weak.transformed.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart │ │ │ │ ├── contravariant_generic_return_tear_off.dart.strong.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.strong.transformed.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.textual_outline.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.weak.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.weak.modular.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.weak.outline.expect │ │ │ │ ├── contravariant_generic_return_tear_off.dart.weak.transformed.expect │ │ │ │ ├── contravariant_getter.dart │ │ │ │ ├── contravariant_getter.dart.strong.expect │ │ │ │ ├── contravariant_getter.dart.strong.transformed.expect │ │ │ │ ├── contravariant_getter.dart.textual_outline.expect │ │ │ │ ├── contravariant_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_getter.dart.weak.expect │ │ │ │ ├── contravariant_getter.dart.weak.modular.expect │ │ │ │ ├── contravariant_getter.dart.weak.outline.expect │ │ │ │ ├── contravariant_getter.dart.weak.transformed.expect │ │ │ │ ├── contravariant_getter_return.dart │ │ │ │ ├── contravariant_getter_return.dart.strong.expect │ │ │ │ ├── contravariant_getter_return.dart.strong.transformed.expect │ │ │ │ ├── contravariant_getter_return.dart.textual_outline.expect │ │ │ │ ├── contravariant_getter_return.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_getter_return.dart.weak.expect │ │ │ │ ├── contravariant_getter_return.dart.weak.modular.expect │ │ │ │ ├── contravariant_getter_return.dart.weak.outline.expect │ │ │ │ ├── contravariant_getter_return.dart.weak.transformed.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart │ │ │ │ ├── contravariant_getter_return_null_aware.dart.strong.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.strong.transformed.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.textual_outline.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.weak.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.weak.modular.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.weak.outline.expect │ │ │ │ ├── contravariant_getter_return_null_aware.dart.weak.transformed.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.strong.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.strong.transformed.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.textual_outline.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.weak.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.weak.modular.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.weak.outline.expect │ │ │ │ ├── contravariant_getter_return_null_aware2.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart │ │ │ │ ├── covariant_generic_method_type_parameter.dart.strong.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.weak.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_method_type_parameter.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter.dart │ │ │ │ ├── covariant_generic_parameter.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart │ │ │ │ ├── covariant_generic_parameter_complex.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter_complex.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_mixin.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter_in_interface_super_mixin.dart.weak.transformed.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.strong.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.strong.transformed.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.textual_outline.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.weak.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.weak.modular.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.weak.outline.expect │ │ │ │ ├── covariant_generic_parameter_tear_off.dart.weak.transformed.expect │ │ │ │ ├── covariant_keyword.dart │ │ │ │ ├── covariant_keyword.dart.strong.expect │ │ │ │ ├── covariant_keyword.dart.strong.transformed.expect │ │ │ │ ├── covariant_keyword.dart.textual_outline.expect │ │ │ │ ├── covariant_keyword.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_keyword.dart.weak.expect │ │ │ │ ├── covariant_keyword.dart.weak.modular.expect │ │ │ │ ├── covariant_keyword.dart.weak.outline.expect │ │ │ │ ├── covariant_keyword.dart.weak.transformed.expect │ │ │ │ ├── covariant_keyword_field.dart │ │ │ │ ├── covariant_keyword_field.dart.strong.expect │ │ │ │ ├── covariant_keyword_field.dart.strong.transformed.expect │ │ │ │ ├── covariant_keyword_field.dart.textual_outline.expect │ │ │ │ ├── covariant_keyword_field.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_keyword_field.dart.weak.expect │ │ │ │ ├── covariant_keyword_field.dart.weak.modular.expect │ │ │ │ ├── covariant_keyword_field.dart.weak.outline.expect │ │ │ │ ├── covariant_keyword_field.dart.weak.transformed.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.strong.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.strong.transformed.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.textual_outline.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.weak.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.weak.modular.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.weak.outline.expect │ │ │ │ ├── covariant_keyword_field_inherited_by_setter.dart.weak.transformed.expect │ │ │ │ ├── covariant_keyword_setter.dart │ │ │ │ ├── covariant_keyword_setter.dart.strong.expect │ │ │ │ ├── covariant_keyword_setter.dart.strong.transformed.expect │ │ │ │ ├── covariant_keyword_setter.dart.textual_outline.expect │ │ │ │ ├── covariant_keyword_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_keyword_setter.dart.weak.expect │ │ │ │ ├── covariant_keyword_setter.dart.weak.modular.expect │ │ │ │ ├── covariant_keyword_setter.dart.weak.outline.expect │ │ │ │ ├── covariant_keyword_setter.dart.weak.transformed.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.strong.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.strong.transformed.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.textual_outline.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.weak.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.weak.modular.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.weak.outline.expect │ │ │ │ ├── covariant_keyword_setter_inherited_by_field.dart.weak.transformed.expect │ │ │ │ ├── covariant_setter.dart │ │ │ │ ├── covariant_setter.dart.strong.expect │ │ │ │ ├── covariant_setter.dart.strong.transformed.expect │ │ │ │ ├── covariant_setter.dart.textual_outline.expect │ │ │ │ ├── covariant_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── covariant_setter.dart.weak.expect │ │ │ │ ├── covariant_setter.dart.weak.modular.expect │ │ │ │ ├── covariant_setter.dart.weak.outline.expect │ │ │ │ ├── covariant_setter.dart.weak.transformed.expect │ │ │ │ ├── dynamic_invocation.dart │ │ │ │ ├── dynamic_invocation.dart.strong.expect │ │ │ │ ├── dynamic_invocation.dart.strong.transformed.expect │ │ │ │ ├── dynamic_invocation.dart.textual_outline.expect │ │ │ │ ├── dynamic_invocation.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_invocation.dart.weak.expect │ │ │ │ ├── dynamic_invocation.dart.weak.modular.expect │ │ │ │ ├── dynamic_invocation.dart.weak.outline.expect │ │ │ │ ├── dynamic_invocation.dart.weak.transformed.expect │ │ │ │ ├── dynamic_invocation_generic.dart │ │ │ │ ├── dynamic_invocation_generic.dart.strong.expect │ │ │ │ ├── dynamic_invocation_generic.dart.strong.transformed.expect │ │ │ │ ├── dynamic_invocation_generic.dart.textual_outline.expect │ │ │ │ ├── dynamic_invocation_generic.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_invocation_generic.dart.weak.expect │ │ │ │ ├── dynamic_invocation_generic.dart.weak.modular.expect │ │ │ │ ├── dynamic_invocation_generic.dart.weak.outline.expect │ │ │ │ ├── dynamic_invocation_generic.dart.weak.transformed.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart │ │ │ │ ├── dynamic_invocation_of_getter.dart.strong.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.strong.transformed.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.textual_outline.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.textual_outline_modelled.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.weak.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.weak.modular.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.weak.outline.expect │ │ │ │ ├── dynamic_invocation_of_getter.dart.weak.transformed.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.strong.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.strong.transformed.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.textual_outline.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.weak.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.weak.modular.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.weak.outline.expect │ │ │ │ ├── field_forwarding_stub_generic_covariant.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── forwarding_stub_with_default_values.dart │ │ │ │ ├── forwarding_stub_with_default_values.dart.strong.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.strong.transformed.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.textual_outline.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.weak.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.weak.modular.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.weak.outline.expect │ │ │ │ ├── forwarding_stub_with_default_values.dart.weak.transformed.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.strong.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.strong.transformed.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.textual_outline.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.textual_outline_modelled.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.weak.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.weak.modular.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.weak.outline.expect │ │ │ │ ├── forwarding_stub_with_non_covariant_param.dart.weak.transformed.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.strong.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.strong.transformed.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.textual_outline.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.weak.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.weak.modular.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.weak.outline.expect │ │ │ │ ├── generic_covariance_inheritance_setter_field.dart.weak.transformed.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart │ │ │ │ ├── generic_vs_explicit_covariance.dart.strong.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.strong.transformed.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.textual_outline.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.weak.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.weak.modular.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.weak.outline.expect │ │ │ │ ├── generic_vs_explicit_covariance.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart │ │ │ │ ├── implicit_downcast_assert_initializer.dart.strong.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.weak.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_assert_initializer.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart │ │ │ │ ├── implicit_downcast_assert_statement.dart.strong.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.weak.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_assert_statement.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.strong.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.weak.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_constructor_initializer.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_do.dart │ │ │ │ ├── implicit_downcast_do.dart.strong.expect │ │ │ │ ├── implicit_downcast_do.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_do.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_do.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_do.dart.weak.expect │ │ │ │ ├── implicit_downcast_do.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_do.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_do.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_for_condition.dart │ │ │ │ ├── implicit_downcast_for_condition.dart.strong.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.weak.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_for_condition.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_if.dart │ │ │ │ ├── implicit_downcast_if.dart.strong.expect │ │ │ │ ├── implicit_downcast_if.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_if.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_if.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_if.dart.weak.expect │ │ │ │ ├── implicit_downcast_if.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_if.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_if.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_not.dart │ │ │ │ ├── implicit_downcast_not.dart.strong.expect │ │ │ │ ├── implicit_downcast_not.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_not.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_not.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_not.dart.weak.expect │ │ │ │ ├── implicit_downcast_not.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_not.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_not.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_while.dart │ │ │ │ ├── implicit_downcast_while.dart.strong.expect │ │ │ │ ├── implicit_downcast_while.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_while.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_while.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_while.dart.weak.expect │ │ │ │ ├── implicit_downcast_while.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_while.dart.weak.outline.expect │ │ │ │ └── implicit_downcast_while.dart.weak.transformed.expect │ │ │ ├── runtime_checks_new │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.strong.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.strong.transformed.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.textual_outline.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.textual_outline_modelled.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.weak.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.weak.modular.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.weak.outline.expect │ │ │ │ ├── abstract_override_becomes_forwarding_stub.dart.weak.transformed.expect │ │ │ │ ├── call_through_this.dart │ │ │ │ ├── call_through_this.dart.strong.expect │ │ │ │ ├── call_through_this.dart.strong.transformed.expect │ │ │ │ ├── call_through_this.dart.textual_outline.expect │ │ │ │ ├── call_through_this.dart.textual_outline_modelled.expect │ │ │ │ ├── call_through_this.dart.weak.expect │ │ │ │ ├── call_through_this.dart.weak.modular.expect │ │ │ │ ├── call_through_this.dart.weak.outline.expect │ │ │ │ ├── call_through_this.dart.weak.transformed.expect │ │ │ │ ├── contravariant_combiner.dart │ │ │ │ ├── contravariant_combiner.dart.strong.expect │ │ │ │ ├── contravariant_combiner.dart.strong.transformed.expect │ │ │ │ ├── contravariant_combiner.dart.textual_outline.expect │ │ │ │ ├── contravariant_combiner.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_combiner.dart.weak.expect │ │ │ │ ├── contravariant_combiner.dart.weak.modular.expect │ │ │ │ ├── contravariant_combiner.dart.weak.outline.expect │ │ │ │ ├── contravariant_combiner.dart.weak.transformed.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.strong.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.strong.transformed.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.textual_outline.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.weak.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.weak.modular.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.weak.outline.expect │ │ │ │ ├── contravariant_generic_return_with_compound_assign_implicit_downcast.dart.weak.transformed.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.strong.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.strong.transformed.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.textual_outline.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.weak.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.weak.modular.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.weak.outline.expect │ │ │ │ ├── contravariant_getter_return_compound_assign.dart.weak.transformed.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.strong.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.strong.transformed.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.textual_outline.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.weak.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.weak.modular.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.weak.outline.expect │ │ │ │ ├── contravariant_getter_return_compound_assign2.dart.weak.transformed.expect │ │ │ │ ├── contravariant_index_assign.dart │ │ │ │ ├── contravariant_index_assign.dart.strong.expect │ │ │ │ ├── contravariant_index_assign.dart.strong.transformed.expect │ │ │ │ ├── contravariant_index_assign.dart.textual_outline.expect │ │ │ │ ├── contravariant_index_assign.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_index_assign.dart.weak.expect │ │ │ │ ├── contravariant_index_assign.dart.weak.modular.expect │ │ │ │ ├── contravariant_index_assign.dart.weak.outline.expect │ │ │ │ ├── contravariant_index_assign.dart.weak.transformed.expect │ │ │ │ ├── contravariant_index_get.dart │ │ │ │ ├── contravariant_index_get.dart.strong.expect │ │ │ │ ├── contravariant_index_get.dart.strong.transformed.expect │ │ │ │ ├── contravariant_index_get.dart.textual_outline.expect │ │ │ │ ├── contravariant_index_get.dart.textual_outline_modelled.expect │ │ │ │ ├── contravariant_index_get.dart.weak.expect │ │ │ │ ├── contravariant_index_get.dart.weak.modular.expect │ │ │ │ ├── contravariant_index_get.dart.weak.outline.expect │ │ │ │ ├── contravariant_index_get.dart.weak.transformed.expect │ │ │ │ ├── derived_class_typed.dart │ │ │ │ ├── derived_class_typed.dart.strong.expect │ │ │ │ ├── derived_class_typed.dart.strong.transformed.expect │ │ │ │ ├── derived_class_typed.dart.textual_outline.expect │ │ │ │ ├── derived_class_typed.dart.textual_outline_modelled.expect │ │ │ │ ├── derived_class_typed.dart.weak.expect │ │ │ │ ├── derived_class_typed.dart.weak.modular.expect │ │ │ │ ├── derived_class_typed.dart.weak.outline.expect │ │ │ │ ├── derived_class_typed.dart.weak.transformed.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.strong.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.strong.transformed.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.textual_outline.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.weak.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.weak.modular.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.weak.outline.expect │ │ │ │ ├── field_forwarding_stub_abstract_generic_covariant.dart.weak.transformed.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.strong.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.strong.transformed.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.textual_outline.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.textual_outline_modelled.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.weak.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.weak.modular.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.weak.outline.expect │ │ │ │ ├── field_forwarding_stub_explicit_covariant.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── for_in_call_kinds.dart │ │ │ │ ├── for_in_call_kinds.dart.strong.expect │ │ │ │ ├── for_in_call_kinds.dart.strong.transformed.expect │ │ │ │ ├── for_in_call_kinds.dart.textual_outline.expect │ │ │ │ ├── for_in_call_kinds.dart.textual_outline_modelled.expect │ │ │ │ ├── for_in_call_kinds.dart.weak.expect │ │ │ │ ├── for_in_call_kinds.dart.weak.modular.expect │ │ │ │ ├── for_in_call_kinds.dart.weak.outline.expect │ │ │ │ ├── for_in_call_kinds.dart.weak.transformed.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart │ │ │ │ ├── generic_covariance_based_on_inference.dart.strong.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.strong.transformed.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.textual_outline.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.weak.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.weak.modular.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.weak.outline.expect │ │ │ │ ├── generic_covariance_based_on_inference.dart.weak.transformed.expect │ │ │ │ ├── implicit_downcast_field.dart │ │ │ │ ├── implicit_downcast_field.dart.strong.expect │ │ │ │ ├── implicit_downcast_field.dart.strong.transformed.expect │ │ │ │ ├── implicit_downcast_field.dart.textual_outline.expect │ │ │ │ ├── implicit_downcast_field.dart.textual_outline_modelled.expect │ │ │ │ ├── implicit_downcast_field.dart.weak.expect │ │ │ │ ├── implicit_downcast_field.dart.weak.modular.expect │ │ │ │ ├── implicit_downcast_field.dart.weak.outline.expect │ │ │ │ ├── implicit_downcast_field.dart.weak.transformed.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart │ │ │ │ ├── mixin_forwarding_stub_field.dart.strong.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.strong.transformed.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.textual_outline.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.weak.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.weak.modular.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.weak.outline.expect │ │ │ │ ├── mixin_forwarding_stub_field.dart.weak.transformed.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart │ │ │ │ ├── mixin_forwarding_stub_setter.dart.strong.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.strong.transformed.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.textual_outline.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.textual_outline_modelled.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.weak.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.weak.modular.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.weak.outline.expect │ │ │ │ ├── mixin_forwarding_stub_setter.dart.weak.transformed.expect │ │ │ │ ├── stub_checked_via_target.dart │ │ │ │ ├── stub_checked_via_target.dart.strong.expect │ │ │ │ ├── stub_checked_via_target.dart.strong.transformed.expect │ │ │ │ ├── stub_checked_via_target.dart.textual_outline.expect │ │ │ │ ├── stub_checked_via_target.dart.textual_outline_modelled.expect │ │ │ │ ├── stub_checked_via_target.dart.weak.expect │ │ │ │ ├── stub_checked_via_target.dart.weak.modular.expect │ │ │ │ ├── stub_checked_via_target.dart.weak.outline.expect │ │ │ │ ├── stub_checked_via_target.dart.weak.transformed.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.strong.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.strong.transformed.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.textual_outline.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.weak.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.weak.modular.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.weak.outline.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_interface.dart.weak.transformed.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.strong.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.strong.transformed.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.textual_outline.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.textual_outline_modelled.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.weak.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.weak.modular.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.weak.outline.expect │ │ │ │ ├── stub_from_interface_covariantImpl_from_super.dart.weak.transformed.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.strong.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.strong.transformed.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.textual_outline.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.textual_outline_modelled.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.weak.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.weak.modular.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.weak.outline.expect │ │ │ │ ├── stub_from_interface_covariant_from_interface.dart.weak.transformed.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.strong.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.strong.transformed.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.textual_outline.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.textual_outline_modelled.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.weak.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.weak.modular.expect │ │ │ │ ├── stub_from_interface_covariant_from_super.dart.weak.outline.expect │ │ │ │ └── stub_from_interface_covariant_from_super.dart.weak.transformed.expect │ │ │ ├── sdk.status │ │ │ ├── sealed_class │ │ │ │ ├── extends_implements_with │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── folder.options │ │ │ │ ├── mixin_on │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── sealed_abstract_class_declaration.dart │ │ │ │ ├── sealed_abstract_class_declaration.dart.strong.expect │ │ │ │ ├── sealed_abstract_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── sealed_abstract_class_declaration.dart.textual_outline.expect │ │ │ │ ├── sealed_abstract_class_declaration.dart.weak.expect │ │ │ │ ├── sealed_abstract_class_declaration.dart.weak.modular.expect │ │ │ │ ├── sealed_abstract_class_declaration.dart.weak.outline.expect │ │ │ │ ├── sealed_abstract_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── sealed_class_declaration.dart │ │ │ │ ├── sealed_class_declaration.dart.strong.expect │ │ │ │ ├── sealed_class_declaration.dart.strong.transformed.expect │ │ │ │ ├── sealed_class_declaration.dart.textual_outline.expect │ │ │ │ ├── sealed_class_declaration.dart.textual_outline_modelled.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.modular.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.outline.expect │ │ │ │ ├── sealed_class_declaration.dart.weak.transformed.expect │ │ │ │ ├── sealed_mixin_declaration.dart │ │ │ │ ├── sealed_mixin_declaration.dart.strong.expect │ │ │ │ ├── sealed_mixin_declaration.dart.strong.transformed.expect │ │ │ │ ├── sealed_mixin_declaration.dart.textual_outline.expect │ │ │ │ ├── sealed_mixin_declaration.dart.weak.expect │ │ │ │ ├── sealed_mixin_declaration.dart.weak.modular.expect │ │ │ │ ├── sealed_mixin_declaration.dart.weak.outline.expect │ │ │ │ └── sealed_mixin_declaration.dart.weak.transformed.expect │ │ │ ├── set_literals │ │ │ │ ├── disambiguation_rule.dart │ │ │ │ ├── disambiguation_rule.dart.strong.expect │ │ │ │ ├── disambiguation_rule.dart.strong.transformed.expect │ │ │ │ ├── disambiguation_rule.dart.textual_outline.expect │ │ │ │ ├── disambiguation_rule.dart.textual_outline_modelled.expect │ │ │ │ ├── disambiguation_rule.dart.weak.expect │ │ │ │ ├── disambiguation_rule.dart.weak.modular.expect │ │ │ │ ├── disambiguation_rule.dart.weak.outline.expect │ │ │ │ ├── disambiguation_rule.dart.weak.transformed.expect │ │ │ │ ├── disambiguation_rule2.dart │ │ │ │ ├── disambiguation_rule2.dart.strong.expect │ │ │ │ ├── disambiguation_rule2.dart.strong.transformed.expect │ │ │ │ ├── disambiguation_rule2.dart.textual_outline.expect │ │ │ │ ├── disambiguation_rule2.dart.textual_outline_modelled.expect │ │ │ │ ├── disambiguation_rule2.dart.weak.expect │ │ │ │ ├── disambiguation_rule2.dart.weak.modular.expect │ │ │ │ ├── disambiguation_rule2.dart.weak.outline.expect │ │ │ │ ├── disambiguation_rule2.dart.weak.transformed.expect │ │ │ │ └── folder.options │ │ │ ├── static_field_lowering │ │ │ │ ├── enum.dart │ │ │ │ ├── enum.dart.strong.expect │ │ │ │ ├── enum.dart.strong.transformed.expect │ │ │ │ ├── enum.dart.textual_outline.expect │ │ │ │ ├── enum.dart.textual_outline_modelled.expect │ │ │ │ ├── enum.dart.weak.expect │ │ │ │ ├── enum.dart.weak.modular.expect │ │ │ │ ├── enum.dart.weak.outline.expect │ │ │ │ ├── enum.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── opt_in.dart │ │ │ │ ├── opt_in.dart.strong.expect │ │ │ │ ├── opt_in.dart.strong.transformed.expect │ │ │ │ ├── opt_in.dart.textual_outline.expect │ │ │ │ ├── opt_in.dart.textual_outline_modelled.expect │ │ │ │ ├── opt_in.dart.weak.expect │ │ │ │ ├── opt_in.dart.weak.modular.expect │ │ │ │ ├── opt_in.dart.weak.outline.expect │ │ │ │ ├── opt_in.dart.weak.transformed.expect │ │ │ │ ├── opt_out.dart │ │ │ │ ├── opt_out.dart.strong.expect │ │ │ │ ├── opt_out.dart.strong.transformed.expect │ │ │ │ ├── opt_out.dart.textual_outline.expect │ │ │ │ ├── opt_out.dart.textual_outline_modelled.expect │ │ │ │ ├── opt_out.dart.weak.expect │ │ │ │ ├── opt_out.dart.weak.modular.expect │ │ │ │ ├── opt_out.dart.weak.outline.expect │ │ │ │ └── opt_out.dart.weak.transformed.expect │ │ │ ├── strong.status │ │ │ ├── super_parameters │ │ │ │ ├── circular_dependency_inference.dart │ │ │ │ ├── circular_dependency_inference.dart.strong.expect │ │ │ │ ├── circular_dependency_inference.dart.strong.transformed.expect │ │ │ │ ├── circular_dependency_inference.dart.textual_outline.expect │ │ │ │ ├── circular_dependency_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── circular_dependency_inference.dart.weak.expect │ │ │ │ ├── circular_dependency_inference.dart.weak.modular.expect │ │ │ │ ├── circular_dependency_inference.dart.weak.outline.expect │ │ │ │ ├── circular_dependency_inference.dart.weak.transformed.expect │ │ │ │ ├── default_values.dart │ │ │ │ ├── default_values.dart.strong.expect │ │ │ │ ├── default_values.dart.strong.transformed.expect │ │ │ │ ├── default_values.dart.textual_outline.expect │ │ │ │ ├── default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── default_values.dart.weak.expect │ │ │ │ ├── default_values.dart.weak.modular.expect │ │ │ │ ├── default_values.dart.weak.outline.expect │ │ │ │ ├── default_values.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── issue47741.dart │ │ │ │ ├── issue47741.dart.strong.expect │ │ │ │ ├── issue47741.dart.strong.transformed.expect │ │ │ │ ├── issue47741.dart.textual_outline.expect │ │ │ │ ├── issue47741.dart.weak.expect │ │ │ │ ├── issue47741.dart.weak.modular.expect │ │ │ │ ├── issue47741.dart.weak.outline.expect │ │ │ │ ├── issue47741.dart.weak.transformed.expect │ │ │ │ ├── issue47922.dart │ │ │ │ ├── issue47922.dart.strong.expect │ │ │ │ ├── issue47922.dart.strong.transformed.expect │ │ │ │ ├── issue47922.dart.textual_outline.expect │ │ │ │ ├── issue47922.dart.weak.expect │ │ │ │ ├── issue47922.dart.weak.modular.expect │ │ │ │ ├── issue47922.dart.weak.outline.expect │ │ │ │ ├── issue47922.dart.weak.transformed.expect │ │ │ │ ├── issue47951.dart │ │ │ │ ├── issue47951.dart.strong.expect │ │ │ │ ├── issue47951.dart.strong.transformed.expect │ │ │ │ ├── issue47951.dart.textual_outline.expect │ │ │ │ ├── issue47951.dart.textual_outline_modelled.expect │ │ │ │ ├── issue47951.dart.weak.expect │ │ │ │ ├── issue47951.dart.weak.modular.expect │ │ │ │ ├── issue47951.dart.weak.outline.expect │ │ │ │ ├── issue47951.dart.weak.transformed.expect │ │ │ │ ├── issue48142.dart │ │ │ │ ├── issue48142.dart.strong.expect │ │ │ │ ├── issue48142.dart.strong.transformed.expect │ │ │ │ ├── issue48142.dart.textual_outline.expect │ │ │ │ ├── issue48142.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48142.dart.weak.expect │ │ │ │ ├── issue48142.dart.weak.modular.expect │ │ │ │ ├── issue48142.dart.weak.outline.expect │ │ │ │ ├── issue48142.dart.weak.transformed.expect │ │ │ │ ├── issue48286.dart │ │ │ │ ├── issue48286.dart.strong.expect │ │ │ │ ├── issue48286.dart.strong.transformed.expect │ │ │ │ ├── issue48286.dart.textual_outline.expect │ │ │ │ ├── issue48286.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48286.dart.weak.expect │ │ │ │ ├── issue48286.dart.weak.modular.expect │ │ │ │ ├── issue48286.dart.weak.outline.expect │ │ │ │ ├── issue48286.dart.weak.transformed.expect │ │ │ │ ├── issue48444_2.dart │ │ │ │ ├── issue48444_2.dart.strong.expect │ │ │ │ ├── issue48444_2.dart.strong.transformed.expect │ │ │ │ ├── issue48444_2.dart.textual_outline.expect │ │ │ │ ├── issue48444_2.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48444_2.dart.weak.expect │ │ │ │ ├── issue48444_2.dart.weak.modular.expect │ │ │ │ ├── issue48444_2.dart.weak.outline.expect │ │ │ │ ├── issue48444_2.dart.weak.transformed.expect │ │ │ │ ├── issue48642.dart │ │ │ │ ├── issue48642.dart.strong.expect │ │ │ │ ├── issue48642.dart.strong.transformed.expect │ │ │ │ ├── issue48642.dart.textual_outline.expect │ │ │ │ ├── issue48642.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48642.dart.weak.expect │ │ │ │ ├── issue48642.dart.weak.modular.expect │ │ │ │ ├── issue48642.dart.weak.outline.expect │ │ │ │ ├── issue48642.dart.weak.transformed.expect │ │ │ │ ├── issue48708.dart │ │ │ │ ├── issue48708.dart.strong.expect │ │ │ │ ├── issue48708.dart.strong.transformed.expect │ │ │ │ ├── issue48708.dart.textual_outline.expect │ │ │ │ ├── issue48708.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48708.dart.weak.expect │ │ │ │ ├── issue48708.dart.weak.modular.expect │ │ │ │ ├── issue48708.dart.weak.outline.expect │ │ │ │ ├── issue48708.dart.weak.transformed.expect │ │ │ │ ├── issue48714.dart │ │ │ │ ├── issue48714.dart.strong.expect │ │ │ │ ├── issue48714.dart.strong.transformed.expect │ │ │ │ ├── issue48714.dart.textual_outline.expect │ │ │ │ ├── issue48714.dart.weak.expect │ │ │ │ ├── issue48714.dart.weak.modular.expect │ │ │ │ ├── issue48714.dart.weak.outline.expect │ │ │ │ ├── issue48714.dart.weak.transformed.expect │ │ │ │ ├── issue48769.dart │ │ │ │ ├── issue48769.dart.strong.expect │ │ │ │ ├── issue48769.dart.strong.transformed.expect │ │ │ │ ├── issue48769.dart.textual_outline.expect │ │ │ │ ├── issue48769.dart.textual_outline_modelled.expect │ │ │ │ ├── issue48769.dart.weak.expect │ │ │ │ ├── issue48769.dart.weak.modular.expect │ │ │ │ ├── issue48769.dart.weak.outline.expect │ │ │ │ ├── issue48769.dart.weak.transformed.expect │ │ │ │ ├── no_coercions.dart │ │ │ │ ├── no_coercions.dart.strong.expect │ │ │ │ ├── no_coercions.dart.strong.transformed.expect │ │ │ │ ├── no_coercions.dart.textual_outline.expect │ │ │ │ ├── no_coercions.dart.textual_outline_modelled.expect │ │ │ │ ├── no_coercions.dart.weak.expect │ │ │ │ ├── no_coercions.dart.weak.modular.expect │ │ │ │ ├── no_coercions.dart.weak.outline.expect │ │ │ │ ├── no_coercions.dart.weak.transformed.expect │ │ │ │ ├── opt_out.dart │ │ │ │ ├── opt_out.dart.strong.expect │ │ │ │ ├── opt_out.dart.strong.transformed.expect │ │ │ │ ├── opt_out.dart.textual_outline.expect │ │ │ │ ├── opt_out.dart.weak.expect │ │ │ │ ├── opt_out.dart.weak.modular.expect │ │ │ │ ├── opt_out.dart.weak.outline.expect │ │ │ │ ├── opt_out.dart.weak.transformed.expect │ │ │ │ ├── simple.dart │ │ │ │ ├── simple.dart.strong.expect │ │ │ │ ├── simple.dart.strong.transformed.expect │ │ │ │ ├── simple.dart.textual_outline.expect │ │ │ │ ├── simple.dart.textual_outline_modelled.expect │ │ │ │ ├── simple.dart.weak.expect │ │ │ │ ├── simple.dart.weak.modular.expect │ │ │ │ ├── simple.dart.weak.outline.expect │ │ │ │ ├── simple.dart.weak.transformed.expect │ │ │ │ ├── simple_inference.dart │ │ │ │ ├── simple_inference.dart.strong.expect │ │ │ │ ├── simple_inference.dart.strong.transformed.expect │ │ │ │ ├── simple_inference.dart.textual_outline.expect │ │ │ │ ├── simple_inference.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_inference.dart.weak.expect │ │ │ │ ├── simple_inference.dart.weak.modular.expect │ │ │ │ ├── simple_inference.dart.weak.outline.expect │ │ │ │ ├── simple_inference.dart.weak.transformed.expect │ │ │ │ ├── simple_named_super_parameters.dart │ │ │ │ ├── simple_named_super_parameters.dart.strong.expect │ │ │ │ ├── simple_named_super_parameters.dart.strong.transformed.expect │ │ │ │ ├── simple_named_super_parameters.dart.textual_outline.expect │ │ │ │ ├── simple_named_super_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_named_super_parameters.dart.weak.expect │ │ │ │ ├── simple_named_super_parameters.dart.weak.modular.expect │ │ │ │ ├── simple_named_super_parameters.dart.weak.outline.expect │ │ │ │ ├── simple_named_super_parameters.dart.weak.transformed.expect │ │ │ │ ├── simple_positional_super_parameters.dart │ │ │ │ ├── simple_positional_super_parameters.dart.strong.expect │ │ │ │ ├── simple_positional_super_parameters.dart.strong.transformed.expect │ │ │ │ ├── simple_positional_super_parameters.dart.textual_outline.expect │ │ │ │ ├── simple_positional_super_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── simple_positional_super_parameters.dart.weak.expect │ │ │ │ ├── simple_positional_super_parameters.dart.weak.modular.expect │ │ │ │ ├── simple_positional_super_parameters.dart.weak.outline.expect │ │ │ │ ├── simple_positional_super_parameters.dart.weak.transformed.expect │ │ │ │ ├── super_key │ │ │ │ │ ├── main.dart │ │ │ │ │ ├── main.dart.strong.expect │ │ │ │ │ ├── main.dart.strong.transformed.expect │ │ │ │ │ ├── main.dart.textual_outline.expect │ │ │ │ │ ├── main.dart.textual_outline_modelled.expect │ │ │ │ │ ├── main.dart.weak.expect │ │ │ │ │ ├── main.dart.weak.modular.expect │ │ │ │ │ ├── main.dart.weak.outline.expect │ │ │ │ │ ├── main.dart.weak.transformed.expect │ │ │ │ │ ├── main_lib.dart │ │ │ │ │ └── test.options │ │ │ │ ├── super_parameters_outside_constructor.dart │ │ │ │ ├── super_parameters_outside_constructor.dart.strong.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.strong.transformed.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.textual_outline.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.textual_outline_modelled.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.weak.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.weak.modular.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.weak.outline.expect │ │ │ │ ├── super_parameters_outside_constructor.dart.weak.transformed.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.strong.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.strong.transformed.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.textual_outline.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.textual_outline_modelled.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.weak.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.weak.modular.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.weak.outline.expect │ │ │ │ ├── super_parameters_with_types_and_default_values.dart.weak.transformed.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.strong.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.strong.transformed.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.textual_outline.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.weak.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.weak.modular.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.weak.outline.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters.dart.weak.transformed.expect │ │ │ │ ├── synthesized_super_constructor_with_parameters_lib.dart │ │ │ │ ├── type_alias_in_supertype.dart │ │ │ │ ├── type_alias_in_supertype.dart.strong.expect │ │ │ │ ├── type_alias_in_supertype.dart.strong.transformed.expect │ │ │ │ ├── type_alias_in_supertype.dart.textual_outline.expect │ │ │ │ ├── type_alias_in_supertype.dart.textual_outline_modelled.expect │ │ │ │ ├── type_alias_in_supertype.dart.weak.expect │ │ │ │ ├── type_alias_in_supertype.dart.weak.modular.expect │ │ │ │ ├── type_alias_in_supertype.dart.weak.outline.expect │ │ │ │ ├── type_alias_in_supertype.dart.weak.transformed.expect │ │ │ │ ├── typed_super_parameters.dart │ │ │ │ ├── typed_super_parameters.dart.strong.expect │ │ │ │ ├── typed_super_parameters.dart.strong.transformed.expect │ │ │ │ ├── typed_super_parameters.dart.textual_outline.expect │ │ │ │ ├── typed_super_parameters.dart.textual_outline_modelled.expect │ │ │ │ ├── typed_super_parameters.dart.weak.expect │ │ │ │ ├── typed_super_parameters.dart.weak.modular.expect │ │ │ │ ├── typed_super_parameters.dart.weak.outline.expect │ │ │ │ ├── typed_super_parameters.dart.weak.transformed.expect │ │ │ │ ├── var_before_super.dart │ │ │ │ ├── var_before_super.dart.strong.expect │ │ │ │ ├── var_before_super.dart.strong.transformed.expect │ │ │ │ ├── var_before_super.dart.textual_outline.expect │ │ │ │ ├── var_before_super.dart.weak.expect │ │ │ │ ├── var_before_super.dart.weak.modular.expect │ │ │ │ ├── var_before_super.dart.weak.outline.expect │ │ │ │ └── var_before_super.dart.weak.transformed.expect │ │ │ ├── textual_outline.status │ │ │ ├── triple_shift │ │ │ │ ├── folder.options │ │ │ │ ├── invalid_operator.dart │ │ │ │ ├── invalid_operator.dart.strong.expect │ │ │ │ ├── invalid_operator.dart.strong.transformed.expect │ │ │ │ ├── invalid_operator.dart.textual_outline.expect │ │ │ │ ├── invalid_operator.dart.weak.expect │ │ │ │ ├── invalid_operator.dart.weak.modular.expect │ │ │ │ ├── invalid_operator.dart.weak.outline.expect │ │ │ │ └── invalid_operator.dart.weak.transformed.expect │ │ │ ├── unified_collections │ │ │ │ ├── const_for.dart │ │ │ │ ├── const_for.dart.strong.expect │ │ │ │ ├── const_for.dart.strong.transformed.expect │ │ │ │ ├── const_for.dart.textual_outline.expect │ │ │ │ ├── const_for.dart.textual_outline_modelled.expect │ │ │ │ ├── const_for.dart.weak.expect │ │ │ │ ├── const_for.dart.weak.modular.expect │ │ │ │ ├── const_for.dart.weak.outline.expect │ │ │ │ ├── const_for.dart.weak.transformed.expect │ │ │ │ ├── fold_initial.dart │ │ │ │ ├── fold_initial.dart.strong.expect │ │ │ │ ├── fold_initial.dart.strong.transformed.expect │ │ │ │ ├── fold_initial.dart.textual_outline.expect │ │ │ │ ├── fold_initial.dart.textual_outline_modelled.expect │ │ │ │ ├── fold_initial.dart.weak.expect │ │ │ │ ├── fold_initial.dart.weak.modular.expect │ │ │ │ ├── fold_initial.dart.weak.outline.expect │ │ │ │ ├── fold_initial.dart.weak.transformed.expect │ │ │ │ ├── fold_initial2.dart │ │ │ │ ├── fold_initial2.dart.strong.expect │ │ │ │ ├── fold_initial2.dart.strong.transformed.expect │ │ │ │ ├── fold_initial2.dart.textual_outline.expect │ │ │ │ ├── fold_initial2.dart.textual_outline_modelled.expect │ │ │ │ ├── fold_initial2.dart.weak.expect │ │ │ │ ├── fold_initial2.dart.weak.modular.expect │ │ │ │ ├── fold_initial2.dart.weak.outline.expect │ │ │ │ ├── fold_initial2.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── invariance.dart │ │ │ │ ├── invariance.dart.strong.expect │ │ │ │ ├── invariance.dart.strong.transformed.expect │ │ │ │ ├── invariance.dart.textual_outline.expect │ │ │ │ ├── invariance.dart.textual_outline_modelled.expect │ │ │ │ ├── invariance.dart.weak.expect │ │ │ │ ├── invariance.dart.weak.modular.expect │ │ │ │ ├── invariance.dart.weak.outline.expect │ │ │ │ ├── invariance.dart.weak.transformed.expect │ │ │ │ ├── invariance2.dart │ │ │ │ ├── invariance2.dart.strong.expect │ │ │ │ ├── invariance2.dart.strong.transformed.expect │ │ │ │ ├── invariance2.dart.textual_outline.expect │ │ │ │ ├── invariance2.dart.textual_outline_modelled.expect │ │ │ │ ├── invariance2.dart.weak.expect │ │ │ │ ├── invariance2.dart.weak.modular.expect │ │ │ │ ├── invariance2.dart.weak.outline.expect │ │ │ │ ├── invariance2.dart.weak.transformed.expect │ │ │ │ ├── list_add_all.dart │ │ │ │ ├── list_add_all.dart.strong.expect │ │ │ │ ├── list_add_all.dart.strong.transformed.expect │ │ │ │ ├── list_add_all.dart.textual_outline.expect │ │ │ │ ├── list_add_all.dart.textual_outline_modelled.expect │ │ │ │ ├── list_add_all.dart.weak.expect │ │ │ │ ├── list_add_all.dart.weak.modular.expect │ │ │ │ ├── list_add_all.dart.weak.outline.expect │ │ │ │ ├── list_add_all.dart.weak.transformed.expect │ │ │ │ ├── list_add_all_nnbd.dart │ │ │ │ ├── list_add_all_nnbd.dart.strong.expect │ │ │ │ ├── list_add_all_nnbd.dart.strong.transformed.expect │ │ │ │ ├── list_add_all_nnbd.dart.textual_outline.expect │ │ │ │ ├── list_add_all_nnbd.dart.textual_outline_modelled.expect │ │ │ │ ├── list_add_all_nnbd.dart.weak.expect │ │ │ │ ├── list_add_all_nnbd.dart.weak.modular.expect │ │ │ │ ├── list_add_all_nnbd.dart.weak.outline.expect │ │ │ │ ├── list_add_all_nnbd.dart.weak.transformed.expect │ │ │ │ ├── map_add_all.dart │ │ │ │ ├── map_add_all.dart.strong.expect │ │ │ │ ├── map_add_all.dart.strong.transformed.expect │ │ │ │ ├── map_add_all.dart.textual_outline.expect │ │ │ │ ├── map_add_all.dart.textual_outline_modelled.expect │ │ │ │ ├── map_add_all.dart.weak.expect │ │ │ │ ├── map_add_all.dart.weak.modular.expect │ │ │ │ ├── map_add_all.dart.weak.outline.expect │ │ │ │ ├── map_add_all.dart.weak.transformed.expect │ │ │ │ ├── map_add_all_nnbd.dart │ │ │ │ ├── map_add_all_nnbd.dart.strong.expect │ │ │ │ ├── map_add_all_nnbd.dart.strong.transformed.expect │ │ │ │ ├── map_add_all_nnbd.dart.textual_outline.expect │ │ │ │ ├── map_add_all_nnbd.dart.textual_outline_modelled.expect │ │ │ │ ├── map_add_all_nnbd.dart.weak.expect │ │ │ │ ├── map_add_all_nnbd.dart.weak.modular.expect │ │ │ │ ├── map_add_all_nnbd.dart.weak.outline.expect │ │ │ │ ├── map_add_all_nnbd.dart.weak.transformed.expect │ │ │ │ ├── mixed_entries.dart │ │ │ │ ├── mixed_entries.dart.strong.expect │ │ │ │ ├── mixed_entries.dart.strong.transformed.expect │ │ │ │ ├── mixed_entries.dart.textual_outline.expect │ │ │ │ ├── mixed_entries.dart.textual_outline_modelled.expect │ │ │ │ ├── mixed_entries.dart.weak.expect │ │ │ │ ├── mixed_entries.dart.weak.modular.expect │ │ │ │ ├── mixed_entries.dart.weak.outline.expect │ │ │ │ ├── mixed_entries.dart.weak.transformed.expect │ │ │ │ ├── set_add_all.dart │ │ │ │ ├── set_add_all.dart.strong.expect │ │ │ │ ├── set_add_all.dart.strong.transformed.expect │ │ │ │ ├── set_add_all.dart.textual_outline.expect │ │ │ │ ├── set_add_all.dart.textual_outline_modelled.expect │ │ │ │ ├── set_add_all.dart.weak.expect │ │ │ │ ├── set_add_all.dart.weak.modular.expect │ │ │ │ ├── set_add_all.dart.weak.outline.expect │ │ │ │ ├── set_add_all.dart.weak.transformed.expect │ │ │ │ ├── set_add_all_nnbd.dart │ │ │ │ ├── set_add_all_nnbd.dart.strong.expect │ │ │ │ ├── set_add_all_nnbd.dart.strong.transformed.expect │ │ │ │ ├── set_add_all_nnbd.dart.textual_outline.expect │ │ │ │ ├── set_add_all_nnbd.dart.textual_outline_modelled.expect │ │ │ │ ├── set_add_all_nnbd.dart.weak.expect │ │ │ │ ├── set_add_all_nnbd.dart.weak.modular.expect │ │ │ │ ├── set_add_all_nnbd.dart.weak.outline.expect │ │ │ │ ├── set_add_all_nnbd.dart.weak.transformed.expect │ │ │ │ ├── string_concatenation.dart │ │ │ │ ├── string_concatenation.dart.strong.expect │ │ │ │ ├── string_concatenation.dart.strong.transformed.expect │ │ │ │ ├── string_concatenation.dart.textual_outline.expect │ │ │ │ ├── string_concatenation.dart.textual_outline_modelled.expect │ │ │ │ ├── string_concatenation.dart.weak.expect │ │ │ │ ├── string_concatenation.dart.weak.modular.expect │ │ │ │ ├── string_concatenation.dart.weak.outline.expect │ │ │ │ └── string_concatenation.dart.weak.transformed.expect │ │ │ ├── unscheduled_experiments │ │ │ │ └── folder.options │ │ │ ├── value_class │ │ │ │ ├── copy_with_call_sites.dart │ │ │ │ ├── copy_with_call_sites.dart.strong.expect │ │ │ │ ├── copy_with_call_sites.dart.strong.transformed.expect │ │ │ │ ├── copy_with_call_sites.dart.textual_outline.expect │ │ │ │ ├── copy_with_call_sites.dart.textual_outline_modelled.expect │ │ │ │ ├── copy_with_call_sites.dart.weak.expect │ │ │ │ ├── copy_with_call_sites.dart.weak.modular.expect │ │ │ │ ├── copy_with_call_sites.dart.weak.outline.expect │ │ │ │ ├── copy_with_call_sites.dart.weak.transformed.expect │ │ │ │ ├── empty.dart │ │ │ │ ├── empty.dart.strong.expect │ │ │ │ ├── empty.dart.strong.transformed.expect │ │ │ │ ├── empty.dart.textual_outline.expect │ │ │ │ ├── empty.dart.textual_outline_modelled.expect │ │ │ │ ├── empty.dart.weak.expect │ │ │ │ ├── empty.dart.weak.modular.expect │ │ │ │ ├── empty.dart.weak.outline.expect │ │ │ │ ├── empty.dart.weak.transformed.expect │ │ │ │ ├── explicit_mixin.dart │ │ │ │ ├── explicit_mixin.dart.strong.expect │ │ │ │ ├── explicit_mixin.dart.strong.transformed.expect │ │ │ │ ├── explicit_mixin.dart.textual_outline.expect │ │ │ │ ├── explicit_mixin.dart.textual_outline_modelled.expect │ │ │ │ ├── explicit_mixin.dart.weak.expect │ │ │ │ ├── explicit_mixin.dart.weak.modular.expect │ │ │ │ ├── explicit_mixin.dart.weak.outline.expect │ │ │ │ ├── explicit_mixin.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── non_final_field_error.dart │ │ │ │ ├── non_final_field_error.dart.strong.expect │ │ │ │ ├── non_final_field_error.dart.strong.transformed.expect │ │ │ │ ├── non_final_field_error.dart.textual_outline.expect │ │ │ │ ├── non_final_field_error.dart.textual_outline_modelled.expect │ │ │ │ ├── non_final_field_error.dart.weak.expect │ │ │ │ ├── non_final_field_error.dart.weak.modular.expect │ │ │ │ ├── non_final_field_error.dart.weak.outline.expect │ │ │ │ ├── non_final_field_error.dart.weak.transformed.expect │ │ │ │ ├── non_value_extends_value_error.dart │ │ │ │ ├── non_value_extends_value_error.dart.strong.expect │ │ │ │ ├── non_value_extends_value_error.dart.strong.transformed.expect │ │ │ │ ├── non_value_extends_value_error.dart.textual_outline.expect │ │ │ │ ├── non_value_extends_value_error.dart.textual_outline_modelled.expect │ │ │ │ ├── non_value_extends_value_error.dart.weak.expect │ │ │ │ ├── non_value_extends_value_error.dart.weak.modular.expect │ │ │ │ ├── non_value_extends_value_error.dart.weak.outline.expect │ │ │ │ ├── non_value_extends_value_error.dart.weak.transformed.expect │ │ │ │ ├── non_value_implements_value_error.dart │ │ │ │ ├── non_value_implements_value_error.dart.strong.expect │ │ │ │ ├── non_value_implements_value_error.dart.strong.transformed.expect │ │ │ │ ├── non_value_implements_value_error.dart.textual_outline.expect │ │ │ │ ├── non_value_implements_value_error.dart.textual_outline_modelled.expect │ │ │ │ ├── non_value_implements_value_error.dart.weak.expect │ │ │ │ ├── non_value_implements_value_error.dart.weak.modular.expect │ │ │ │ ├── non_value_implements_value_error.dart.weak.outline.expect │ │ │ │ ├── non_value_implements_value_error.dart.weak.transformed.expect │ │ │ │ ├── simple.dart │ │ │ │ ├── simple.dart.strong.expect │ │ │ │ ├── simple.dart.strong.transformed.expect │ │ │ │ ├── simple.dart.textual_outline.expect │ │ │ │ ├── simple.dart.textual_outline_modelled.expect │ │ │ │ ├── simple.dart.weak.expect │ │ │ │ ├── simple.dart.weak.modular.expect │ │ │ │ ├── simple.dart.weak.outline.expect │ │ │ │ ├── simple.dart.weak.transformed.expect │ │ │ │ ├── value_class_support_lib.dart │ │ │ │ ├── value_extends_non_value.dart │ │ │ │ ├── value_extends_non_value.dart.strong.expect │ │ │ │ ├── value_extends_non_value.dart.strong.transformed.expect │ │ │ │ ├── value_extends_non_value.dart.textual_outline.expect │ │ │ │ ├── value_extends_non_value.dart.textual_outline_modelled.expect │ │ │ │ ├── value_extends_non_value.dart.weak.expect │ │ │ │ ├── value_extends_non_value.dart.weak.modular.expect │ │ │ │ ├── value_extends_non_value.dart.weak.outline.expect │ │ │ │ ├── value_extends_non_value.dart.weak.transformed.expect │ │ │ │ ├── value_extends_non_value_error.dart │ │ │ │ ├── value_extends_non_value_error.dart.strong.expect │ │ │ │ ├── value_extends_non_value_error.dart.strong.transformed.expect │ │ │ │ ├── value_extends_non_value_error.dart.textual_outline.expect │ │ │ │ ├── value_extends_non_value_error.dart.textual_outline_modelled.expect │ │ │ │ ├── value_extends_non_value_error.dart.weak.expect │ │ │ │ ├── value_extends_non_value_error.dart.weak.modular.expect │ │ │ │ ├── value_extends_non_value_error.dart.weak.outline.expect │ │ │ │ ├── value_extends_non_value_error.dart.weak.transformed.expect │ │ │ │ ├── value_implements_non_value.dart │ │ │ │ ├── value_implements_non_value.dart.strong.expect │ │ │ │ ├── value_implements_non_value.dart.strong.transformed.expect │ │ │ │ ├── value_implements_non_value.dart.textual_outline.expect │ │ │ │ ├── value_implements_non_value.dart.textual_outline_modelled.expect │ │ │ │ ├── value_implements_non_value.dart.weak.expect │ │ │ │ ├── value_implements_non_value.dart.weak.modular.expect │ │ │ │ ├── value_implements_non_value.dart.weak.outline.expect │ │ │ │ ├── value_implements_non_value.dart.weak.transformed.expect │ │ │ │ ├── value_mixin_error.dart │ │ │ │ ├── value_mixin_error.dart.strong.expect │ │ │ │ ├── value_mixin_error.dart.strong.transformed.expect │ │ │ │ ├── value_mixin_error.dart.textual_outline.expect │ │ │ │ ├── value_mixin_error.dart.textual_outline_modelled.expect │ │ │ │ ├── value_mixin_error.dart.weak.expect │ │ │ │ ├── value_mixin_error.dart.weak.modular.expect │ │ │ │ ├── value_mixin_error.dart.weak.outline.expect │ │ │ │ └── value_mixin_error.dart.weak.transformed.expect │ │ │ ├── variance │ │ │ │ ├── class_type_parameter_modifier.dart │ │ │ │ ├── class_type_parameter_modifier.dart.strong.expect │ │ │ │ ├── class_type_parameter_modifier.dart.strong.transformed.expect │ │ │ │ ├── class_type_parameter_modifier.dart.textual_outline.expect │ │ │ │ ├── class_type_parameter_modifier.dart.weak.expect │ │ │ │ ├── class_type_parameter_modifier.dart.weak.modular.expect │ │ │ │ ├── class_type_parameter_modifier.dart.weak.outline.expect │ │ │ │ ├── class_type_parameter_modifier.dart.weak.transformed.expect │ │ │ │ ├── folder.options │ │ │ │ ├── generic_covariance_sound_variance.dart │ │ │ │ ├── generic_covariance_sound_variance.dart.strong.expect │ │ │ │ ├── generic_covariance_sound_variance.dart.strong.transformed.expect │ │ │ │ ├── generic_covariance_sound_variance.dart.textual_outline.expect │ │ │ │ ├── generic_covariance_sound_variance.dart.weak.expect │ │ │ │ ├── generic_covariance_sound_variance.dart.weak.modular.expect │ │ │ │ ├── generic_covariance_sound_variance.dart.weak.outline.expect │ │ │ │ ├── generic_covariance_sound_variance.dart.weak.transformed.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart │ │ │ │ ├── mixin_type_parameter_modifier.dart.strong.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart.strong.transformed.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart.textual_outline.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart.weak.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart.weak.modular.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart.weak.outline.expect │ │ │ │ ├── mixin_type_parameter_modifier.dart.weak.transformed.expect │ │ │ │ ├── unconstrained_inference.dart │ │ │ │ ├── unconstrained_inference.dart.strong.expect │ │ │ │ ├── unconstrained_inference.dart.strong.transformed.expect │ │ │ │ ├── unconstrained_inference.dart.textual_outline.expect │ │ │ │ ├── unconstrained_inference.dart.weak.expect │ │ │ │ ├── unconstrained_inference.dart.weak.modular.expect │ │ │ │ ├── unconstrained_inference.dart.weak.outline.expect │ │ │ │ └── unconstrained_inference.dart.weak.transformed.expect │ │ │ └── weak.status │ │ ├── testing.json │ │ ├── testing_with_lints.json │ │ └── tool │ │ │ ├── _fasta │ │ │ ├── abcompile.dart │ │ │ ├── additional_targets.dart │ │ │ ├── additional_targets_test.dart │ │ │ ├── batch.dart │ │ │ ├── bench_maker.dart │ │ │ ├── benchmark_visualiser.html │ │ │ ├── command_line.dart │ │ │ ├── compile.dart │ │ │ ├── compile_platform.dart │ │ │ ├── compile_platform_legacy_test.dart │ │ │ ├── compile_platform_test.dart │ │ │ ├── deps.dart │ │ │ ├── entry_points.dart │ │ │ ├── generate_experimental_flags.dart │ │ │ ├── generate_messages.dart │ │ │ ├── log_analyzer.dart │ │ │ ├── log_collector.dart │ │ │ ├── outline.dart │ │ │ ├── parser.dart │ │ │ ├── parser_ast_helper_creator.dart │ │ │ ├── scanner.dart │ │ │ └── standard_deviation.dart │ │ │ ├── analyze.dart │ │ │ ├── ast_model.dart │ │ │ ├── binary_md_print_free_tags.dart │ │ │ ├── compare_dill.dart │ │ │ ├── dart_doctest_impl.dart │ │ │ ├── dart_doctest_runner.dart │ │ │ ├── duplicate_code_finder_experiment.dart │ │ │ ├── duplicate_code_finder_test.dart │ │ │ ├── fasta │ │ │ ├── fasta.dart │ │ │ ├── fasta_perf.dart │ │ │ ├── fasta_perf_test.dart │ │ │ ├── generate_ast_coverage.dart │ │ │ ├── generate_ast_equivalence.dart │ │ │ ├── incremental_perf.dart │ │ │ ├── incremental_perf_test.dart │ │ │ ├── kernel_ast_file_rewriter.dart │ │ │ ├── parser_direct_ast │ │ │ ├── console_helper.dart │ │ │ └── viewer.dart │ │ │ ├── perf.dart │ │ │ ├── perf_common.dart │ │ │ ├── perf_test.dart │ │ │ ├── smoke_test_quick.dart │ │ │ ├── stat_on_dash_v.dart │ │ │ ├── update_all.dart │ │ │ ├── update_expectations.dart │ │ │ └── visitor_generator.dart │ ├── frontend_server │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ └── frontend_server_starter.dart │ │ ├── lib │ │ │ ├── compute_kernel.dart │ │ │ ├── frontend_server.dart │ │ │ ├── src │ │ │ │ ├── binary_protocol.dart │ │ │ │ ├── javascript_bundle.dart │ │ │ │ ├── resident_frontend_server.dart │ │ │ │ └── strong_components.dart │ │ │ └── starter.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── frontend_server_flutter.dart │ │ │ ├── frontend_server_flutter_suite.dart │ │ │ ├── frontend_server_test.dart │ │ │ ├── native_assets_test.dart │ │ │ └── src │ │ │ ├── javascript_bundle_test.dart │ │ │ ├── resident_frontend_server_test.dart │ │ │ └── strong_components_test.dart │ ├── js_ast │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ ├── js_ast.dart │ │ │ └── src │ │ │ │ ├── builder.dart │ │ │ │ ├── characters.dart │ │ │ │ ├── equivalence_visitor.dart │ │ │ │ ├── nodes.dart │ │ │ │ ├── precedence.dart │ │ │ │ ├── printer.dart │ │ │ │ ├── strings.dart │ │ │ │ └── template.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ ├── annotations_test.dart │ │ │ ├── dangling_else_label_test.dart │ │ │ ├── deferred_expression_test.dart │ │ │ ├── deferred_statement_test.dart │ │ │ ├── printer_callback_test.dart │ │ │ └── string_escape_test.dart │ ├── js_runtime │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ └── synced │ │ │ │ ├── async_await_error_codes.dart │ │ │ │ ├── embedded_names.dart │ │ │ │ └── load_library_priority.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── in_sync_test.dart │ ├── js_shared │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ └── synced │ │ │ │ ├── embedded_names.dart │ │ │ │ └── recipe_syntax.dart │ │ ├── pubspec.yaml │ │ └── test │ │ │ └── in_sync_test.dart │ ├── kernel │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── PRESUBMIT.py │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ │ ├── compare_hierarchies.dart │ │ │ ├── count_breakdown.dart │ │ │ ├── dill_forensic.dart │ │ │ ├── dump.dart │ │ │ ├── size_breakdown.dart │ │ │ ├── split.dart │ │ │ ├── switch_order.dart │ │ │ └── type_check.dart │ │ ├── binary.md │ │ ├── codereview.settings │ │ ├── doc │ │ │ └── nnbd_api.md │ │ ├── lib │ │ │ ├── ast.dart │ │ │ ├── binary │ │ │ │ ├── ast_from_binary.dart │ │ │ │ ├── ast_to_binary.dart │ │ │ │ ├── readme.md │ │ │ │ └── tag.dart │ │ │ ├── canonical_name.dart │ │ │ ├── class_hierarchy.dart │ │ │ ├── clone.dart │ │ │ ├── core_types.dart │ │ │ ├── default_language_version.dart │ │ │ ├── error_formatter.dart │ │ │ ├── external_name.dart │ │ │ ├── import_table.dart │ │ │ ├── kernel.dart │ │ │ ├── library_index.dart │ │ │ ├── naive_type_checker.dart │ │ │ ├── reference_from_index.dart │ │ │ ├── src │ │ │ │ ├── assumptions.dart │ │ │ │ ├── ast │ │ │ │ │ └── patterns.dart │ │ │ │ ├── bounds_checks.dart │ │ │ │ ├── const_canonical_type.dart │ │ │ │ ├── constant_replacer.dart │ │ │ │ ├── coverage.dart │ │ │ │ ├── dart_type_equivalence.dart │ │ │ │ ├── equivalence.dart │ │ │ │ ├── equivalence_helpers.dart │ │ │ │ ├── future_value_type.dart │ │ │ │ ├── heap.dart │ │ │ │ ├── hierarchy_based_type_environment.dart │ │ │ │ ├── legacy_erasure.dart │ │ │ │ ├── merge_visitor.dart │ │ │ │ ├── nnbd_top_merge.dart │ │ │ │ ├── node_creator.dart │ │ │ │ ├── non_null.dart │ │ │ │ ├── norm.dart │ │ │ │ ├── printer.dart │ │ │ │ ├── replacement_visitor.dart │ │ │ │ ├── standard_bounds.dart │ │ │ │ ├── text_util.dart │ │ │ │ ├── tool │ │ │ │ │ ├── batch_util.dart │ │ │ │ │ ├── command_line_util.dart │ │ │ │ │ ├── dump.dart │ │ │ │ │ └── find_referenced_libraries.dart │ │ │ │ ├── types.dart │ │ │ │ ├── unaliasing.dart │ │ │ │ └── union_find.dart │ │ │ ├── target │ │ │ │ ├── changed_structure_notifier.dart │ │ │ │ ├── readme.md │ │ │ │ └── targets.dart │ │ │ ├── testing │ │ │ │ ├── mock_sdk.dart │ │ │ │ ├── mock_sdk_component.dart │ │ │ │ ├── type_parser.dart │ │ │ │ └── type_parser_environment.dart │ │ │ ├── text │ │ │ │ ├── ast_to_text.dart │ │ │ │ ├── debug_printer.dart │ │ │ │ ├── indentation.dart │ │ │ │ ├── readme.md │ │ │ │ └── text_reader.dart │ │ │ ├── transformations │ │ │ │ ├── empty.dart │ │ │ │ ├── flags.dart │ │ │ │ ├── scanner.dart │ │ │ │ ├── track_widget_constructor_locations.dart │ │ │ │ └── value_class.dart │ │ │ ├── type_algebra.dart │ │ │ ├── type_checker.dart │ │ │ ├── type_environment.dart │ │ │ ├── util │ │ │ │ └── graph.dart │ │ │ ├── verifier.dart │ │ │ └── visitor.dart │ │ ├── problems.md │ │ ├── pubspec.yaml │ │ ├── test │ │ │ ├── ast_membench.dart │ │ │ ├── ast_membench.sh │ │ │ ├── binary │ │ │ │ ├── can_read_platform_test.dart │ │ │ │ ├── component_mode_test.dart │ │ │ │ ├── invalid_index_size.dart │ │ │ │ ├── lazy_reading_test.dart │ │ │ │ ├── library_flags_test.dart │ │ │ │ └── utils.dart │ │ │ ├── binary_bench.dart │ │ │ ├── class_hierarchy_basic.dart │ │ │ ├── class_hierarchy_bench.dart │ │ │ ├── class_hierarchy_membench.dart │ │ │ ├── class_hierarchy_test.dart │ │ │ ├── clone_test.dart │ │ │ ├── constant_equals_test.dart │ │ │ ├── convert_field_to_setter_getter_test.dart │ │ │ ├── dart_type_equivalence_test.dart │ │ │ ├── equivalence_test.dart │ │ │ ├── equivalent_dill_test.dart │ │ │ ├── flatten_test.dart │ │ │ ├── future_value_type_test.dart │ │ │ ├── graph_test.dart │ │ │ ├── heap_test.dart │ │ │ ├── import_table_test.dart │ │ │ ├── indentation_test.dart │ │ │ ├── legacy_erasure_test.dart │ │ │ ├── load_concat_dill_keeps_source_test.dart │ │ │ ├── load_field_and_procedure_overwrites_test.dart │ │ │ ├── metadata_test.dart │ │ │ ├── nnbd_top_merge_test.dart │ │ │ ├── non_null_test.dart │ │ │ ├── norm_test.dart │ │ │ ├── reference_name_test.dart │ │ │ ├── relink_test.dart │ │ │ ├── serialize_bench.dart │ │ │ ├── text_util_test.dart │ │ │ ├── type_hashcode_quality.dart │ │ │ ├── type_hashcode_test.dart │ │ │ ├── type_parser.dart │ │ │ ├── type_parser_test.dart │ │ │ ├── type_substitute_bounds_test.dart │ │ │ ├── type_substitution_identity_test.dart │ │ │ ├── typedef_unalias_test.dart │ │ │ ├── union_find_test.dart │ │ │ ├── verify_bench.dart │ │ │ └── verify_test.dart │ │ └── tool │ │ │ └── smoke_test_quick.dart │ ├── meta │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── lib │ │ │ ├── dart2js.dart │ │ │ ├── meta.dart │ │ │ └── meta_meta.dart │ │ └── pubspec.yaml │ └── vm │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── README.md │ │ ├── analysis_options.yaml │ │ ├── bin │ │ ├── compare_il.dart │ │ ├── dump_kernel.dart │ │ ├── gen_kernel.dart │ │ ├── kernel_service.dart │ │ ├── list_libraries.dart │ │ └── protobuf_aware_treeshaker.dart │ │ ├── lib │ │ ├── dominators.dart │ │ ├── http_filesystem.dart │ │ ├── incremental_compiler.dart │ │ ├── kernel_front_end.dart │ │ ├── metadata │ │ │ ├── call_site_attributes.dart │ │ │ ├── direct_call.dart │ │ │ ├── inferred_type.dart │ │ │ ├── loading_units.dart │ │ │ ├── obfuscation_prohibitions.dart │ │ │ ├── procedure_attributes.dart │ │ │ ├── table_selector.dart │ │ │ ├── unboxing_info.dart │ │ │ └── unreachable.dart │ │ ├── native_assets │ │ │ ├── diagnostic_message.dart │ │ │ ├── json_to_kernel_constant.dart │ │ │ ├── synthesizer.dart │ │ │ └── validator.dart │ │ ├── target │ │ │ ├── dart_runner.dart │ │ │ ├── flutter.dart │ │ │ ├── flutter_runner.dart │ │ │ ├── install.dart │ │ │ └── vm.dart │ │ ├── target_os.dart │ │ ├── testing │ │ │ └── il_matchers.dart │ │ └── transformations │ │ │ ├── call_site_annotator.dart │ │ │ ├── deferred_loading.dart │ │ │ ├── devirtualization.dart │ │ │ ├── ffi │ │ │ ├── abi.dart │ │ │ ├── common.dart │ │ │ ├── definitions.dart │ │ │ ├── finalizable.dart │ │ │ ├── native.dart │ │ │ ├── native_type_cfe.dart │ │ │ └── use_sites.dart │ │ │ ├── for_in_lowering.dart │ │ │ ├── late_var_init_transformer.dart │ │ │ ├── list_literals_lowering.dart │ │ │ ├── lowering.dart │ │ │ ├── mixin_deduplication.dart │ │ │ ├── mixin_full_resolution.dart │ │ │ ├── no_dynamic_invocations_annotator.dart │ │ │ ├── obfuscation_prohibitions_annotator.dart │ │ │ ├── pragma.dart │ │ │ ├── specializer │ │ │ ├── factory_specializer.dart │ │ │ ├── list_factory_specializer.dart │ │ │ ├── map_factory_specializer.dart │ │ │ └── set_factory_specializer.dart │ │ │ ├── to_string_transformer.dart │ │ │ ├── type_casts_optimizer.dart │ │ │ ├── type_flow │ │ │ ├── analysis.dart │ │ │ ├── calls.dart │ │ │ ├── finalizable_types.dart │ │ │ ├── native_code.dart │ │ │ ├── protobuf_handler.dart │ │ │ ├── rta.dart │ │ │ ├── signature_shaking.dart │ │ │ ├── summary.dart │ │ │ ├── summary_collector.dart │ │ │ ├── table_selector_assigner.dart │ │ │ ├── transformer.dart │ │ │ ├── types.dart │ │ │ ├── unboxing_info.dart │ │ │ └── utils.dart │ │ │ ├── unreachable_code_elimination.dart │ │ │ └── vm_constant_evaluator.dart │ │ ├── pubspec.yaml │ │ ├── test │ │ ├── common_test_utils.dart │ │ ├── dominators_test.dart │ │ ├── incremental_compiler_test.dart │ │ ├── kernel_front_end_test.dart │ │ ├── kernel_service_test.dart │ │ ├── modular_kernel_plus_aot_test.dart │ │ ├── native_assets │ │ │ ├── kernel_service_test.dart │ │ │ ├── synthesizer_test.dart │ │ │ └── validator_test.dart │ │ ├── obfuscation_test.dart │ │ ├── transformations │ │ │ ├── deferred_loading_test.dart │ │ │ ├── ffi_test.dart │ │ │ ├── protobuf_aware_treeshaker │ │ │ │ └── treeshaker_test.dart │ │ │ ├── to_string_transformer_test.dart │ │ │ ├── type_flow │ │ │ │ ├── summary_collector_test.dart │ │ │ │ ├── transformer_test.dart │ │ │ │ └── types_test.dart │ │ │ ├── unreachable_code_elimination_test.dart │ │ │ └── vm_constant_evaluator_test.dart │ │ └── unlinked_ast_to_text_test.dart │ │ ├── testcases │ │ └── transformations │ │ │ ├── analysis_options.yaml │ │ │ ├── deferred_loading │ │ │ ├── a.dart │ │ │ ├── b.dart │ │ │ ├── c.dart │ │ │ ├── d.dart │ │ │ ├── e.dart │ │ │ ├── f.dart │ │ │ ├── g.dart │ │ │ ├── h.dart │ │ │ ├── i.dart │ │ │ ├── j.dart │ │ │ ├── main.dart │ │ │ └── main.dart.expect │ │ │ ├── ffi │ │ │ ├── abi_specific_int.dart │ │ │ ├── abi_specific_int.dart.aot.expect │ │ │ ├── abi_specific_int.dart.expect │ │ │ ├── abi_specific_int_incomplete.dart │ │ │ ├── abi_specific_int_incomplete.dart.aot.expect │ │ │ ├── abi_specific_int_incomplete.dart.expect │ │ │ ├── compound_copies.dart │ │ │ ├── compound_copies.dart.aot.expect │ │ │ ├── compound_copies.dart.expect │ │ │ ├── ffinative.dart │ │ │ ├── ffinative.dart.aot.expect │ │ │ ├── ffinative.dart.expect │ │ │ ├── finalizable_async.dart │ │ │ ├── finalizable_async.dart.aot.expect │ │ │ ├── finalizable_async.dart.expect │ │ │ ├── finalizable_async_star.dart │ │ │ ├── finalizable_async_star.dart.aot.expect │ │ │ ├── finalizable_async_star.dart.expect │ │ │ ├── finalizable_extension_method.dart │ │ │ ├── finalizable_extension_method.dart.aot.expect │ │ │ ├── finalizable_extension_method.dart.expect │ │ │ ├── finalizable_late.dart │ │ │ ├── finalizable_late.dart.aot.expect │ │ │ ├── finalizable_late.dart.expect │ │ │ ├── finalizable_late_2.dart │ │ │ ├── finalizable_late_2.dart.aot.expect │ │ │ ├── finalizable_late_2.dart.expect │ │ │ ├── finalizable_late_initializer.dart │ │ │ ├── finalizable_late_initializer.dart.aot.expect │ │ │ ├── finalizable_late_initializer.dart.expect │ │ │ ├── finalizable_member.dart │ │ │ ├── finalizable_member.dart.aot.expect │ │ │ ├── finalizable_member.dart.expect │ │ │ ├── finalizable_sync.dart │ │ │ ├── finalizable_sync.dart.aot.expect │ │ │ ├── finalizable_sync.dart.expect │ │ │ ├── finalizable_sync2.dart │ │ │ ├── finalizable_sync2.dart.aot.expect │ │ │ ├── finalizable_sync2.dart.expect │ │ │ ├── finalizable_sync3.dart │ │ │ ├── finalizable_sync3.dart.aot.expect │ │ │ ├── finalizable_sync3.dart.expect │ │ │ ├── finalizable_sync_star.dart │ │ │ ├── finalizable_sync_star.dart.aot.expect │ │ │ ├── finalizable_sync_star.dart.expect │ │ │ ├── regress_49075.dart │ │ │ ├── regress_49075.dart.aot.expect │ │ │ ├── regress_49075.dart.expect │ │ │ ├── regress_51538.dart │ │ │ ├── regress_51538.dart.aot.expect │ │ │ ├── regress_51538.dart.expect │ │ │ ├── regress_51538_2.dart │ │ │ ├── regress_51538_2.dart.aot.expect │ │ │ ├── regress_51538_2.dart.expect │ │ │ ├── regress_51538_3.dart │ │ │ ├── regress_51538_3.dart.aot.expect │ │ │ └── regress_51538_3.dart.expect │ │ │ ├── to_string_transformer │ │ │ ├── .dart_tool │ │ │ │ └── package_config.json │ │ │ ├── .gitignore │ │ │ ├── lib │ │ │ │ └── main.dart │ │ │ ├── not_transformed.expect │ │ │ └── transformed.expect │ │ │ ├── type_flow │ │ │ ├── summary_collector │ │ │ │ ├── bool_expressions.dart │ │ │ │ ├── bool_expressions.dart.expect │ │ │ │ ├── calls.dart │ │ │ │ ├── calls.dart.expect │ │ │ │ ├── class_generics.dart.expect │ │ │ │ ├── class_generics_basic.dart │ │ │ │ ├── class_generics_basic.dart.expect │ │ │ │ ├── class_generics_case1.dart │ │ │ │ ├── class_generics_case1.dart.expect │ │ │ │ ├── constants.dart │ │ │ │ ├── constants.dart.expect │ │ │ │ ├── control_flow.dart │ │ │ │ ├── control_flow.dart.expect │ │ │ │ ├── hello.dart │ │ │ │ ├── hello.dart.expect │ │ │ │ ├── implicit_return_null.dart │ │ │ │ ├── implicit_return_null.dart.expect │ │ │ │ ├── params.dart │ │ │ │ ├── params.dart.expect │ │ │ │ ├── records.dart │ │ │ │ ├── records.dart.expect │ │ │ │ ├── records.dart.options │ │ │ │ ├── setter_result.dart │ │ │ │ ├── setter_result.dart.expect │ │ │ │ ├── vars.dart │ │ │ │ └── vars.dart.expect │ │ │ └── transformer │ │ │ │ ├── abstract_class_entry_point.dart │ │ │ │ ├── abstract_class_entry_point.dart.expect │ │ │ │ ├── annotation.dart │ │ │ │ ├── annotation.dart.expect │ │ │ │ ├── async_await.dart │ │ │ │ ├── async_await.dart.expect │ │ │ │ ├── bench_is_prime.dart │ │ │ │ ├── bench_is_prime.dart.expect │ │ │ │ ├── bench_vector.dart │ │ │ │ ├── bench_vector.dart.expect │ │ │ │ ├── class_generics_basic.dart │ │ │ │ ├── class_generics_basic.dart.expect │ │ │ │ ├── class_generics_case1.dart │ │ │ │ ├── class_generics_case1.dart.expect │ │ │ │ ├── const_default.dart │ │ │ │ ├── const_default.dart.expect │ │ │ │ ├── const_default.dart.options │ │ │ │ ├── const_default.lib.dart │ │ │ │ ├── const_map.dart │ │ │ │ ├── const_map.dart.expect │ │ │ │ ├── const_prop.dart │ │ │ │ ├── const_prop.dart.expect │ │ │ │ ├── const_set.dart │ │ │ │ ├── const_set.dart.expect │ │ │ │ ├── devirt.dart │ │ │ │ ├── devirt.dart.expect │ │ │ │ ├── dynamic_list_access.dart │ │ │ │ ├── dynamic_list_access.dart.expect │ │ │ │ ├── enum_from_lib_used_as_type.dart │ │ │ │ ├── enum_from_lib_used_as_type.dart.expect │ │ │ │ ├── enum_from_lib_used_as_type.dart.options │ │ │ │ ├── enum_from_lib_used_as_type.lib.dart │ │ │ │ ├── enum_used_as_type.dart │ │ │ │ ├── enum_used_as_type.dart.expect │ │ │ │ ├── ffi_struct_constructors.dart │ │ │ │ ├── ffi_struct_constructors.dart.expect │ │ │ │ ├── future.dart │ │ │ │ ├── future.dart.expect │ │ │ │ ├── future_or.dart │ │ │ │ ├── future_or.dart.expect │ │ │ │ ├── hello.dart │ │ │ │ ├── hello.dart.expect │ │ │ │ ├── instance_fields_with_initializers.dart │ │ │ │ ├── instance_fields_with_initializers.dart.expect │ │ │ │ ├── invalidation_cycle.dart │ │ │ │ ├── invalidation_cycle.dart.expect │ │ │ │ ├── invalidation_field_initializer.dart │ │ │ │ ├── invalidation_field_initializer.dart.expect │ │ │ │ ├── invalidation_new_class1.dart │ │ │ │ ├── invalidation_new_class1.dart.expect │ │ │ │ ├── invalidation_new_class2.dart │ │ │ │ ├── invalidation_new_class2.dart.expect │ │ │ │ ├── invalidation_new_dynamic_target.dart │ │ │ │ ├── invalidation_new_dynamic_target.dart.expect │ │ │ │ ├── invalidation_set_field.dart │ │ │ │ ├── invalidation_set_field.dart.expect │ │ │ │ ├── invalidation_set_field2.dart │ │ │ │ ├── invalidation_set_field2.dart.expect │ │ │ │ ├── invalidation_while_processing.dart │ │ │ │ ├── invalidation_while_processing.dart.expect │ │ │ │ ├── is_test_elimination.dart │ │ │ │ ├── is_test_elimination.dart.expect │ │ │ │ ├── lists.dart │ │ │ │ ├── lists.dart.expect │ │ │ │ ├── mixin_with_field_test.dart │ │ │ │ ├── mixin_with_field_test.dart.expect │ │ │ │ ├── named_params_shaking_test.dart │ │ │ │ ├── named_params_shaking_test.dart.expect │ │ │ │ ├── no_such_method.dart │ │ │ │ ├── no_such_method.dart.expect │ │ │ │ ├── null_check_elimination.dart │ │ │ │ ├── null_check_elimination.dart.expect │ │ │ │ ├── null_test_elimination.dart │ │ │ │ ├── null_test_elimination.dart.expect │ │ │ │ ├── null_test_elimination2.dart │ │ │ │ ├── null_test_elimination2.dart.expect │ │ │ │ ├── param_types_before_strong_mode_checks.dart │ │ │ │ ├── param_types_before_strong_mode_checks.dart.expect │ │ │ │ ├── pragmas.dart │ │ │ │ ├── pragmas.dart.expect │ │ │ │ ├── protobuf_handler │ │ │ │ ├── compile_protos.sh │ │ │ │ ├── lib │ │ │ │ │ ├── create_test.dart │ │ │ │ │ ├── create_test.dart.expect │ │ │ │ │ ├── decode_test.dart │ │ │ │ │ ├── decode_test.dart.expect │ │ │ │ │ ├── encode_all_fields.dart │ │ │ │ │ ├── encode_all_fields.dart.expect │ │ │ │ │ ├── freeze_test.dart │ │ │ │ │ ├── freeze_test.dart.expect │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── foo.pb.dart │ │ │ │ │ │ └── name_mangling.pb.dart │ │ │ │ │ ├── name_mangling_test.dart │ │ │ │ │ ├── name_mangling_test.dart.expect │ │ │ │ │ ├── nop_test.dart │ │ │ │ │ └── nop_test.dart.expect │ │ │ │ └── protos │ │ │ │ │ ├── foo.proto │ │ │ │ │ └── name_mangling.proto │ │ │ │ ├── records.dart │ │ │ │ ├── records.dart.expect │ │ │ │ ├── records.dart.options │ │ │ │ ├── records_dart2wasm.dart │ │ │ │ ├── records_dart2wasm.dart.expect │ │ │ │ ├── records_dart2wasm.dart.options │ │ │ │ ├── regress_37455.dart │ │ │ │ ├── regress_37455.dart.expect │ │ │ │ ├── regress_37719.dart │ │ │ │ ├── regress_37719.dart.expect │ │ │ │ ├── regress_41452.dart │ │ │ │ ├── regress_41452.dart.expect │ │ │ │ ├── regress_42413.dart │ │ │ │ ├── regress_42413.dart.expect │ │ │ │ ├── regress_42418_1_test.dart │ │ │ │ ├── regress_42418_1_test.dart.expect │ │ │ │ ├── regress_42418_2_test.dart │ │ │ │ ├── regress_42418_2_test.dart.expect │ │ │ │ ├── regress_45324.dart │ │ │ │ ├── regress_45324.dart.expect │ │ │ │ ├── regress_45324_2.dart │ │ │ │ ├── regress_45324_2.dart.expect │ │ │ │ ├── regress_46461.dart │ │ │ │ ├── regress_46461.dart.expect │ │ │ │ ├── regress_47878.dart │ │ │ │ ├── regress_47878.dart.expect │ │ │ │ ├── regress_50392.dart │ │ │ │ ├── regress_50392.dart.expect │ │ │ │ ├── regress_51190.dart │ │ │ │ ├── regress_51190.dart.expect │ │ │ │ ├── regress_flutter16182.dart │ │ │ │ ├── regress_flutter16182.dart.expect │ │ │ │ ├── regress_flutter57213.dart │ │ │ │ ├── regress_flutter57213.dart.expect │ │ │ │ ├── regress_flutter81068.dart │ │ │ │ ├── regress_flutter81068.dart.expect │ │ │ │ ├── selector_id_assignments.dart │ │ │ │ ├── selector_id_assignments.dart.expect │ │ │ │ ├── set_map_constructor_concrete.dart │ │ │ │ ├── set_map_constructor_concrete.dart.expect │ │ │ │ ├── tear_off_dynamic_method.dart │ │ │ │ ├── tear_off_dynamic_method.dart.expect │ │ │ │ ├── tear_off_interface_method.dart │ │ │ │ ├── tear_off_interface_method.dart.expect │ │ │ │ ├── tear_off_super_method.dart │ │ │ │ ├── tear_off_super_method.dart.expect │ │ │ │ ├── tree_shake_enum_from_lib.dart │ │ │ │ ├── tree_shake_enum_from_lib.dart.expect │ │ │ │ ├── tree_shake_enum_from_lib.dart.options │ │ │ │ ├── tree_shake_enum_from_lib.lib.dart │ │ │ │ ├── tree_shake_field.dart │ │ │ │ ├── tree_shake_field.dart.expect │ │ │ │ ├── tree_shake_field.lib.dart │ │ │ │ ├── tree_shake_field_linked.dart │ │ │ │ ├── tree_shake_field_linked.dart.expect │ │ │ │ ├── tree_shake_field_linked.dart.options │ │ │ │ ├── type_cast_elimination.dart │ │ │ │ ├── type_cast_elimination.dart.expect │ │ │ │ ├── unboxed_getters.dart │ │ │ │ ├── unboxed_getters.dart.expect │ │ │ │ ├── unboxed_instance_fields.dart │ │ │ │ ├── unboxed_instance_fields.dart.expect │ │ │ │ ├── unboxed_instance_method.dart │ │ │ │ ├── unboxed_instance_method.dart.expect │ │ │ │ ├── unboxed_instance_method_tearoff.dart │ │ │ │ ├── unboxed_instance_method_tearoff.dart.expect │ │ │ │ ├── unboxed_records.dart │ │ │ │ ├── unboxed_records.dart.expect │ │ │ │ ├── unboxed_static_method.dart │ │ │ │ ├── unboxed_static_method.dart.expect │ │ │ │ ├── unboxed_static_method_tearoff.dart │ │ │ │ ├── unboxed_static_method_tearoff.dart.expect │ │ │ │ ├── unfinished_static_field_init.dart │ │ │ │ ├── unfinished_static_field_init.dart.expect │ │ │ │ ├── unreachable.dart │ │ │ │ ├── unreachable.dart.expect │ │ │ │ ├── weak.dart │ │ │ │ ├── weak.dart.expect │ │ │ │ ├── write_only_field.dart │ │ │ │ ├── write_only_field.dart.expect │ │ │ │ ├── write_only_field2.dart │ │ │ │ ├── write_only_field2.dart.expect │ │ │ │ ├── write_only_field3.dart │ │ │ │ └── write_only_field3.dart.expect │ │ │ ├── unreachable_code_elimination │ │ │ ├── uce_testcases.dart │ │ │ └── uce_testcases.dart.expect │ │ │ └── vm_constant_evaluator │ │ │ ├── platform_testcases.dart │ │ │ ├── platform_testcases.dart.android.expect │ │ │ ├── platform_testcases.dart.fuchsia.expect │ │ │ ├── platform_testcases.dart.ios.expect │ │ │ ├── platform_testcases.dart.linux.expect │ │ │ ├── platform_testcases.dart.macos.expect │ │ │ └── platform_testcases.dart.windows.expect │ │ └── tool │ │ ├── compare_il │ │ ├── compare_il.bat │ │ ├── dart_precompiled_runtime2 │ │ ├── dump_kernel │ │ ├── gen_kernel │ │ ├── gen_kernel.bat │ │ └── precompiler2 ├── pubspec.yaml ├── snapshot.dart ├── tool │ └── starter.dart ├── transformer │ ├── plugins │ │ ├── aop │ │ │ ├── aop_transformer_wrapper.dart │ │ │ ├── beike_transformer │ │ │ │ ├── aop_addimpl_transformer.dart │ │ │ │ └── aop_field_get_transformer.dart │ │ │ └── transformer │ │ │ │ ├── aop_callimpl_transformer.dart │ │ │ │ ├── aop_executeimpl_transformer.dart │ │ │ │ ├── aop_injectimpl_transformer.dart │ │ │ │ ├── aop_iteminfo.dart │ │ │ │ ├── aop_mode.dart │ │ │ │ └── aop_tranform_utils.dart │ │ └── pluginDemo │ │ │ └── pluginDemo.dart │ └── transformer_wrapper.dart └── util │ └── dill_ops.dart ├── lib ├── aspectd.dart ├── bin │ ├── gen_snapshot.sh │ └── starter.snapshot └── src │ └── plugins │ └── aop │ ├── annotation │ ├── annotation_info.dart │ ├── aspect.dart │ ├── call.dart │ ├── execute.dart │ ├── inject.dart │ └── pointcut.dart │ ├── aop.dart │ └── beike_annotation │ ├── add.dart │ └── field_get.dart └── pubspec.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## 1.1.0 2 | * release 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/README.md -------------------------------------------------------------------------------- /doc/debugtools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/debugtools.png -------------------------------------------------------------------------------- /doc/frondend配置.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/frondend配置.png -------------------------------------------------------------------------------- /doc/frontend参数.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/frontend参数.png -------------------------------------------------------------------------------- /doc/hook流程.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/hook流程.jpg -------------------------------------------------------------------------------- /doc/toolscommandline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/toolscommandline.png -------------------------------------------------------------------------------- /doc/tools输出.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/tools输出.png -------------------------------------------------------------------------------- /doc/如何调试.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/如何调试.md -------------------------------------------------------------------------------- /doc/调试入口.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/doc/调试入口.png -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | android.enableR8=true 3 | -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/android/local.properties -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/aop_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/aop_config.yaml -------------------------------------------------------------------------------- /example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/ios/Runner/AppDelegate.h -------------------------------------------------------------------------------- /example/ios/Runner/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/ios/Runner/AppDelegate.m -------------------------------------------------------------------------------- /example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /example/ios/Runner/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/ios/Runner/main.m -------------------------------------------------------------------------------- /example/lib/hook_example.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/lib/hook_example.dart -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/lib/receiver_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/lib/receiver_test.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/example/test/widget_test.dart -------------------------------------------------------------------------------- /inner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/.gitignore -------------------------------------------------------------------------------- /inner/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/CHANGELOG.md -------------------------------------------------------------------------------- /inner/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/LICENSE -------------------------------------------------------------------------------- /inner/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/analysis_options.yaml -------------------------------------------------------------------------------- /inner/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/config.yaml -------------------------------------------------------------------------------- /inner/flutter_tools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/flutter_tools.patch -------------------------------------------------------------------------------- /inner/pkg/_js_interop_checks/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/build_integration/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_FOUNDATION 2 | -------------------------------------------------------------------------------- /inner/pkg/build_integration/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /inner/pkg/compiler/.gitignore: -------------------------------------------------------------------------------- 1 | .dart_tool/ 2 | .packages 3 | -------------------------------------------------------------------------------- /inner/pkg/compiler/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/compiler/README.md -------------------------------------------------------------------------------- /inner/pkg/compiler/doc/pragmas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/compiler/doc/pragmas.md -------------------------------------------------------------------------------- /inner/pkg/compiler/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/compiler/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_ENG 2 | -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_0_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_1_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_2_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test0_3_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_0_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_1_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_2_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test1_3_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_0_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_1_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_2_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_0.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_1.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_2.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_3.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_4.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_5.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_6.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/test/codesize/swarm/data/Test2_3_7.html: -------------------------------------------------------------------------------- 1 | Lorem ipsum something or other... -------------------------------------------------------------------------------- /inner/pkg/compiler/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/compiler/testing.json -------------------------------------------------------------------------------- /inner/pkg/compiler/tool/szcmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/compiler/tool/szcmp -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dart2js_info/.gitignore -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dart2js_info/AUTHORS -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dart2js_info/LICENSE -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dart2js_info/README.md -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dart2js_info/info.proto -------------------------------------------------------------------------------- /inner/pkg/dart2js_info/test/hello_world/hello_world.dart: -------------------------------------------------------------------------------- 1 | void main() { 2 | print("Hello, World!"); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/dev_compiler/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dev_compiler/.gitignore -------------------------------------------------------------------------------- /inner/pkg/dev_compiler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dev_compiler/LICENSE -------------------------------------------------------------------------------- /inner/pkg/dev_compiler/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/dev_compiler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dev_compiler/README.md -------------------------------------------------------------------------------- /inner/pkg/dev_compiler/tool/ddb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/dev_compiler/tool/ddb -------------------------------------------------------------------------------- /inner/pkg/front_end/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/LICENSE -------------------------------------------------------------------------------- /inner/pkg/front_end/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_CFE 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/PRESUBMIT.py -------------------------------------------------------------------------------- /inner/pkg/front_end/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/README.md -------------------------------------------------------------------------------- /inner/pkg/front_end/messages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/messages.yaml -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports/a.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports/a2.dart: -------------------------------------------------------------------------------- 1 | class Foo2 {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports/b.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports/b2.dart: -------------------------------------------------------------------------------- 1 | class Foo2 {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports/c.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports/c2.dart: -------------------------------------------------------------------------------- 1 | class Foo2 {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/conditional_imports_exports_2/exists2.dart: -------------------------------------------------------------------------------- 1 | class Foo2 {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/exports_included/main.dart: -------------------------------------------------------------------------------- 1 | export "test6.dart"; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/exports_included/test6.dart: -------------------------------------------------------------------------------- 1 | export "test7.dart"; 2 | 3 | void test6() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/exports_included/test7.dart: -------------------------------------------------------------------------------- 1 | void test7() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/extends/foo.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/extends/main.dart: -------------------------------------------------------------------------------- 1 | import "foo.dart"; 2 | 3 | class X extends Foo {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/import_with_prefix_02/a.dart: -------------------------------------------------------------------------------- 1 | String foo() { 2 | return "foo"; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/import_with_prefix_02/b.dart: -------------------------------------------------------------------------------- 1 | String bar() { 2 | return "bar"; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/metadata_01/a.dart: -------------------------------------------------------------------------------- 1 | class AUnused {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/named_mixin/bar.dart: -------------------------------------------------------------------------------- 1 | export "baz.dart"; 2 | 3 | mixin Bar {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/named_mixin/baz.dart: -------------------------------------------------------------------------------- 1 | class Baz {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/outline_extractor.status: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/part_01/test13andahalf.dart: -------------------------------------------------------------------------------- 1 | class Test13AndAHalf {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/part_01/test14.dart: -------------------------------------------------------------------------------- 1 | class Test14 {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/split_import_export_part/foo.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/unused_import/foo.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/unused_import_02/baz.dart: -------------------------------------------------------------------------------- 1 | class Baz {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/outline_extraction_testcases/unused_import_02/foo.dart: -------------------------------------------------------------------------------- 1 | class Foo {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/bracket_mismatch_02.dart: -------------------------------------------------------------------------------- 1 | void foo() { 2 | {[}; 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/bracket_mismatch_05.dart: -------------------------------------------------------------------------------- 1 | void foo() { 2 | {[1}; 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/bracket_mismatch_06.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | new C(; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/empty_await_for.dart: -------------------------------------------------------------------------------- 1 | main() async { 2 | await for () {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_38415.crash_dart: -------------------------------------------------------------------------------- 1 | f() { m(T} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_39060.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | {s A<}> 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_39202.crash_dart: -------------------------------------------------------------------------------- 1 | () async => a b < c $? > -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_39958_01.dart: -------------------------------------------------------------------------------- 1 | void f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_39958_02.dart: -------------------------------------------------------------------------------- 1 | dynamic f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_39958_03.dart: -------------------------------------------------------------------------------- 1 | int f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_39958_04.dart: -------------------------------------------------------------------------------- 1 | Foo f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229.crash_dart: -------------------------------------------------------------------------------- 1 | Stream> /* nothing here */ -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229_prime.crash_dart: -------------------------------------------------------------------------------- 1 | Stream > -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229_prime_2.crash_dart: -------------------------------------------------------------------------------- 1 | Stream> foo() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229_prime_3.crash_dart: -------------------------------------------------------------------------------- 1 | Stream> -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229_prime_4.crash_dart: -------------------------------------------------------------------------------- 1 | Stream> y; -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229_prime_5.dart: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_42229_prime_6.dart: -------------------------------------------------------------------------------- 1 | const foo -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_43090.crash_dart: -------------------------------------------------------------------------------- 1 | typedef A< = void Function(); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_43090_prime_01.crash_dart: -------------------------------------------------------------------------------- 1 | typedef A = void Function(); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_43090_prime_02.crash_dart: -------------------------------------------------------------------------------- 1 | typedef A<>= void Function(); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_45327.crash_dart: -------------------------------------------------------------------------------- 1 | main() { 2 | if (n is int or 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_46346_prime_2.dart: -------------------------------------------------------------------------------- 1 | class -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_46505_prime_1.crash_dart: -------------------------------------------------------------------------------- 1 | class A { 2 | Stream> x() {} 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_46505_prime_2.crash_dart: -------------------------------------------------------------------------------- 1 | class A { 2 | Stream> x() {} 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_46505_prime_3.crash_dart: -------------------------------------------------------------------------------- 1 | class A { 2 | Stream>> 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_46736.dart: -------------------------------------------------------------------------------- 1 | void test(String default) { } 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_46736_prime.dart: -------------------------------------------------------------------------------- 1 | void test(String defaultX) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_48288.dart: -------------------------------------------------------------------------------- 1 | void f(int x) { 2 | g(: 1, bbb: 0); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_48288_prime.dart: -------------------------------------------------------------------------------- 1 | void f(int x) { 2 | g(foo: 1, bbb: 0); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_48371_prime1.dart: -------------------------------------------------------------------------------- 1 | library enum; 2 | 3 | main() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/error_recovery/issue_48371_prime2.dart: -------------------------------------------------------------------------------- 1 | import "lib.dart" as enum; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/assignment.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | foo = 42; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/chained_call_01.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e()(); 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/chained_call_02.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e()(); 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/chained_call_03.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e.f()(); 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/chained_call_04.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e.f()(); 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/chained_call_05.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | (e())(); 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/chained_call_06.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | (e.f())(); 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/for_in.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | for (var i in []) {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/issue_47008_01.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | a(b < c, d < e, 1 >> (2)); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/issue_47009_01.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | a(b < c, as > (1)); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/issue_47009_02.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | a(b < c, d < e, as >> (1)); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/missing_end_bracket.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | print("Hello, World!"); 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/general/try_catch.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | try {} catch (e, s) {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/chained_call_02.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e!()!()!; 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/chained_call_04.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e!.f!()!()!; 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_39286.dart: -------------------------------------------------------------------------------- 1 | void test(C x) { 2 | x..f()!.g()..h(); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_39286_2.dart: -------------------------------------------------------------------------------- 1 | void test(C x) { 2 | x..f()!.g()['Hi!']!..h()!.y = 2; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_39286_prime.dart: -------------------------------------------------------------------------------- 1 | void test(C x) { 2 | x..f().g()..h(); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_40267_lookup_plus.dart: -------------------------------------------------------------------------------- 1 | f(dynamic a) { 2 | a?[0] + 1; 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_40793_prime4.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e.x < 10; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_40793_prime5.dart: -------------------------------------------------------------------------------- 1 | void f(dynamic e) { 2 | e.x! < 10; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/issue_44477.dart: -------------------------------------------------------------------------------- 1 | Future> -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckBeforeIndex.dart: -------------------------------------------------------------------------------- 1 | f() { foo.bar!.baz[arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckBeforeIndex_with_parens.dart: -------------------------------------------------------------------------------- 1 | f() { (foo.bar)!.baz[arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckOnIndex.dart: -------------------------------------------------------------------------------- 1 | f() { obj![arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckOnIndex3.dart: -------------------------------------------------------------------------------- 1 | f() { foo.bar![arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckOnIndex3_with_parens.dart: -------------------------------------------------------------------------------- 1 | f() { (foo.bar)![arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckOnIndex4.dart: -------------------------------------------------------------------------------- 1 | f() { foo!.bar![arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckOnIndex4_with_parens.dart: -------------------------------------------------------------------------------- 1 | f() { ((foo!).bar!)[arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/nnbd/nullCheckOnIndex_with_parens.dart: -------------------------------------------------------------------------------- 1 | f() { (obj!)[arg]; } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/no-triple-shift/triple_shift_symbol.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | print(#>>>); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/non-nnbd/issue_39326.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | var c; 3 | c?.[1] = 42; 4 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/list_insideAssignment_untyped_empty.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | [] = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/list_insideDeclaration_untyped_empty.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var [] = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/map_insideAssignment_untyped_empty.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | ({} = x); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/map_insideDeclaration_untyped_empty.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var {} = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_async.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var async() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_await.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var await() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_hide.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var hide() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_of.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var of() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_on.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var on() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_show.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var show() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_sync.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var sync() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/object_otherIdentifier_yield.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var yield() = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/parenthesized_insideAssignment.dart: -------------------------------------------------------------------------------- 1 | f(x) { 2 | (a) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/parenthesized_insideDeclaration.dart: -------------------------------------------------------------------------------- 1 | f(x) { 2 | var (a) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/patternVariableDeclaration_topLevel.dart: -------------------------------------------------------------------------------- 1 | var (a, b) = (0, 1); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/record_insideAssignment_empty.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | () = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/record_insideAssignment_oneField.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | (a,) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/record_insideAssignment_twoFields.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | (a, b) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/record_insideDeclaration_empty.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var () = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/record_insideDeclaration_oneField.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var (a,) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/skipOuterPattern_eof.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | int var = 0; 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/variable_bare_insideCast.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var (y as Object) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/variable_bare_insideNullAssert.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | var (y!) = x; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/wildcard_bare_insideIfCase.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | if (x case _) {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/wildcard_typed_insideIfCase.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | if (x case int _) {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/parser_testcases/patterns/wildcard_var_insideIfCase.dart: -------------------------------------------------------------------------------- 1 | void f(x) { 2 | if (x case var _) {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/front_end/test/fasta/util/parser_ast_test_data/script_handle.txt: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env dart -c 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/test/fasta/util/parser_ast_test_data/top_level_stuff_helper.txt: -------------------------------------------------------------------------------- 1 | part of 'top_level_stuff.txt'; -------------------------------------------------------------------------------- /inner/pkg/front_end/test/language_versioning/data/issue42661a/pack/lib/src/part.dart: -------------------------------------------------------------------------------- 1 | part of pack; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/test/language_versioning/data/issue42661b/lib/src/part.dart: -------------------------------------------------------------------------------- 1 | part of pack; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/test/static_types/type_arguments.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/agnostic/folder.options: -------------------------------------------------------------------------------- 1 | --nnbd-agnostic -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/base/outside_library/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/base/outside_library_implements/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/base/typedef/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/final/outside_library/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/final/outside_library_no_base_final_sealed/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/final/typedef/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/interface/outside_library/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/interface/typedef/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/issue52161/test.options: -------------------------------------------------------------------------------- 1 | main_lib2.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/mixin/no_modifier_outside_library/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/mixin/no_modifier_outside_library_legacy/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/mixin/outside_library/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/mixin/outside_library_legacy/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/class_modifiers/mixin/outside_library_modifier/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/const_functions/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=const-functions 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/constructor_tearoffs/folder.options: -------------------------------------------------------------------------------- 1 | --force-constructor-tear-off-lowering=0 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/constructor_tearoffs/lowering/folder.options: -------------------------------------------------------------------------------- 1 | --force-constructor-tear-off-lowering 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/constructor_tearoffs/lowering/from_dill/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/constructor_tearoffs/lowering/typedef_from_dill/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/async_lowering/disabled/folder.options: -------------------------------------------------------------------------------- 1 | --target=dart2js 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/async_lowering/folder.options: -------------------------------------------------------------------------------- 1 | -D--simple-async-to-future 2 | --target=dart2js 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/flutter_issue94561/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/folder.options: -------------------------------------------------------------------------------- 1 | --target=dart2js 2 | --no-defines 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/inline_class/folder.options: -------------------------------------------------------------------------------- 1 | --target=dart2js 2 | --enable-experiment=inline-class -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/issue48776.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/issue48776.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/list_generate.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/list_generate.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/list_generate_2.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/list_generate_2.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/list_generate_local_function_invocation.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/list_generate_local_function_invocation.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/mixin_super/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2js/tear_off_patch/main.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'dart:test'; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dart2wasm/folder.options: -------------------------------------------------------------------------------- 1 | --target=wasm -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/factory_patch/main.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'dart:test'; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/folder.options: -------------------------------------------------------------------------------- 1 | --target=dartdevc -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/inline_class/folder.options: -------------------------------------------------------------------------------- 1 | --target=dartdevc 2 | --enable-experiment=inline-class -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/issue51449.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/issue51449.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/mixin_super/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/symbol.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() => const Symbol('a'); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/dartdevc/symbol.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() => const Symbol('a'); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/enhanced_enums/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/enhanced_enums/named_arguments_anywhere/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/enhanced_enums/super_parameters/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/expression/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/expression/noclass.expression.yaml.expect: -------------------------------------------------------------------------------- 1 | Errors: { 2 | } 3 | 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/expression/wrong_position.expression.yaml.expect: -------------------------------------------------------------------------------- 1 | Errors: { 2 | } 3 | 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/extension_types/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=extension-types -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/extensions/import_from_dill/test.options: -------------------------------------------------------------------------------- 1 | main_lib1.dart 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/extensions/issue38712.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | extension C on{} 2 | void main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/extensions/issue39938/test.options: -------------------------------------------------------------------------------- 1 | issue39938_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/annotation_eof.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | @AnnotationAtEOF 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/await.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/await.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/bug31124.dart: -------------------------------------------------------------------------------- 1 | var a = () => 'b';a(); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/bug31124.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | var a = () => 'b'; 2 | a(); 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/cascade.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/cascade.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/casts.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/casts.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/constants/from_lib/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/constants/js_semantics/folder.options: -------------------------------------------------------------------------------- 1 | --target=dart2js -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/continue_label_invalid.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/continue_label_invalid.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/control_flow_collection.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | oracle() => true; 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/crashes/crash_06/main.dart: -------------------------------------------------------------------------------- 1 | mixin A on C, D {} 2 | class B extends C with D, A {} -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/deeply_nested_types.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/deeply_nested_types.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/default_values.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | topLevel([a = 42]) => a; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/empty_switch.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/empty_switch.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/empty_await_for.dart: -------------------------------------------------------------------------------- 1 | main() async { 2 | await for () {} 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/empty_await_for.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/empty_await_for.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/empty_for.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/empty_for.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/for_in_with_colon.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/for_in_with_colon.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_38415.crash_dart: -------------------------------------------------------------------------------- 1 | f() { m(T.=; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39033b.crash_dart: -------------------------------------------------------------------------------- 1 | // @dart=2.12 2 | typedef F} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39058_prime.crash_dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | {<[]()>} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39060.dart: -------------------------------------------------------------------------------- 1 | main() { 2 | {s A<}> 3 | } -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39060.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39060.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39202.crash_dart: -------------------------------------------------------------------------------- 1 | () async => a b < c $? > -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_01.dart: -------------------------------------------------------------------------------- 1 | void f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_01.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_02.dart: -------------------------------------------------------------------------------- 1 | dynamic f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_02.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | dynamic f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_02.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | dynamic f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_03.dart: -------------------------------------------------------------------------------- 1 | int f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_03.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | int f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_03.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | int f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_04.dart: -------------------------------------------------------------------------------- 1 | Foo f() {} -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_04.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | Foo f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_39958_04.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | Foo f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/issue_43090.crash_dart: -------------------------------------------------------------------------------- 1 | typedef A< = void Function(); 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/error_recovery/parse_error_in_try_on_clause.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void foo() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/experiment_release_version/test.options: -------------------------------------------------------------------------------- 1 | --fix-nnbd-release-version -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/export_main.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | export 'hello.dart' show main; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/export_main.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | export 'hello.dart' show main; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/factory_patch/main.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'dart:test'; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/flutter_issue68092/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/for_in_scope.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main(List arguments) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/for_in_scope.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main(List arguments) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/functions.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/functions.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/hello.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/hello.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/if_case_disabled.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.18 2 | test(dynamic x) {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/if_null_in_list_literal.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/if_null_in_list_literal.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/if_null_in_set_literal.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/if_null_in_set_literal.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/illegal_named_function_expression.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/illegal_named_function_expression.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/illegal_named_function_expression_scope.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/illegal_named_function_expression_scope.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/instantiate_enum/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/invocations.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/invocations.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue41210b/test.options: -------------------------------------------------------------------------------- 1 | issue41210_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue45101/main.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'dart:test'; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue46581/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue49122.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(x) => x(); 2 | void test2() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue49122.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(x) => x(); 2 | void test2() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue49697/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue49697_2/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue51815/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue_48999.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/issue_48999.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/labeled_default.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/labeled_default.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/local_generic_function.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/local_generic_function.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/map.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/map.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/minimum_int.dart: -------------------------------------------------------------------------------- 1 | main() => print(-9223372036854775808); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/minimum_int.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() => print(-9223372036854775808); 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/mixin_super/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/nested_variable_set.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.9 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/nested_variable_set.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.9 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/omitted_break.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | method(e) {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/omitted_break.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | method(e) {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/platform.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/platform.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/tear_off_patch/main.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'dart:test'; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/abstract_members_from_dill/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/issue43538/test.options: -------------------------------------------------------------------------------- 1 | const_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/issue_43084/test.options: -------------------------------------------------------------------------------- 1 | issue_43084_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/issue_43084_2/test.options: -------------------------------------------------------------------------------- 1 | issue_43084_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/mixin_from_dill/test.options: -------------------------------------------------------------------------------- 1 | mixin_from_dill_lib1.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/variance_from_dill/test.options: -------------------------------------------------------------------------------- 1 | variance_from_dill_lib.dart 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/general/with_dependencies/variance_from_dill/variance_from_dill_lib.dart: -------------------------------------------------------------------------------- 1 | typedef F = Function(); -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/generic_metadata/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/generic_metadata/from_dill/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/implicit_getter_calls/folder.options: -------------------------------------------------------------------------------- 1 | --force-no-explicit-getter-calls 2 | --target=none 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/bug32291_2.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | library test; 2 | 3 | void main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/complex_predecrement.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | library test; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/infer_consts_transitively_b.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | const b1 = 2; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/infer_statics_transitively_b.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | final b1 = 2; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/int_upwards_local.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | library test; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference/propagate_variable_get.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | library test; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference_new/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference_update_1/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inference_update_2/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=inference-update-2 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/inline_class/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=inline-class -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/instantiate_to_bound/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/late_lowering/issue41436c/test.options: -------------------------------------------------------------------------------- 1 | issue41436c_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/late_lowering/issue51449.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/late_lowering/issue51449.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/macros/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=macros -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/named_arguments_anywhere/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/new_const_insertion/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/infer_from_late_variable.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | T f(T t) => t; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/issue41114.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/issue41114.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/issue42743.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/issue42743.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/no_support_for_old_null_aware_index_access_syntax.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/spread_if_null.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/spread_if_null.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/strong_lib_not_ok_from_dill/test.options: -------------------------------------------------------------------------------- 1 | strong_lib.dart 2 | --nnbd-weak -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/strong_ok_from_dill/strong_lib.dart: -------------------------------------------------------------------------------- 1 | void foo() { 2 | print("hello"); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/strong_ok_from_dill/test.options: -------------------------------------------------------------------------------- 1 | strong_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd/strong_ok_from_source/strong_lib.dart: -------------------------------------------------------------------------------- 1 | void foo() { 2 | print("hello"); 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/default_type_from_opt_in/test.options: -------------------------------------------------------------------------------- 1 | main_lib2.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/experiment_release_version/test.options: -------------------------------------------------------------------------------- 1 | --fix-nnbd-release-version -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/hierarchy/in_out_dill_in/test.options: -------------------------------------------------------------------------------- 1 | in_out_in_lib1.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/issue40512/test.options: -------------------------------------------------------------------------------- 1 | issue40512_lib.dart 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/issue43988/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/mixin_from_dill2/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nnbd_mixed/super_access/test.options: -------------------------------------------------------------------------------- 1 | main_lib2.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/no_such_method_forwarders/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/none/folder.options: -------------------------------------------------------------------------------- 1 | --target=none -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/none/mixin_application_declares/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nonfunction_type_aliases/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/nonfunction_type_aliases/issue_43084/test.options: -------------------------------------------------------------------------------- 1 | issue_43084_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/offsets/folder.options: -------------------------------------------------------------------------------- 1 | --show-offsets 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/offsets/pattern_for_loop.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method(List list) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/offsets/pattern_for_loop.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method(List list) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/offsets/shared_case_variables.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/offsets/shared_case_variables.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/boolean_literal_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_list_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_list_pattern.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_and_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_and_lhs.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_and_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_and_rhs.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_or_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_or_lhs.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_or_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_logical_or_rhs.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_map_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_map_pattern.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_parenthesized_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_record_pattern_named.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/cast_inside_record_pattern_unnamed.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/constant_identifier_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/constant_identifier_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/constant_identifier_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/constant_identifier_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/constant_identifier_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/double_literal_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/dynamic_guard.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | dynamic guard() => true; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/empty_map_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method(Map m) => switch (m) {}; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/error_cases.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/error_cases.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/error_recovery_after_question_suffix_in_expression.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | f() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/exhaustiveness/issue2878_example0.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/exhaustiveness/issue2878_example0.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/final_variable_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=patterns 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/for_in_inference_error.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/for_in_inference_error.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/integer_literal_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/invalid.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method(Unresolved o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/invalid.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method(Unresolved o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/invalid_pattern_declares_variables.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/invalid_pattern_declares_variables.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue50629.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue50629.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51260.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | foo(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51260.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | foo(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51313.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51313.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51314.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51314.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51410.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | X id(X x) => x; 2 | void main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51410.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | X id(X x) => x; 2 | void main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51480.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | staticTypeOf(T x) => T; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51553.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51553.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51626.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51626.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51676.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | int case3() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51676.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | int case3() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51710.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51710.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51716/test.options: -------------------------------------------------------------------------------- 1 | main_lib2.dart 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51739.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51739.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51898.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/issue51898.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_errors.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_errors.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_case_empty.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/list_pattern_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/logical_and_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/logical_and_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/logical_and_inside_logical_and_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/logical_and_inside_logical_or_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/logical_and_inside_logical_or_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/logical_or_inside_logical_or_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_errors.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_errors.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_case_empty.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_case_empty.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/map_pattern_inside_null_check.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/mismatching_joint_pattern_variables.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/never_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method(Never n) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/never_pattern.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method(Never n) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_list_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_logical_and_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_logical_and_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_logical_or_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_logical_or_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_assert_inside_map_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_list_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_logical_and_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_logical_and_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_logical_or_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_logical_or_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_map_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_map_pattern.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_check_inside_record_pattern_named.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/null_literal_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/opt_out.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/opt_out.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/parenthesized_pattern_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/patternVariableDeclarationStatement_disallowsLate.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | f(x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/promotions_in_switch_case_guards.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(String? x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_case_empty.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_case_singleton.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/record_pattern_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/records/issue50963.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/records/issue50963.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_case_equal.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_case_equal.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_case_greater_than.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_case_less_than.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_case_not_equal.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_list_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_logical_and_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_logical_and_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_logical_or_lhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_logical_or_rhs.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_map_pattern.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_map_pattern.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/relational_inside_record_pattern_named.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/simple_switch_with_guards_error.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/string_literal_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/switch_variables.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/switch_variables.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method(o) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_final_variable_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_final_variable_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_final_variable_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_final_variable_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/typed_variable_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_cast.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_cast.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_if_case.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_if_case.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_null_assert.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/patterns/var_variable_inside_null_check.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test(dynamic x) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/bad_continue.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/bad_continue.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/bad_unicode.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/bad_unicode.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/breaking_bad.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/breaking_bad.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/constant_get_and_invoke.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | const c = 1; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/constant_get_and_invoke.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | const c = 1; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/external_factory_redirection.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/external_factory_redirection.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/foo.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | library foo; 2 | 3 | foo() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/foo.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | library foo; 2 | 3 | foo() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/for_loop.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/for_loop.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/hello.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/hello.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000006.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | var list = [1, 2, 3]; 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000006.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | var list = [1, 2, 3]; 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000011.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000011.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000032.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | class C { 2 | C< >; 3 | } 4 | main() {} 5 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000033.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | @JS() 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000033.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | @JS() 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000036.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() => a. - 5; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000042.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000042.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000043.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | class C { 2 | get x => '$C'.hashCode; 3 | } 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000052.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000052.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000069.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/issue_000069.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/malformed_function.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/malformed_function.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/mandatory_parameter_initializer.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main(arguments = [x]) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/supports_reflection.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/supports_reflection.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/switch_fall_through.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.9 2 | test() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/switch_fall_through.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.9 2 | test() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/switch_fall_through2.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/switch_fall_through2.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.19 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/try_label.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/try_label.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/typedef.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | typedef void Foo(); 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/typedef.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | typedef void Foo(); 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/unresolved.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/rasta/unresolved.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=records 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/issue50004.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/issue50004.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/issue50513.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/issue50513.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/issue51731.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import "dart:async"; 2 | 3 | void main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/nullable_access.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method((int, {String a})? r) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/nullable_access.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method((int, {String a})? r) {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/record_get.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/record_get.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/record_get_errors.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/records/record_get_errors.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | method() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29937.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29937.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29940.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29940.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29945.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29945.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29977.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'data:async'; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29978.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | foo(a, b) => null; 2 | test() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29978.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | foo(a, b) => null; 2 | test() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29979.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29979.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29980.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29980.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29986.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | C(this.name); 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_29987.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import "dart_:core"; 2 | 3 | main() {} 4 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_31188_2.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | type T = Map; 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_31188_2.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | type T = Map; 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_31846.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_31846.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_33672.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_33672.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_34614.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | class C { 2 | C. (){} 3 | } 4 | main() {} 5 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_35177.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_35177.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_36647.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | import 'issue_36647_lib1.dart'; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_36647.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | import 'issue_36647_lib1.dart'; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_36647_2.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | export 'issue_36647_2_lib1.dart'; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_36647_2.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | export 'issue_36647_2_lib1.dart'; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_37681.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_37681.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() async {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_39040.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_39040.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | void main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/regress/issue_39091_1.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | hello; 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/runtime_checks/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/runtime_checks_new/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/sealed_class/extends_implements_with/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/sealed_class/mixin_on/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/set_literals/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/static_field_lowering/folder.options: -------------------------------------------------------------------------------- 1 | --force-static-field-lowering 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/super_parameters/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/super_parameters/super_key/test.options: -------------------------------------------------------------------------------- 1 | main_lib.dart -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/triple_shift/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/const_for.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/const_for.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | test() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/folder.options: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/invariance.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | // @dart = 2.9 2 | main() {} 3 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/invariance2.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/invariance2.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/string_concatenation.dart.textual_outline.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unified_collections/string_concatenation.dart.textual_outline_modelled.expect: -------------------------------------------------------------------------------- 1 | main() {} 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/unscheduled_experiments/folder.options: -------------------------------------------------------------------------------- 1 | --enable-unscheduled-experiments -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/value_class/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=value-class -------------------------------------------------------------------------------- /inner/pkg/front_end/testcases/variance/folder.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=variance 2 | -------------------------------------------------------------------------------- /inner/pkg/front_end/testing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/testing.json -------------------------------------------------------------------------------- /inner/pkg/front_end/tool/fasta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/front_end/tool/fasta -------------------------------------------------------------------------------- /inner/pkg/frontend_server/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/frontend_server/LICENSE -------------------------------------------------------------------------------- /inner/pkg/frontend_server/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_CFE 2 | -------------------------------------------------------------------------------- /inner/pkg/js_ast/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_ast/LICENSE -------------------------------------------------------------------------------- /inner/pkg/js_ast/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/js_ast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_ast/README.md -------------------------------------------------------------------------------- /inner/pkg/js_ast/lib/js_ast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_ast/lib/js_ast.dart -------------------------------------------------------------------------------- /inner/pkg/js_ast/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_ast/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/js_runtime/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/js_runtime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_runtime/README.md -------------------------------------------------------------------------------- /inner/pkg/js_runtime/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /inner/pkg/js_runtime/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_runtime/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/js_shared/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_WEB 2 | -------------------------------------------------------------------------------- /inner/pkg/js_shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_shared/README.md -------------------------------------------------------------------------------- /inner/pkg/js_shared/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /inner/pkg/js_shared/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/js_shared/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/kernel/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/.gitignore -------------------------------------------------------------------------------- /inner/pkg/kernel/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/AUTHORS -------------------------------------------------------------------------------- /inner/pkg/kernel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/LICENSE -------------------------------------------------------------------------------- /inner/pkg/kernel/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_CFE 2 | -------------------------------------------------------------------------------- /inner/pkg/kernel/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/PRESUBMIT.py -------------------------------------------------------------------------------- /inner/pkg/kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/README.md -------------------------------------------------------------------------------- /inner/pkg/kernel/bin/dump.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/bin/dump.dart -------------------------------------------------------------------------------- /inner/pkg/kernel/bin/split.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/bin/split.dart -------------------------------------------------------------------------------- /inner/pkg/kernel/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/binary.md -------------------------------------------------------------------------------- /inner/pkg/kernel/doc/nnbd_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/doc/nnbd_api.md -------------------------------------------------------------------------------- /inner/pkg/kernel/lib/ast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/lib/ast.dart -------------------------------------------------------------------------------- /inner/pkg/kernel/lib/clone.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/lib/clone.dart -------------------------------------------------------------------------------- /inner/pkg/kernel/lib/kernel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/lib/kernel.dart -------------------------------------------------------------------------------- /inner/pkg/kernel/lib/visitor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/lib/visitor.dart -------------------------------------------------------------------------------- /inner/pkg/kernel/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/problems.md -------------------------------------------------------------------------------- /inner/pkg/kernel/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/kernel/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/meta/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/CHANGELOG.md -------------------------------------------------------------------------------- /inner/pkg/meta/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/LICENSE -------------------------------------------------------------------------------- /inner/pkg/meta/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/OWNERS -------------------------------------------------------------------------------- /inner/pkg/meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/README.md -------------------------------------------------------------------------------- /inner/pkg/meta/analysis_options.yaml: -------------------------------------------------------------------------------- 1 | include: package:lints/recommended.yaml 2 | -------------------------------------------------------------------------------- /inner/pkg/meta/lib/dart2js.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/lib/dart2js.dart -------------------------------------------------------------------------------- /inner/pkg/meta/lib/meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/lib/meta.dart -------------------------------------------------------------------------------- /inner/pkg/meta/lib/meta_meta.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/lib/meta_meta.dart -------------------------------------------------------------------------------- /inner/pkg/meta/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/meta/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/vm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/LICENSE -------------------------------------------------------------------------------- /inner/pkg/vm/OWNERS: -------------------------------------------------------------------------------- 1 | file:/tools/OWNERS_VM 2 | -------------------------------------------------------------------------------- /inner/pkg/vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/README.md -------------------------------------------------------------------------------- /inner/pkg/vm/bin/compare_il.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/bin/compare_il.dart -------------------------------------------------------------------------------- /inner/pkg/vm/bin/dump_kernel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/bin/dump_kernel.dart -------------------------------------------------------------------------------- /inner/pkg/vm/bin/gen_kernel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/bin/gen_kernel.dart -------------------------------------------------------------------------------- /inner/pkg/vm/lib/dominators.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/lib/dominators.dart -------------------------------------------------------------------------------- /inner/pkg/vm/lib/target/vm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/lib/target/vm.dart -------------------------------------------------------------------------------- /inner/pkg/vm/lib/target_os.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/lib/target_os.dart -------------------------------------------------------------------------------- /inner/pkg/vm/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/pubspec.yaml -------------------------------------------------------------------------------- /inner/pkg/vm/testcases/transformations/to_string_transformer/.gitignore: -------------------------------------------------------------------------------- 1 | !.dart_tool 2 | -------------------------------------------------------------------------------- /inner/pkg/vm/testcases/transformations/type_flow/summary_collector/records.dart.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=records -------------------------------------------------------------------------------- /inner/pkg/vm/testcases/transformations/type_flow/transformer/const_default.dart.options: -------------------------------------------------------------------------------- 1 | --linked=const_default.lib.dart -------------------------------------------------------------------------------- /inner/pkg/vm/testcases/transformations/type_flow/transformer/records.dart.options: -------------------------------------------------------------------------------- 1 | --enable-experiment=records -------------------------------------------------------------------------------- /inner/pkg/vm/tool/compare_il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/tool/compare_il -------------------------------------------------------------------------------- /inner/pkg/vm/tool/compare_il.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/tool/compare_il.bat -------------------------------------------------------------------------------- /inner/pkg/vm/tool/dump_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/tool/dump_kernel -------------------------------------------------------------------------------- /inner/pkg/vm/tool/gen_kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/tool/gen_kernel -------------------------------------------------------------------------------- /inner/pkg/vm/tool/precompiler2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pkg/vm/tool/precompiler2 -------------------------------------------------------------------------------- /inner/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/pubspec.yaml -------------------------------------------------------------------------------- /inner/snapshot.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/snapshot.dart -------------------------------------------------------------------------------- /inner/tool/starter.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/tool/starter.dart -------------------------------------------------------------------------------- /inner/transformer/plugins/pluginDemo/pluginDemo.dart: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /inner/util/dill_ops.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/inner/util/dill_ops.dart -------------------------------------------------------------------------------- /lib/aspectd.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/lib/aspectd.dart -------------------------------------------------------------------------------- /lib/bin/gen_snapshot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/lib/bin/gen_snapshot.sh -------------------------------------------------------------------------------- /lib/bin/starter.snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/lib/bin/starter.snapshot -------------------------------------------------------------------------------- /lib/src/plugins/aop/aop.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/lib/src/plugins/aop/aop.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LianjiaTech/Beike_AspectD/HEAD/pubspec.yaml --------------------------------------------------------------------------------