Index: runtime/lib/mirrors_impl.dart |
diff --git a/runtime/lib/mirrors_impl.dart b/runtime/lib/mirrors_impl.dart |
index a2ab082698353683625dd7195acd806f3046f56c..165904d1c45a5e48c9fa931d6876ddab4b666ec1 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._isMixinTypedef, |
this._isGenericDeclaration) |
@@ -759,7 +760,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; |