| Index: dart/sdk/lib/core/invocation.dart
|
| diff --git a/dart/sdk/lib/core/invocation.dart b/dart/sdk/lib/core/invocation.dart
|
| index 092a9078f86ccf00734b34a294b9edcebcdb87b2..0388e21965e395d6b24e0f70a1861bb3372f90bc 100644
|
| --- a/dart/sdk/lib/core/invocation.dart
|
| +++ b/dart/sdk/lib/core/invocation.dart
|
| @@ -40,13 +40,4 @@ abstract class Invocation {
|
|
|
| /** Whether the invocation was a getter or a setter call. */
|
| bool get isAccessor => isGetter || isSetter;
|
| -
|
| - /**
|
| - * Perform the invocation on the provided object.
|
| - *
|
| - * If the object doesn't support the invocation, its [noSuchMethod]
|
| - * method will be called with either this [InvocationMirror] or another
|
| - * equivalent [InvocationMirror].
|
| - */
|
| - invokeOn(Object receiver);
|
| }
|
|
|