| 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.delgate_function_invocation; | 5 library test.delegate_function_invocation; |
| 6 | 6 |
| 7 @MirrorsUsed(targets: "test.delegate_function_invocation") |
| 7 import 'dart:mirrors'; | 8 import 'dart:mirrors'; |
| 8 | 9 |
| 9 import 'package:expect/expect.dart'; | 10 import 'package:expect/expect.dart'; |
| 10 | 11 |
| 11 class Proxy { | 12 class Proxy { |
| 12 var targetMirror; | 13 var targetMirror; |
| 13 Proxy(target) : this.targetMirror = reflect(target); | 14 Proxy(target) : this.targetMirror = reflect(target); |
| 14 noSuchMethod(invocation) => targetMirror.delegate(invocation); | 15 noSuchMethod(invocation) => targetMirror.delegate(invocation); |
| 15 } | 16 } |
| 16 | 17 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 47 Expect.equals(45, proxy()); | 48 Expect.equals(45, proxy()); |
| 48 Expect.equals(45, proxy.call()); | 49 Expect.equals(45, proxy.call()); |
| 49 } | 50 } |
| 50 | 51 |
| 51 main() { | 52 main() { |
| 52 testClosure(); | 53 testClosure(); |
| 53 testFakeFunction(); | 54 testFakeFunction(); |
| 54 testTopLevelTearOff(); | 55 testTopLevelTearOff(); |
| 55 testInstanceTearOff(); | 56 testInstanceTearOff(); |
| 56 } | 57 } |
| OLD | NEW |