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

Unified Diff: runtime/vm/object.h

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
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | runtime/vm/object_service.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 2cd88fba640eb6243fbbe374d100d68655c39f0c..50144c20cfc8402d21eca99731214f54b56b35c5 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4685,14 +4685,7 @@ class Code : public Object {
StorePointer(&raw_ptr()->code_source_map_, code_source_map.raw());
}
- RawArray* await_token_positions() const {
-#if defined(DART_PRECOMPILED_RUNTIME)
- return Array::null();
-#else
- return raw_ptr()->await_token_positions_;
-#endif
- }
-
+ RawArray* await_token_positions() const;
void SetAwaitTokenPositions(const Array& await_token_positions) const;
// Used during reloading (see object_reload.cc). Calls Reset on all ICDatas
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | runtime/vm/object_service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698