| Index: dart/sdk/lib/mirrors/mirrors.dart
|
| diff --git a/dart/sdk/lib/mirrors/mirrors.dart b/dart/sdk/lib/mirrors/mirrors.dart
|
| index c5e51d0df75cc589585fd1143c2992f70c32091c..12c06a2034b4884c53e2e6d3c29b141001c8adbb 100644
|
| --- a/dart/sdk/lib/mirrors/mirrors.dart
|
| +++ b/dart/sdk/lib/mirrors/mirrors.dart
|
| @@ -277,6 +277,15 @@ abstract class InstanceMirror implements ObjectMirror {
|
| * exception is thrown.
|
| */
|
| get reflectee;
|
| +
|
| + /**
|
| + * Perform [invocation] on [reflectee].
|
| + *
|
| + * If [reflectee] doesn't support the invocation, its [noSuchMethod]
|
| + * method will be called with either [invocation] or another
|
| + * equivalent instance of [Invocation].
|
| + */
|
| + delegate(Invocation invocation);
|
| }
|
|
|
| /**
|
|
|