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