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

Unified Diff: runtime/vm/object_store.h

Issue 9420038: Heartbeat implementation of dart:mirrors. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 5107)
+++ runtime/vm/object_store.h (working copy)
@@ -262,6 +262,11 @@
native_wrappers_library_ = value.raw();
}
+ RawLibrary* mirrors_library() const { return mirrors_library_; }
+ void set_mirrors_library(const Library& value) {
+ mirrors_library_ = value.raw();
+ }
+
RawLibrary* root_library() const { return root_library_; }
void set_root_library(const Library& value) {
root_library_ = value.raw();
@@ -373,6 +378,7 @@
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
RawLibrary* isolate_library_;
+ RawLibrary* mirrors_library_;
RawLibrary* native_wrappers_library_;
RawLibrary* root_library_;
RawLibrary* registered_libraries_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698