| Index: runtime/lib/mirrors_impl.dart
|
| diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
|
| index 0487b586c7c7ba343d6fb2b5ccd8a36d81b1615f..525cf205c439a20531157ec02ee34af65c320922 100644
|
| --- a/runtime/lib/mirrors_impl.dart
|
| +++ b/runtime/lib/mirrors_impl.dart
|
| @@ -321,7 +321,6 @@ class _LocalInstanceMirrorImpl extends _LocalObjectMirrorImpl
|
| InstanceMirror invoke(Symbol memberName,
|
| List positionalArguments,
|
| [Map<Symbol, dynamic> namedArguments]) {
|
| -
|
| int numPositionalArguments = positionalArguments.length + 1; // Receiver.
|
| int numNamedArguments = namedArguments != null ? namedArguments.length : 0;
|
| int numArguments = numPositionalArguments + numNamedArguments;
|
| @@ -375,7 +374,6 @@ class _LocalClosureMirrorImpl extends _LocalInstanceMirrorImpl
|
| // replaced with
|
| // return this.invoke(#call, positionalArguments, namedArguments);
|
| // and the native ClosureMirror_apply can be removed.
|
| -
|
| int numPositionalArguments = positionalArguments.length + 1; // Receiver.
|
| int numNamedArguments = namedArguments != null ? namedArguments.length : 0;
|
| int numArguments = numPositionalArguments + numNamedArguments;
|
|
|