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_getter_test/01: MissingCompileTimeError | 10 abstract_getter_test/01: MissingCompileTimeError |
| 11 |
| 12 [ $compiler == dart2analyzer ] |
| 13 generic_methods_generic_function_result_test: CompileTimeError # Issue #30207 |
| 14 |
| 15 [ $compiler == dart2js ] |
| 16 generic_methods_generic_function_result_test: CompileTimeError # Issue ##30208 |
| 17 |
OLD | NEW |