| OLD | NEW |
| 1 import 'dart:collection'; | 1 import 'dart:collection'; |
| 2 import 'package:path/path.dart' as path; | 2 import 'package:path/path.dart' as path; |
| 3 | 3 |
| 4 /// The set of tests that are not yet strong mode safe. | 4 /// The set of tests that are not yet strong mode safe. |
| 5 final notYetStrongTests = new HashSet<String>.from([ | 5 final notYetStrongTests = new HashSet<String>.from([ |
| 6 'language/abstract_exact_selector_test_01_multi', | 6 'language/abstract_exact_selector_test_01_multi', |
| 7 'language/abstract_factory_constructor_test_00_multi', | 7 'language/abstract_factory_constructor_test_00_multi', |
| 8 'language/abstract_getter_test_01_multi', | 8 'language/abstract_getter_test_01_multi', |
| 9 'language/abstract_runtime_error_test_01_multi', | 9 'language/abstract_runtime_error_test_01_multi', |
| 10 'language/abstract_runtime_error_test_02_multi', | 10 'language/abstract_runtime_error_test_02_multi', |
| (...skipping 2055 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2066 'corelib/symbol_reserved_word_test_08_multi', | 2066 'corelib/symbol_reserved_word_test_08_multi', |
| 2067 'corelib/symbol_reserved_word_test_10_multi', | 2067 'corelib/symbol_reserved_word_test_10_multi', |
| 2068 'corelib/symbol_reserved_word_test_11_multi', | 2068 'corelib/symbol_reserved_word_test_11_multi', |
| 2069 'corelib/symbol_test_01_multi', | 2069 'corelib/symbol_test_01_multi', |
| 2070 'corelib/symbol_test_02_multi', | 2070 'corelib/symbol_test_02_multi', |
| 2071 'corelib/symbol_test_03_multi', | 2071 'corelib/symbol_test_03_multi', |
| 2072 'corelib/symbol_test_none_multi', | 2072 'corelib/symbol_test_none_multi', |
| 2073 'corelib/uri_path_test', | 2073 'corelib/uri_path_test', |
| 2074 'corelib/uri_query_test', | 2074 'corelib/uri_query_test', |
| 2075 'lib/async/async_await_sync_completer_test', | 2075 'lib/async/async_await_sync_completer_test', |
| 2076 'lib/async/async_await_zones_test', | |
| 2077 'lib/async/catch_errors2_test', | 2076 'lib/async/catch_errors2_test', |
| 2078 'lib/async/catch_errors3_test', | 2077 'lib/async/catch_errors3_test', |
| 2079 'lib/async/catch_errors_test', | 2078 'lib/async/catch_errors_test', |
| 2080 'lib/async/future_microtask_test', | 2079 'lib/async/future_microtask_test', |
| 2081 'lib/async/future_or_bad_type_test_00_multi', | 2080 'lib/async/future_or_bad_type_test_00_multi', |
| 2082 'lib/async/future_or_bad_type_test_01_multi', | 2081 'lib/async/future_or_bad_type_test_01_multi', |
| 2083 'lib/async/future_or_only_in_async_test_00_multi', | 2082 'lib/async/future_or_only_in_async_test_00_multi', |
| 2084 'lib/async/future_test_none_multi', | 2083 'lib/async/future_test_none_multi', |
| 2085 'lib/async/future_test_01_multi', | 2084 'lib/async/future_test_01_multi', |
| 2086 'lib/async/future_value_chain4_test', | 2085 'lib/async/future_value_chain4_test', |
| (...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2412 'lib/html/mutationobserver_test', | 2411 'lib/html/mutationobserver_test', |
| 2413 'lib/html/postmessage_structured_test', | 2412 'lib/html/postmessage_structured_test', |
| 2414 'lib/html/resource_http_test', | 2413 'lib/html/resource_http_test', |
| 2415 'lib/html/transferables_test', | 2414 'lib/html/transferables_test', |
| 2416 'lib/html/webgl_1_test', | 2415 'lib/html/webgl_1_test', |
| 2417 'lib/html/wrapping_collections_test', | 2416 'lib/html/wrapping_collections_test', |
| 2418 // TODO(jmesserly): these are both under "dart:html" as well. | 2417 // TODO(jmesserly): these are both under "dart:html" as well. |
| 2419 'js_test', | 2418 'js_test', |
| 2420 'js_util_test' | 2419 'js_util_test' |
| 2421 ].map((p) => p.replaceAll('/', path.separator))); | 2420 ].map((p) => p.replaceAll('/', path.separator))); |
| OLD | NEW |