| Index: lib/compiler/implementation/lib/core_patch.dart
|
| diff --git a/lib/compiler/implementation/lib/core_patch.dart b/lib/compiler/implementation/lib/core_patch.dart
|
| index 90a43a721f9d868b2e484ac913c5076dc1063ead..d3f8e432c4dc6c1fa0f2b46a19af1b6bfe8ced43 100644
|
| --- a/lib/compiler/implementation/lib/core_patch.dart
|
| +++ b/lib/compiler/implementation/lib/core_patch.dart
|
| @@ -19,11 +19,8 @@ patch class Object {
|
|
|
| patch String toString() => Primitives.objectToString(this);
|
|
|
| - patch dynamic noSuchMethod(InvocationMirror invocation) {
|
| - throw new NoSuchMethodError(this,
|
| - invocation.memberName,
|
| - invocation.positionalArguments,
|
| - invocation.namedArguments);
|
| + patch Dynamic noSuchMethod(String name, List args) {
|
| + throw new NoSuchMethodError(this, name, args);
|
| }
|
|
|
| patch Type get runtimeType {
|
|
|