| OLD | NEW |
| 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 | 4 |
| 5 // Test to ensure that an abstract getter is not mistaken for a field. | 5 // Test to ensure that an abstract getter is not mistaken for a field. |
| 6 | 6 |
| 7 class Foo { | 7 class Foo { |
| 8 abstract get i; | 8 abstract get i; |
| 9 } | 9 } |
| 10 | 10 |
| 11 class Bar { | 11 class Bar { |
| 12 } | 12 } |
| 13 | 13 |
| 14 noMethod(e) => e is NoSuchMethodException; | 14 noMethod(e) => e is NoSuchMethodException; |
| 15 | 15 |
| 16 checkIt(f) { | 16 checkIt(f) { |
| 17 Expect.throws(() { f.i = 'hi'; }, noMethod); | 17 Expect.throws(() { f.i = 'hi'; }, noMethod); |
| 18 Expect.throws(() { print(f.i); }, noMethod); | 18 Expect.throws(() { print(f.i); }, noMethod); |
| 19 Expect.throws(() { print(f.i()); }, noMethod); | 19 Expect.throws(() { print(f.i()); }, noMethod); |
| 20 } | 20 } |
| 21 | 21 |
| 22 main() { | 22 main() { |
| 23 checkIt(new Foo()); /// 01: compile-time error | 23 checkIt(new Foo()); |
| 24 checkIt(new Bar()); | 24 checkIt(new Bar()); |
| 25 } | 25 } |
| OLD | NEW |