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

Side by Side Diff: tests/language/src/CompileTimeConstantGTest.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
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 class B extends A { 13 class B extends A {
(...skipping 13 matching lines...) Expand all
28 final b6 = const B.named3(); 27 final b6 = const B.named3();
29 28
30 main() { 29 main() {
31 Expect.equals(10, b1.x); 30 Expect.equals(10, b1.x);
32 Expect.equals(null, b2.x); 31 Expect.equals(null, b2.x);
33 Expect.equals(11, b3.x); 32 Expect.equals(11, b3.x);
34 Expect.equals(2, b4.x); 33 Expect.equals(2, b4.x);
35 Expect.equals(13, b5.x); 34 Expect.equals(13, b5.x);
36 Expect.equals(4, b6.x); 35 Expect.equals(4, b6.x);
37 } 36 }
OLDNEW
« no previous file with comments | « tests/language/src/CompileTimeConstantFTest.dart ('k') | tests/language/src/CompileTimeConstantHTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698