| 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 || $compiler == dart2js || $runtime == dart_precompiled || ($co
mpiler == dart2analyzer && ! $strong) ] | 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co
mpiler == dart2analyzer && ! $strong) ] |
| 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 19 matching lines...) Expand all Loading... |
| 30 accessor_conflict_import_test: CompileTimeError # Issue 25626 | 30 accessor_conflict_import_test: CompileTimeError # Issue 25626 |
| 31 | 31 |
| 32 [ ! $strong && $compiler == dart2analyzer ] | 32 [ ! $strong && $compiler == dart2analyzer ] |
| 33 accessor_conflict_export2_test: StaticWarning # Issue 25626 | 33 accessor_conflict_export2_test: StaticWarning # Issue 25626 |
| 34 accessor_conflict_export_test: StaticWarning # Issue 25626 | 34 accessor_conflict_export_test: StaticWarning # Issue 25626 |
| 35 accessor_conflict_import2_test: StaticWarning # Issue 25626 | 35 accessor_conflict_import2_test: StaticWarning # Issue 25626 |
| 36 accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25626 | 36 accessor_conflict_import_prefixed2_test: StaticWarning # Issue 25626 |
| 37 accessor_conflict_import_prefixed_test: StaticWarning # Issue 25626 | 37 accessor_conflict_import_prefixed_test: StaticWarning # Issue 25626 |
| 38 accessor_conflict_import_test: StaticWarning # Issue 25626 | 38 accessor_conflict_import_test: StaticWarning # Issue 25626 |
| 39 | 39 |
| 40 [ $compiler == dart2analyzer && ! $strong ] |
| 41 generic_methods_generic_function_result_test/01: MissingCompileTimeError # Issue
#30207 |
| 42 |
| 40 [ $compiler == dart2analyzer && $strong ] | 43 [ $compiler == dart2analyzer && $strong ] |
| 41 generic_methods_generic_function_result_test: CompileTimeError # Issue #30207 | 44 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302
07 |
| 42 | 45 |
| 43 [ $compiler == dart2js || $compiler == dartk || $compiler == dartdevc ] | 46 [ $compiler == dart2js || $compiler == dartk || $compiler == dartdevc ] |
| 44 generic_methods_generic_function_result_test: CompileTimeError # Issue #30208 | 47 generic_methods_generic_function_result_test/none: CompileTimeError # Issue #302
08 |
| OLD | NEW |