| Index: runtime/lib/object_patch.dart
|
| ===================================================================
|
| --- runtime/lib/object_patch.dart (revision 18846)
|
| +++ runtime/lib/object_patch.dart (working copy)
|
| @@ -28,6 +28,7 @@
|
|
|
| _noSuchMethod(bool isMethod,
|
| String memberName,
|
| + int type,
|
| List arguments,
|
| Map<String, dynamic> namedArguments)
|
| native "Object_noSuchMethod";
|
| @@ -35,6 +36,7 @@
|
| /* patch */ noSuchMethod(InvocationMirror invocation) {
|
| return _noSuchMethod(invocation.isMethod,
|
| invocation.memberName,
|
| + invocation._type,
|
| invocation.positionalArguments,
|
| invocation.namedArguments);
|
| }
|
|
|