| Index: runtime/lib/mirrors.cc
|
| diff --git a/runtime/lib/mirrors.cc b/runtime/lib/mirrors.cc
|
| index e7a2b2ebe38677486adf31e297fa4a461b46bd52..f9d2c48060a1b12252309855f283f93e943a1382 100644
|
| --- a/runtime/lib/mirrors.cc
|
| +++ b/runtime/lib/mirrors.cc
|
| @@ -350,7 +350,7 @@ static RawInstance* CreateClassMirror(const Class& cls,
|
| const Bool& is_generic = Bool::Get(cls.NumTypeParameters() != 0);
|
| const Bool& is_mixin_app_alias = Bool::Get(cls.is_mixin_app_alias());
|
|
|
| - const Array& args = Array::Handle(Array::New(6));
|
| + const Array& args = Array::Handle(Array::New(7));
|
| args.SetAt(0, MirrorReference::Handle(MirrorReference::New(cls)));
|
| args.SetAt(1, type);
|
| // We do not set the names of anonymous mixin applications because the mirrors
|
| @@ -359,9 +359,10 @@ static RawInstance* CreateClassMirror(const Class& cls,
|
| if (!cls.IsAnonymousMixinApplication()) {
|
| args.SetAt(2, String::Handle(cls.Name()));
|
| }
|
| - args.SetAt(3, is_generic);
|
| - args.SetAt(4, is_mixin_app_alias);
|
| - args.SetAt(5, cls.NumTypeParameters() == 0 ? Bool::False() : is_declaration);
|
| + args.SetAt(3, owner_mirror);
|
| + args.SetAt(4, is_generic);
|
| + args.SetAt(5, is_mixin_app_alias);
|
| + args.SetAt(6, cls.NumTypeParameters() == 0 ? Bool::False() : is_declaration);
|
| return CreateMirror(Symbols::_LocalClassMirrorImpl(), args);
|
| }
|
|
|
|
|