Chromium Code Reviews| Index: runtime/vm/object.cc |
| =================================================================== |
| --- runtime/vm/object.cc (revision 41687) |
| +++ runtime/vm/object.cc (working copy) |
| @@ -12565,7 +12565,7 @@ |
| JSONArray jsarr(&jsobj, "variables"); |
| for (intptr_t i = 0; i < num_variables(); i++) { |
| - const Instance& var = Instance::Handle(At(i)); |
| + const Object& var = Object::Handle(At(i)); |
| JSONObject jselement(&jsarr); |
| jselement.AddProperty("index", i); |
| jselement.AddProperty("value", var); |