| OLD | NEW |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. | 5 # The VM and dart2js do not implement the Dart 2.0 static type errors yet. |
| 6 # Analyzer does, but only when "--strong" is used. | 6 # Analyzer does, but only when "--strong" is used. |
| 7 [ $runtime == vm || $runtime == dart_precompiled || ($compiler == dart2analyzer
&& ! $strong && ! $checked) ] | 7 [ $runtime == vm || $runtime == dart_precompiled || ($compiler == dart2analyzer
&& ! $strong && ! $checked) ] |
| 8 abstract_beats_arguments_test: MissingCompileTimeError | 8 abstract_beats_arguments_test: MissingCompileTimeError |
| 9 abstract_exact_selector_test/01: MissingCompileTimeError | 9 abstract_exact_selector_test/01: MissingCompileTimeError |
| 10 abstract_factory_constructor_test/00: MissingCompileTimeError | 10 abstract_factory_constructor_test/00: MissingCompileTimeError |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 684 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 685 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 685 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| 686 | 686 |
| 687 [ $compiler == dart2js && ! $checked && ! $dart2js_with_kernel ] | 687 [ $compiler == dart2js && ! $checked && ! $dart2js_with_kernel ] |
| 688 bool_check_test: RuntimeError # Issue 29647 | 688 bool_check_test: RuntimeError # Issue 29647 |
| 689 bool_condition_check_test: RuntimeError | 689 bool_condition_check_test: RuntimeError |
| 690 | 690 |
| 691 [ $compiler == precompiler && $runtime == dart_precompiled ] | 691 [ $compiler == precompiler && $runtime == dart_precompiled ] |
| 692 bool_check_test: RuntimeError | 692 bool_check_test: RuntimeError |
| 693 | 693 |
| 694 [ $compiler == dart2analyzer ] | 694 [ $compiler == dart2analyzer || $compiler == dartdevc ] |
| 695 bad_initializer2_negative_test: fail # Issue 14880 | 695 bad_initializer2_negative_test: fail # Issue 14880 |
| 696 black_listed_test/none: fail # Issue 14228 | 696 black_listed_test/none: fail # Issue 14228 |
| 697 bad_initializer1_negative_test: CompileTimeError # Issue 14529 | 697 bad_initializer1_negative_test: CompileTimeError # Issue 14529 |
| 698 bad_named_constructor_negative_test: CompileTimeError # Issue 18693 | 698 bad_named_constructor_negative_test: CompileTimeError # Issue 18693 |
| 699 body_less_constructor_wrong_arg_negative_test: CompileTimeError # Issue 18695 | 699 body_less_constructor_wrong_arg_negative_test: CompileTimeError # Issue 18695 |
| 700 built_in_identifier_prefix_test: CompileTimeError | 700 built_in_identifier_prefix_test: CompileTimeError |
| 701 | 701 |
| 702 [ $runtime == vm ] | 702 [ $runtime == vm ] |
| 703 built_in_identifier_prefix_test: CompileTimeError | 703 built_in_identifier_prefix_test: CompileTimeError |
| 704 | 704 |
| 705 [ $compiler == dart2js ] | 705 [ $compiler == dart2js ] |
| 706 built_in_identifier_prefix_test: CompileTimeError | 706 built_in_identifier_prefix_test: CompileTimeError |
| 707 | 707 |
| 708 [ $compiler == dartdevc ] | 708 [ $compiler == dartdevc ] |
| 709 built_in_identifier_prefix_test: CompileTimeError | 709 built_in_identifier_prefix_test: CompileTimeError |
| OLD | NEW |