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

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

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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
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"; 5 import "package:expect/expect.dart";
6 6
7 // Test overriding a getter property with a field. 7 // Test overriding a getter property with a field.
8 class A { 8 class A {
9 int get v; // Abstract. 9 int get v; // Abstract.
10 10
11 int a() { 11 int a() {
12 return v - 1; 12 return v - 1;
13 } 13 }
14 } 14 }
15 15
16 class B extends A { 16 class B extends A {
17 int v = 3; 17 int v = 3;
18 18
19 int b() { 19 int b() {
20 return ++v; 20 return ++v;
21 } 21 }
22 } 22 }
23 23
24 main() { 24 main() {
25 var x = new B(); 25 var x = new B();
26 Expect.equals(3, x.v); 26 Expect.equals(3, x.v);
27 Expect.equals(2, x.a()); 27 Expect.equals(2, x.a());
28 Expect.equals(4, x.b()); 28 Expect.equals(4, x.b());
29 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698