| Index: runtime/vm/raw_object_snapshot.cc
|
| ===================================================================
|
| --- runtime/vm/raw_object_snapshot.cc (revision 3419)
|
| +++ runtime/vm/raw_object_snapshot.cc (working copy)
|
| @@ -469,6 +469,7 @@
|
|
|
| // Set all the non object fields.
|
| func.set_token_index(reader->ReadIntptrValue());
|
| + func.set_end_token_index(reader->ReadIntptrValue());
|
| func.set_num_fixed_parameters(reader->ReadIntptrValue());
|
| func.set_num_optional_parameters(reader->ReadIntptrValue());
|
| func.set_invocation_counter(reader->ReadIntptrValue());
|
| @@ -504,6 +505,7 @@
|
|
|
| // Write out all the non object fields.
|
| writer->WriteIntptrValue(ptr()->token_index_);
|
| + writer->WriteIntptrValue(ptr()->end_token_index_);
|
| writer->WriteIntptrValue(ptr()->num_fixed_parameters_);
|
| writer->WriteIntptrValue(ptr()->num_optional_parameters_);
|
| writer->WriteIntptrValue(ptr()->invocation_counter_);
|
|
|