| Index: runtime/lib/mirrors_patch.dart
|
| diff --git a/runtime/lib/mirrors_patch.dart b/runtime/lib/mirrors_patch.dart
|
| index c168026810456469b4375502ed9f222898b6f9e7..03bd1b6eca59442717fded31213fcc8ba56e7a0e 100644
|
| --- a/runtime/lib/mirrors_patch.dart
|
| +++ b/runtime/lib/mirrors_patch.dart
|
| @@ -33,8 +33,8 @@ import "dart:_internal" as internal;
|
| return _Mirrors.reflectClass(key);
|
| }
|
|
|
| -@patch TypeMirror reflectType(Type key, [List<Type> typeArguments]) {
|
| - return _Mirrors.reflectType(key, typeArguments);
|
| +@patch TypeMirror reflectType(Type key) {
|
| + return _Mirrors.reflectType(key);
|
| }
|
|
|
| @patch class MirrorSystem {
|
|
|