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

Unified Diff: runtime/vm/object_store.h

Issue 10414084: Replace linked list of loaded libraries (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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 7922)
+++ runtime/vm/object_store.h (working copy)
@@ -443,17 +443,16 @@
root_library_ = value.raw();
}
+ RawGrowableObjectArray* libraries() const { return libraries_; }
+ void set_libraries(const GrowableObjectArray& value) {
+ libraries_ = value.raw();
+ }
+
RawArray* import_map() const { return import_map_; }
void set_import_map(const Array& value) {
import_map_ = value.raw();
}
- // Returns head of list of registered libraries.
- RawLibrary* registered_libraries() const { return registered_libraries_; }
- void set_registered_libraries(const Library& value) {
- registered_libraries_ = value.raw();
- }
-
RawGrowableObjectArray* pending_classes() const { return pending_classes_; }
void set_pending_classes(const GrowableObjectArray& value) {
ASSERT(!value.IsNull());
@@ -578,8 +577,8 @@
RawLibrary* native_wrappers_library_;
RawLibrary* builtin_library_;
RawLibrary* root_library_;
+ RawGrowableObjectArray* libraries_;
RawArray* import_map_;
- RawLibrary* registered_libraries_;
RawGrowableObjectArray* pending_classes_;
RawError* sticky_error_;
RawContext* empty_context_;
« 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