| Index: runtime/vm/object_service.cc
|
| diff --git a/runtime/vm/object_service.cc b/runtime/vm/object_service.cc
|
| index a7c846b7009e04c517f9eea6e05886f02a3db506..8cf15a8b97a15203ee5f19a65f1d9cc233424655 100644
|
| --- a/runtime/vm/object_service.cc
|
| +++ b/runtime/vm/object_service.cc
|
| @@ -869,6 +869,13 @@ void Code::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| }
|
|
|
|
|
| +void Code::SetAwaitTokenPositions(const Array& await_token_positions) const {
|
| +#if !defined(DART_PRECOMPILED_RUNTIME)
|
| + StorePointer(&raw_ptr()->await_token_positions_, await_token_positions.raw());
|
| +#endif
|
| +}
|
| +
|
| +
|
| void Context::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| JSONObject jsobj(stream);
|
| // TODO(turnidge): Should the user level type for Context be Context
|
|
|