| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 005fcef1f9758b03faaceb55760ca349b2bd1b46..4da9ecd01ec1304147118f93a32f9d8a29ea3896 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -14632,6 +14632,14 @@ void Code::DumpSourcePositions() const {
|
| }
|
|
|
|
|
| +RawArray* Code::await_token_positions() const {
|
| +#if defined(DART_PRECOMPILED_RUNTIME)
|
| + return Array::null();
|
| +#else
|
| + return raw_ptr()->await_token_positions_;
|
| +#endif
|
| +}
|
| +
|
| RawContext* Context::New(intptr_t num_variables, Heap::Space space) {
|
| ASSERT(num_variables >= 0);
|
| ASSERT(Object::context_class() != Class::null());
|
|
|