| OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, 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 # This directory contains tests that are intended to show the | 5 # This directory contains tests that are intended to show the |
| 6 # current state of the language. | 6 # current state of the language. |
| 7 | 7 |
| 8 [ ($compiler == dart2app || $compiler == dart2appjit) ] | 8 [ ($compiler == dart2app || $compiler == dart2appjit) ] |
| 9 string_literals_test: Skip # Issue 27433 | 9 string_literals_test: Skip # Issue 27433 |
| 10 | 10 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. | 292 assert_initializer_test: SKIP # not implemented yet, experiment is VM only. |
| 293 | 293 |
| 294 [$runtime == vm && $compiler == none && $unchecked] | 294 [$runtime == vm && $compiler == none && $unchecked] |
| 295 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. | 295 assert_initializer_test/*: MissingCompileTimeError, OK # asserts shouldn't fail
in unchecked mode. |
| 296 assert_initializer_test/none: pass | 296 assert_initializer_test/none: pass |
| 297 | 297 |
| 298 [$runtime == vm && $compiler == none && $checked] | 298 [$runtime == vm && $compiler == none && $checked] |
| 299 # The VM doesn't enforce that potentially const expressions are actually | 299 # The VM doesn't enforce that potentially const expressions are actually |
| 300 # const expressions when the constructor is called with `const`. | 300 # const expressions when the constructor is called with `const`. |
| 301 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. | 301 assert_initializer_test/4*: MissingCompileTimeError # Issue 392. |
| 302 |
| 303 [$runtime == vm && $compiler == none] |
| 304 duplicate_part_test/01: MissingCompileTimeError # Issue 27516 |
| OLD | NEW |