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 # Sections in this file should contain "$runtime == flutter". | 5 # Sections in this file should contain "$runtime == flutter". |
6 | 6 |
7 # flutter uses --error_on_bad_type, --error_on_bad_override | 7 # flutter uses --error_on_bad_type, --error_on_bad_override |
8 # and --await_is_keyword so # the following tests fail with | 8 # and --await_is_keyword so # the following tests fail with |
9 # a Compilation Error | 9 # a Compilation Error |
10 [ $runtime == flutter ] | 10 [ $runtime == flutter ] |
11 async_await_test: CompileTimeError | 11 async_await_test: CompileTimeError |
12 async_await_syntax_test/a05c: CompileTimeError | 12 async_await_syntax_test/a05c: CompileTimeError |
13 async_await_syntax_test/a05e: CompileTimeError | 13 async_await_syntax_test/a05e: CompileTimeError |
14 async_await_syntax_test/d08c: CompileTimeError | 14 async_await_syntax_test/d08c: CompileTimeError |
15 bad_override_test/06: CompileTimeError | 15 bad_override_test/06: CompileTimeError |
| 16 call_constructor_on_unresolvable_class_test/01: CompileTimeError |
| 17 call_constructor_on_unresolvable_class_test/03: CompileTimeError |
| 18 call_constructor_on_unresolvable_class_test/02: CompileTimeError |
| 19 call_constructor_on_unresolvable_class_test/07: CompileTimeError |
16 | 20 |
17 # The VM doesn't enforce that potentially const expressions are actually | 21 # The VM doesn't enforce that potentially const expressions are actually |
18 # const expressions when the constructor is called with `const`. | 22 # const expressions when the constructor is called with `const`. |
19 [ $runtime == flutter && $compiler == none && $checked ] | 23 [ $runtime == flutter && $compiler == none && $checked ] |
20 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 24 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
OLD | NEW |