| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library test.hot_set_field; | 5 library test.hot_set_field; |
| 6 | 6 |
| 7 @MirrorsUsed(targets: "test.hot_set_field") |
| 7 import 'dart:mirrors'; | 8 import 'dart:mirrors'; |
| 8 import 'package:expect/expect.dart'; | 9 import 'package:expect/expect.dart'; |
| 9 | 10 |
| 10 class C { | 11 class C { |
| 11 var field; | 12 var field; |
| 12 var _field; | 13 var _field; |
| 13 } | 14 } |
| 14 | 15 |
| 15 const int optimizationThreshold = 20; | 16 const int optimizationThreshold = 20; |
| 16 | 17 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 42 for (int i = 0; i < (2 * optimizationThreshold); i++) { | 43 for (int i = 0; i < (2 * optimizationThreshold); i++) { |
| 43 Expect.throws(() => im.setField(selector, i), (e) => e is NoSuchMethodError)
; | 44 Expect.throws(() => im.setField(selector, i), (e) => e is NoSuchMethodError)
; |
| 44 } | 45 } |
| 45 } | 46 } |
| 46 | 47 |
| 47 main() { | 48 main() { |
| 48 testPublic(); | 49 testPublic(); |
| 49 testPrivate(); | 50 testPrivate(); |
| 50 testPrivateWrongLibrary(); | 51 testPrivateWrongLibrary(); |
| 51 } | 52 } |
| OLD | NEW |