Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(132)

Side by Side Diff: tests/language/assertion_initializer_const_function_test.dart

Issue 2975193002: Fix bug in test's /none version. Update status files. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sdk/lib/convert/base64.dart ('k') | tests/language/language.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 201, 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 // VMOptions=--assert_initializer 4 // VMOptions=--assert_initializer
5 // 5 //
6 // Dart test program testing assert statements. 6 // Dart test program testing assert statements.
7 7
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 9
10 class C { 10 class C {
11 static bool staticTrue() => true; 11 static bool staticTrue() => true;
12 final int x; 12 final int x;
13 const C(this.x); 13 const C(this.x);
14 // The expression *is* compile-time constant, but not a bool value. 14 // The expression *is* compile-time constant, but not a bool value.
15 // Static warning, runtime always fails assertion. 15 // Static warning, runtime always fails assertion.
16 const C.bc01(this.x, y) 16 const C.bc01(this.x, y)
17 : assert(staticTrue) //# 01: static type warning 17 : assert(staticTrue) //# 01: static type warning
18 ; 18 ;
19 } 19 }
20 20
21 main() { 21 main() {
22 bool checkedMode = false; 22 bool checkedMode = false;
23 assert(checkedMode = true); 23 assert(checkedMode = true);
24 if (checkedMode) { 24 if (checkedMode) { //# 01: c ontinued
25 Expect.throws(() => new C.bc01(1, 2), (e) => e is AssertionError); 25 Expect.throws(() => new C.bc01(1, 2), (e) => e is AssertionError); //# 01: c ontinued
eernst 2017/07/14 08:57:39 I suspect this should actually be a "dynamic type
Lasse Reichstein Nielsen 2017/09/06 08:18:33 Good point, fixed.
26 } else { 26 } else { //# 01: c ontinued
27 Expect.equals(1, new C.bc01(1, 2).x); 27 Expect.equals(1, new C.bc01(1, 2).x);
28 } 28 } //# 01: c ontinued
29 } 29 }
OLDNEW
« no previous file with comments | « sdk/lib/convert/base64.dart ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698