| 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 lib; |
| 6 |
| 7 @MirrorsUsed(targets: "lib") |
| 5 import "dart:mirrors"; | 8 import "dart:mirrors"; |
| 6 | 9 |
| 7 import "package:expect/expect.dart"; | 10 import "package:expect/expect.dart"; |
| 8 | 11 |
| 9 class MultiArityFunction implements Function { | 12 class MultiArityFunction implements Function { |
| 10 noSuchMethod(Invocation msg) { | 13 noSuchMethod(Invocation msg) { |
| 11 if (msg.memberName != #call) return super.noSuchMethod(msg); | 14 if (msg.memberName != #call) return super.noSuchMethod(msg); |
| 12 return msg.positionalArguments.join(","); | 15 return msg.positionalArguments.join(","); |
| 13 } | 16 } |
| 14 } | 17 } |
| (...skipping 16 matching lines...) Expand all Loading... |
| 31 Expect.equals('a', cm.apply(['a']).reflectee); | 34 Expect.equals('a', cm.apply(['a']).reflectee); |
| 32 Expect.equals('a,b', cm.apply(['a', 'b']).reflectee); | 35 Expect.equals('a,b', cm.apply(['a', 'b']).reflectee); |
| 33 Expect.equals('a,b,c', cm.apply(['a', 'b', 'c']).reflectee); | 36 Expect.equals('a,b,c', cm.apply(['a', 'b', 'c']).reflectee); |
| 34 | 37 |
| 35 MethodMirror mm = cm.function; | 38 MethodMirror mm = cm.function; |
| 36 Expect.isNull(mm); | 39 Expect.isNull(mm); |
| 37 | 40 |
| 38 ClassMirror km = cm.type; | 41 ClassMirror km = cm.type; |
| 39 Expect.equals(reflectClass(MultiArityFunction), km); | 42 Expect.equals(reflectClass(MultiArityFunction), km); |
| 40 } | 43 } |
| OLD | NEW |