OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // Test that we do not report a compile-time error when an instance setter named | 5 // Test that we do not report a compile-time error when an instance setter named |
6 // foo= is declared in a class inheriting an instance method, field, or getter | 6 // foo= is declared in a class inheriting an instance method, field, or getter |
7 // named foo, or an instance setter named foo=. | 7 // named foo, or an instance setter named foo=. |
8 | 8 |
9 import "package:expect/expect.dart"; | 9 import "package:expect/expect.dart"; |
10 | 10 |
11 class A { | 11 class A { |
12 var foo = 42; // //# 00: ok | 12 var foo = 42; // //# 00: ok |
13 get foo => 42; // //# 01: ok | 13 get foo => 42; // //# 01: ok |
14 foo() => 42; // //# 02: ok | 14 foo() => 42; // //# 02: ok |
15 set foo(value) { } // //# 03: ok | 15 set foo(value) { } // //# 03: ok |
16 } | 16 } |
17 | 17 |
18 class B extends A { | 18 class B extends A { |
19 var foo_; | 19 var foo_; |
20 set foo(value) { foo_ = value; } | 20 set foo(value) { |
| 21 foo_ = value; |
| 22 } |
21 } | 23 } |
22 | 24 |
23 main() { | 25 main() { |
24 var b = new B(); | 26 var b = new B(); |
25 b.foo = 42; | 27 b.foo = 42; |
26 Expect.equals(42, b.foo_); | 28 Expect.equals(42, b.foo_); |
27 } | 29 } |
OLD | NEW |