| Index: runtime/vm/debugger.cc
|
| ===================================================================
|
| --- runtime/vm/debugger.cc (revision 41687)
|
| +++ runtime/vm/debugger.cc (working copy)
|
| @@ -707,7 +707,7 @@
|
| String* name,
|
| intptr_t* token_pos,
|
| intptr_t* end_pos,
|
| - Instance* value) {
|
| + Object* value) {
|
| GetDescIndices();
|
| ASSERT(i < desc_indices_.length());
|
| intptr_t desc_index = desc_indices_[i];
|
| @@ -767,7 +767,7 @@
|
| GetDescIndices();
|
| intptr_t num_variables = desc_indices_.length();
|
| String& var_name = String::Handle();
|
| - Instance& value = Instance::Handle();
|
| + Object& value = Instance::Handle();
|
| const Array& list = Array::Handle(Array::New(2 * num_variables));
|
| for (intptr_t i = 0; i < num_variables; i++) {
|
| intptr_t ignore;
|
| @@ -802,7 +802,7 @@
|
| const GrowableObjectArray& param_values =
|
| GrowableObjectArray::Handle(GrowableObjectArray::New());
|
| String& name = String::Handle();
|
| - Instance& value = Instance::Handle();
|
| + Object& value = Instance::Handle();
|
| intptr_t num_variables = desc_indices_.length();
|
| for (intptr_t i = 0; i < num_variables; i++) {
|
| intptr_t ignore;
|
|
|