| 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 && ! $checked) ] | 7 [ $runtime == vm || $compiler == dart2js || $runtime == dart_precompiled || ($co
mpiler == 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 | 177 |
| 178 [ $compiler == dart2js && $runtime == d8 && $checked && $dart2js_with_kernel_in_
ssa && ! $dart2js_with_kernel ] | 178 [ $compiler == dart2js && $runtime == d8 && $checked && $dart2js_with_kernel_in_
ssa && ! $dart2js_with_kernel ] |
| 179 assertion_initializer_const_function_test/none: RuntimeError | 179 assertion_initializer_const_function_test/none: RuntimeError |
| 180 | 180 |
| 181 [ $compiler == dart2js && $runtime == d8 && $checked ] | 181 [ $compiler == dart2js && $runtime == d8 && $checked ] |
| 182 assertion_test: RuntimeError | 182 assertion_test: RuntimeError |
| 183 | 183 |
| 184 [ $compiler == dart2js && $runtime == jsshell && $checked ] | 184 [ $compiler == dart2js && $runtime == jsshell && $checked ] |
| 185 assertion_test: RuntimeError | 185 assertion_test: RuntimeError |
| 186 | 186 |
| 187 [ $compiler == dart2js && $runtime == drt && $checked ] |
| 188 assertion_test: RuntimeError |
| 189 |
| 187 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $host_checke
d ] | 190 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $host_checke
d ] |
| 188 assertion_initializer_const_function_test/01: Crash | 191 assertion_initializer_const_function_test/01: Crash |
| 189 assign_instance_method_negative_test: Crash | 192 assign_instance_method_negative_test: Crash |
| 190 async_await_syntax_test/d04a: Crash | 193 async_await_syntax_test/d04a: Crash |
| 191 async_await_syntax_test/d07a: Crash | 194 async_await_syntax_test/d07a: Crash |
| 192 async_await_syntax_test/d08a: Crash | 195 async_await_syntax_test/d08a: Crash |
| 193 async_await_syntax_test/d08b: Crash | 196 async_await_syntax_test/d08b: Crash |
| 194 async_await_syntax_test/d08c: Crash | 197 async_await_syntax_test/d08c: Crash |
| 195 | 198 |
| 196 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $minified ] | 199 [ $compiler == dart2js && $runtime == d8 && $dart2js_with_kernel && $minified ] |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 async_await_syntax_test/d10a: Crash | 521 async_await_syntax_test/d10a: Crash |
| 519 async_return_types_test/tooManyTypeParameters: CompileTimeError | 522 async_return_types_test/tooManyTypeParameters: CompileTimeError |
| 520 | 523 |
| 521 # Look like bugs. | 524 # Look like bugs. |
| 522 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 | 525 async_return_types_test/nestedFuture: Skip # Flutter Issue 9110 |
| 523 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 | 526 async_return_types_test/return_value_sync_star: Skip # Flutter Issue 9110 |
| 524 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 | 527 async_return_types_test/wrongReturnType: Skip # Flutter Issue 9110 |
| 525 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 | 528 async_return_types_test/wrongTypeParameter: Skip # Flutter Issue 9110 |
| 526 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 | 529 async_star_cancel_while_paused_test: Skip # Flutter Issue 9110 |
| 527 async_star_no_cancel_test: Skip # Flutter Issue 9110 | 530 async_star_no_cancel_test: Skip # Flutter Issue 9110 |
| OLD | NEW |