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

Unified Diff: runtime/vm/object.h

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 | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »
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 55fdbb5a52e0332cab9c177a20f5d411c1e2351e..4bbcf7fec77e6fcc9bbbf5b8de0e6783836a79f4 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -4051,6 +4051,7 @@ class Library : public Object {
bool HasExports() const;
RawArray* loaded_scripts() const { return raw_ptr()->loaded_scripts_; }
RawGrowableObjectArray* metadata() const { return raw_ptr()->metadata_; }
+ void set_metadata(const GrowableObjectArray& value) const;
RawArray* dictionary() const { return raw_ptr()->dictionary_; }
void InitClassDictionary() const;
@@ -4128,6 +4129,7 @@ class Namespace : public Object {
FINAL_HEAP_OBJECT_IMPLEMENTATION(Namespace, Object);
friend class Class;
+ friend class Precompiler;
};
// ObjectPool contains constants, immediates and addresses embedded in code
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698