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 // Tests that we can call functions through getters. | 5 // Tests that we can call functions through getters. |
6 | 6 |
7 final TOP_LEVEL_CONST = 1; | 7 final TOP_LEVEL_CONST = 1; |
8 final TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; | 8 final TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; |
9 final TOP_LEVEL_NULL = null; | 9 final TOP_LEVEL_NULL = null; |
10 | 10 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 get z() { _mark('z'); return 2; } | 156 get z() { _mark('z'); return 2; } |
157 | 157 |
158 _mark(m) { _order.add(m); return _order.toString(); } | 158 _mark(m) { _order.add(m); return _order.toString(); } |
159 StringBuffer _order; | 159 StringBuffer _order; |
160 | 160 |
161 } | 161 } |
162 | 162 |
163 main() { | 163 main() { |
164 CallThroughGetterTest.testMain(); | 164 CallThroughGetterTest.testMain(); |
165 } | 165 } |
OLD | NEW |