Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(504)

Unified Diff: runtime/vm/object.cc

Issue 2719083004: Fix build failures in precompiled runtime (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/object_service.cc » ('j') | runtime/vm/object_service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698