| 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 2452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2463 'lib/html/resource_http_test', | 2463 'lib/html/resource_http_test', |
| 2464 'lib/html/selectelement_test', | 2464 'lib/html/selectelement_test', |
| 2465 'lib/html/track_element_constructor_test', | 2465 'lib/html/track_element_constructor_test', |
| 2466 'lib/html/transferables_test', | 2466 'lib/html/transferables_test', |
| 2467 'lib/html/typed_arrays_range_checks_test', | 2467 'lib/html/typed_arrays_range_checks_test', |
| 2468 'lib/html/typing_test', | 2468 'lib/html/typing_test', |
| 2469 'lib/html/unknownelement_test', | 2469 'lib/html/unknownelement_test', |
| 2470 'lib/html/webgl_1_test', | 2470 'lib/html/webgl_1_test', |
| 2471 'lib/html/window_nosuchmethod_test', | 2471 'lib/html/window_nosuchmethod_test', |
| 2472 'lib/html/wrapping_collections_test', | 2472 'lib/html/wrapping_collections_test', |
| 2473 'lib/math/rectangle_test', | |
| 2474 // TODO(jmesserly): these are both under "dart:html" as well. | 2473 // TODO(jmesserly): these are both under "dart:html" as well. |
| 2475 'js_test', | 2474 'js_test', |
| 2476 'js_util_test' | 2475 'js_util_test' |
| 2477 ]); | 2476 ]); |
| OLD | NEW |