| 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 d458e743d8f866a58c57cb43d4ffeef35782f96d..ee3f3fb97d3311a7c4284164d1c9ddff669ad7a0 100644
|
| --- a/lib/compiler/implementation/lib/core_patch.dart
|
| +++ b/lib/compiler/implementation/lib/core_patch.dart
|
| @@ -19,8 +19,8 @@ patch class Object {
|
|
|
| patch String toString() => Primitives.objectToString(this);
|
|
|
| - patch Dynamic noSuchMethod(String name, List args) {
|
| - throw new NoSuchMethodError(this, name, args);
|
| + patch Dynamic noSuchMethod(InvocationMirror msg) {
|
| + throw new NoSuchMethodError(this, msg.memberName, msg.positionalArguments);
|
| }
|
|
|
| patch Type get runtimeType {
|
|
|