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

Unified Diff: runtime/vm/object_store.h

Issue 10386107: Implement spawnUri from dart:isolate. This function allows us to (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 7714)
+++ runtime/vm/object_store.h (working copy)
@@ -437,6 +437,11 @@
root_library_ = 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) {
@@ -566,6 +571,7 @@
RawLibrary* native_wrappers_library_;
RawLibrary* builtin_library_;
RawLibrary* root_library_;
+ RawArray* import_map_;
RawLibrary* registered_libraries_;
RawGrowableObjectArray* pending_classes_;
RawError* sticky_error_;
« 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