| 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 // Tests that we can call functions through getters. | 7 // Tests that we can call functions through getters. |
| 8 | 8 |
| 9 const TOP_LEVEL_CONST = 1; | 9 const TOP_LEVEL_CONST = 1; |
| 10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; | 10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 return 2; | 27 return 2; |
| 28 }; | 28 }; |
| 29 Expect.equals(1, TOP_LEVEL_CONST); | 29 Expect.equals(1, TOP_LEVEL_CONST); |
| 30 Expect.equals(1, TOP_LEVEL_CONST_REF); | 30 Expect.equals(1, TOP_LEVEL_CONST_REF); |
| 31 Expect.equals(2, topLevel()); | 31 Expect.equals(2, topLevel()); |
| 32 | 32 |
| 33 expectThrowsNoSuchMethod(() { | 33 expectThrowsNoSuchMethod(() { |
| 34 TOP_LEVEL_CONST(); /// static type warning | 34 TOP_LEVEL_CONST(); /// static type warning |
| 35 }); | 35 }); |
| 36 expectThrowsNoSuchMethod(() { | 36 expectThrowsNoSuchMethod(() { |
| 37 (TOP_LEVEL_CONST)(); /// static type warning | 37 (TOP_LEVEL_CONST)(); // /// static type warning |
| 38 }); | 38 }); |
| 39 } | 39 } |
| 40 | 40 |
| 41 static void testField() { | 41 static void testField() { |
| 42 A a = new A(); | 42 A a = new A(); |
| 43 a.field = () => 42; | 43 a.field = () => 42; |
| 44 Expect.equals(42, a.field()); | 44 Expect.equals(42, a.field()); |
| 45 Expect.equals(42, (a.field)()); | 45 Expect.equals(42, (a.field)()); |
| 46 | 46 |
| 47 a.field = () => 87; | 47 a.field = () => 87; |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 get z { _mark('z'); return 2; } | 158 get z { _mark('z'); return 2; } |
| 159 | 159 |
| 160 _mark(m) { _order.write(m); return _order.toString(); } | 160 _mark(m) { _order.write(m); return _order.toString(); } |
| 161 StringBuffer _order; | 161 StringBuffer _order; |
| 162 | 162 |
| 163 } | 163 } |
| 164 | 164 |
| 165 main() { | 165 main() { |
| 166 CallThroughGetterTest.testMain(); | 166 CallThroughGetterTest.testMain(); |
| 167 } | 167 } |
| OLD | NEW |