| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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.invoke_closurization_test; | 5 library test.invoke_closurization_test; |
| 6 | 6 |
| 7 import 'dart:mirrors'; | 7 import 'dart:mirrors'; |
| 8 | 8 |
| 9 import 'package:expect/expect.dart'; | 9 import 'package:expect/expect.dart'; |
| 10 import 'invoke_test.dart'; | |
| 11 | 10 |
| 12 class C { | 11 class C { |
| 13 instanceMethod(x, y, z) => '$x+$y+$z'; | 12 instanceMethod(x, y, z) => '$x+$y+$z'; |
| 14 static staticFunction(x, y, z) => '$x-$y-$z'; | 13 static staticFunction(x, y, z) => '$x-$y-$z'; |
| 15 } | 14 } |
| 16 libraryFunction(x, y, z) => '$x:$y:$z'; | 15 libraryFunction(x, y, z) => '$x:$y:$z'; |
| 17 | 16 |
| 18 testSync() { | 17 testSync() { |
| 19 var result; | 18 var result; |
| 20 | 19 |
| 21 C c = new C(); | 20 C c = new C(); |
| 22 InstanceMirror im = reflect(c); | 21 InstanceMirror im = reflect(c); |
| 23 result = im.getField(#instanceMethod); | 22 result = im.getField(#instanceMethod); |
| 24 Expect.isTrue(result.reflectee is Function, "Should be closure"); | 23 Expect.isTrue(result.reflectee is Function, "Should be closure"); |
| 25 Expect.equals("A+B+C", result.reflectee('A', 'B', 'C')); | 24 Expect.equals("A+B+C", result.reflectee('A', 'B', 'C')); |
| 26 | 25 |
| 27 ClassMirror cm = reflectClass(C); | 26 ClassMirror cm = reflectClass(C); |
| 28 result = cm.getField(#staticFunction); | 27 result = cm.getField(#staticFunction); /// static:
ok |
| 29 Expect.isTrue(result.reflectee is Function, "Should be closure"); | 28 Expect.isTrue(result.reflectee is Function, "Should be closure"); /// static:
continued |
| 30 Expect.equals("A-B-C", result.reflectee('A', 'B', 'C')); | 29 Expect.equals("A-B-C", result.reflectee('A', 'B', 'C')); /// static:
continued |
| 31 | 30 |
| 32 LibraryMirror lm = cm.owner; | 31 LibraryMirror lm = cm.owner; |
| 33 result = lm.getField(#libraryFunction); | 32 result = lm.getField(#libraryFunction); /// static:
continued |
| 34 Expect.isTrue(result.reflectee is Function, "Should be closure"); | 33 Expect.isTrue(result.reflectee is Function, "Should be closure"); /// static:
continued |
| 35 Expect.equals("A:B:C", result.reflectee('A', 'B', 'C')); | 34 Expect.equals("A:B:C", result.reflectee('A', 'B', 'C')); /// static:
continued |
| 36 } | 35 } |
| 37 | 36 |
| 38 main() { | 37 main() { |
| 39 testSync(); | 38 testSync(); |
| 40 } | 39 } |
| OLD | NEW |