| OLD | NEW |
| 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 } |
| OLD | NEW |