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

Unified Diff: runtime/vm/object_store.h

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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.cc ('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_store.h
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index d798ff0105c8647919df181806692b65edddb4fd..97c822132c657d319b3517dbaa13cd6ea11f0256 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -355,6 +355,11 @@ class ObjectStore {
canonical_type_arguments_ = value.raw();
}
+ RawLibrary* async_library() const { return async_library_; }
+ void set_async_library(const Library& value) {
+ async_library_ = value.raw();
+ }
+
RawLibrary* core_library() const { return core_library_; }
void set_core_library(const Library& value) {
core_library_ = value.raw();
@@ -555,6 +560,7 @@ class ObjectStore {
RawClass* weak_property_class_;
RawArray* symbol_table_;
RawArray* canonical_type_arguments_;
+ RawLibrary* async_library_;
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
RawLibrary* collection_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698