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

Side by Side Diff: tests/language/src/CompileTimeConstantFTest.dart

Issue 9717035: Handle compile-time constants to interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Created 8 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « tests/language/language-leg.status ('k') | tests/language/src/CompileTimeConstantGTest.dart » ('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) 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 // Dart test program for testing setting/getting of instance fields.
5 4
6 class A { 5 class A {
7 final x = 4; 6 final x = 4;
8 const A(this.x); 7 const A(this.x);
9 const A.named([this.x]); 8 const A.named([this.x]);
10 const A.named2([this.x = 2]); 9 const A.named2([this.x = 2]);
11 const A.named3(); 10 const A.named3();
12 } 11 }
13 12
14 final a1 = const A(0); 13 final a1 = const A(0);
15 final a2 = const A.named(); 14 final a2 = const A.named();
16 final a3 = const A.named(1); 15 final a3 = const A.named(1);
17 final a4 = const A.named2(); 16 final a4 = const A.named2();
18 final a5 = const A.named2(3); 17 final a5 = const A.named2(3);
19 final a6 = const A.named3(); 18 final a6 = const A.named3();
20 19
21 main() { 20 main() {
22 Expect.equals(0, a1.x); 21 Expect.equals(0, a1.x);
23 Expect.equals(null, a2.x); 22 Expect.equals(null, a2.x);
24 Expect.equals(1, a3.x); 23 Expect.equals(1, a3.x);
25 Expect.equals(2, a4.x); 24 Expect.equals(2, a4.x);
26 Expect.equals(3, a5.x); 25 Expect.equals(3, a5.x);
27 Expect.equals(4, a6.x); 26 Expect.equals(4, a6.x);
28 } 27 }
OLDNEW
« no previous file with comments | « tests/language/language-leg.status ('k') | tests/language/src/CompileTimeConstantGTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698