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

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

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 import "package:expect/expect.dart";
6
7 // Test overriding a getter property with a field. 5 // Test overriding a getter property with a field.
8 class A { 6 class A {
9 int get v; // Abstract. 7 int get v; // Abstract.
10 8
11 int a() { 9 int a() {
12 return v - 1; 10 return v - 1;
13 } 11 }
14 } 12 }
15 13
16 class B extends A { 14 class B extends A {
17 int v = 3; 15 int v = 3;
18 16
19 int b() { 17 int b() {
20 return ++v; 18 return ++v;
21 } 19 }
22 } 20 }
23 21
24 main() { 22 main() {
25 var x = new B(); 23 var x = new B();
26 Expect.equals(3, x.v); 24 Expect.equals(3, x.v);
27 Expect.equals(2, x.a()); 25 Expect.equals(2, x.a());
28 Expect.equals(4, x.b()); 26 Expect.equals(4, x.b());
29 } 27 }
OLDNEW
« no previous file with comments | « tests/language/propagated_argument_type_check_test.dart ('k') | tests/language/pseudo_kw_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698