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

Unified Diff: runtime/vm/object.cc

Issue 3003183003: Fix inlining annotations for AOT. (Closed)
Patch Set: const Created 3 years, 4 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 | « runtime/vm/object.h ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index def3345a3f7036408b6c0e20d4988792403f90bb..03b9ae5aa0265869055b618005cbebac97e5fd40 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -10705,6 +10705,10 @@ void Library::set_toplevel_class(const Class& value) const {
StorePointer(&raw_ptr()->toplevel_class_, value.raw());
}
+void Library::set_metadata(const GrowableObjectArray& value) const {
+ StorePointer(&raw_ptr()->metadata_, value.raw());
+}
+
RawLibrary* Library::ImportLibraryAt(intptr_t index) const {
Namespace& import = Namespace::Handle(ImportAt(index));
if (import.IsNull()) {
« no previous file with comments | « runtime/vm/object.h ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698