| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 47a4cf502df67f01728b94a8b4f5ddc267ce1caa..806399a92d9383e289b394eabd2067eb56993b33 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -6663,9 +6663,9 @@ void Function::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| jsobj.AddProperty("user_name", pretty_name);
|
| if (cls.IsTopLevel()) {
|
| const Library& library = Library::Handle(cls.library());
|
| - jsobj.AddProperty("owner", library);
|
| + jsobj.AddProperty("owningLibrary", library);
|
| } else {
|
| - jsobj.AddProperty("owner", cls);
|
| + jsobj.AddProperty("owningClass", cls);
|
| }
|
| const Function& parent = Function::Handle(parent_function());
|
| if (!parent.IsNull()) {
|
|
|