Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Unified Diff: runtime/lib/mirrors_impl.dart

Issue 68103016: When ClassMirrors are created by enumerating members of a LibraryMirror, have the ClassMirror use t… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698