Chromium Code Reviews| Index: runtime/vm/snapshot.cc |
| =================================================================== |
| --- runtime/vm/snapshot.cc (revision 39612) |
| +++ runtime/vm/snapshot.cc (working copy) |
| @@ -191,7 +191,7 @@ |
| // Setup for long jump in case there is an exception while reading. |
| LongJumpScope jump; |
| if (setjmp(*jump.Set()) == 0) { |
| - Object& obj = Object::Handle(ReadObjectImpl()); |
| + PassiveObject& obj = PassiveObject::Handle(ReadObjectImpl()); |
|
Ivan Posva
2014/08/28 19:31:54
Handle(isolate_, ...)
siva
2014/08/29 00:17:01
Done.
|
| for (intptr_t i = 0; i < backward_references_.length(); i++) { |
| if (!backward_references_[i].is_deserialized()) { |
| ReadObjectImpl(); |