| Index: runtime/lib/mirrors_impl.dart
|
| diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart
|
| index 09e49044a71518a436dfdae2f083589a1b12512e..25f546c35944f76f91e8f61b47563335f20d7355 100644
|
| --- a/runtime/lib/mirrors_impl.dart
|
| +++ b/runtime/lib/mirrors_impl.dart
|
| @@ -405,6 +405,7 @@ class _LocalClassMirrorImpl extends _LocalObjectMirrorImpl
|
| _LocalClassMirrorImpl(reflectee,
|
| reflectedType,
|
| String simpleName,
|
| + this._owner,
|
| this._isGeneric,
|
| this._isMixinAlias,
|
| this._isGenericDeclaration)
|
| @@ -757,7 +758,7 @@ class _LocalClassMirrorImpl extends _LocalObjectMirrorImpl
|
| class _LocalFunctionTypeMirrorImpl extends _LocalClassMirrorImpl
|
| implements FunctionTypeMirror {
|
| _LocalFunctionTypeMirrorImpl(reflectee, reflectedType)
|
| - : super(reflectee, reflectedType, null, false, false, false);
|
| + : super(reflectee, reflectedType, null, null, false, false, false);
|
|
|
| bool get _isAnonymousMixinApplication => false;
|
|
|
|
|