OLD | NEW |
1 import 'dart:collection'; | 1 import 'dart:collection'; |
2 | 2 |
3 /// The set of tests that are not yet strong mode safe. | 3 /// The set of tests that are not yet strong mode safe. |
4 final notYetStrongTests = new HashSet<String>.from([ | 4 final notYetStrongTests = new HashSet<String>.from([ |
5 'language/abstract_exact_selector_test_01_multi', | 5 'language/abstract_exact_selector_test_01_multi', |
6 'language/abstract_factory_constructor_test_00_multi', | 6 'language/abstract_factory_constructor_test_00_multi', |
7 'language/abstract_getter_test_01_multi', | 7 'language/abstract_getter_test_01_multi', |
8 'language/abstract_runtime_error_test_01_multi', | 8 'language/abstract_runtime_error_test_01_multi', |
9 'language/abstract_runtime_error_test_02_multi', | 9 'language/abstract_runtime_error_test_02_multi', |
10 'language/abstract_runtime_error_test_03_multi', | 10 'language/abstract_runtime_error_test_03_multi', |
(...skipping 2072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2083 'corelib/symbol_reserved_word_test_07_multi', | 2083 'corelib/symbol_reserved_word_test_07_multi', |
2084 'corelib/symbol_reserved_word_test_08_multi', | 2084 'corelib/symbol_reserved_word_test_08_multi', |
2085 'corelib/symbol_reserved_word_test_10_multi', | 2085 'corelib/symbol_reserved_word_test_10_multi', |
2086 'corelib/symbol_reserved_word_test_11_multi', | 2086 'corelib/symbol_reserved_word_test_11_multi', |
2087 'corelib/symbol_test_01_multi', | 2087 'corelib/symbol_test_01_multi', |
2088 'corelib/symbol_test_02_multi', | 2088 'corelib/symbol_test_02_multi', |
2089 'corelib/symbol_test_03_multi', | 2089 'corelib/symbol_test_03_multi', |
2090 'corelib/symbol_test_none_multi', | 2090 'corelib/symbol_test_none_multi', |
2091 'corelib/uri_path_test', | 2091 'corelib/uri_path_test', |
2092 'corelib/uri_query_test', | 2092 'corelib/uri_query_test', |
| 2093 'lib/async/async_await_sync_completer_test', |
| 2094 'lib/async/async_await_zones_test', |
| 2095 'lib/async/catch_errors2_test', |
| 2096 'lib/async/catch_errors3_test', |
| 2097 'lib/async/catch_errors_test', |
| 2098 'lib/async/future_microtask_test', |
| 2099 'lib/async/future_or_bad_type_test_00_multi', |
| 2100 'lib/async/future_or_bad_type_test_01_multi', |
| 2101 'lib/async/future_or_only_in_async_test_00_multi', |
| 2102 'lib/async/future_test_none_multi', |
| 2103 'lib/async/future_test_01_multi', |
| 2104 'lib/async/future_value_chain4_test', |
| 2105 'lib/async/print_test_01_multi', |
| 2106 'lib/async/print_test_none_multi', |
| 2107 'lib/async/slow_consumer3_test', |
| 2108 'lib/async/stream_controller_test', |
| 2109 'lib/async/stream_event_transformed_test', |
| 2110 'lib/async/stream_transformer_test', |
| 2111 'lib/async/zone_debug_test', |
2093 'lib/convert/chunked_conversion1_test', | 2112 'lib/convert/chunked_conversion1_test', |
2094 'lib/math/min_max_test', | 2113 'lib/math/min_max_test', |
2095 'lib/typed_data/float32x4_test', | 2114 'lib/typed_data/float32x4_test', |
2096 'lib/typed_data/float64x2_functional_test', | 2115 'lib/typed_data/float64x2_functional_test', |
2097 'lib/typed_data/int32x4_test', | 2116 'lib/typed_data/int32x4_test', |
2098 'lib/mirrors/abstract_class_test_00_multi', | 2117 'lib/mirrors/abstract_class_test_00_multi', |
2099 'lib/mirrors/abstract_test', | 2118 'lib/mirrors/abstract_test', |
2100 'lib/mirrors/circular_factory_redirection_test_01_multi', | 2119 'lib/mirrors/circular_factory_redirection_test_01_multi', |
2101 'lib/mirrors/circular_factory_redirection_test_02_multi', | 2120 'lib/mirrors/circular_factory_redirection_test_02_multi', |
2102 'lib/mirrors/class_declarations_test_01_multi', | 2121 'lib/mirrors/class_declarations_test_01_multi', |
(...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2412 'lib/html/mutationobserver_test', | 2431 'lib/html/mutationobserver_test', |
2413 'lib/html/postmessage_structured_test', | 2432 'lib/html/postmessage_structured_test', |
2414 'lib/html/resource_http_test', | 2433 'lib/html/resource_http_test', |
2415 'lib/html/transferables_test', | 2434 'lib/html/transferables_test', |
2416 'lib/html/webgl_1_test', | 2435 'lib/html/webgl_1_test', |
2417 'lib/html/wrapping_collections_test', | 2436 'lib/html/wrapping_collections_test', |
2418 // TODO(jmesserly): these are both under "dart:html" as well. | 2437 // TODO(jmesserly): these are both under "dart:html" as well. |
2419 'js_test', | 2438 'js_test', |
2420 'js_util_test' | 2439 'js_util_test' |
2421 ]); | 2440 ]); |
OLD | NEW |