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

Unified Diff: runtime/vm/object_store.h

Issue 10389150: - Add a math library. Currently it mostly matches the Math class in dart:core. (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
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 7858)
+++ runtime/vm/object_store.h (working copy)
@@ -405,10 +405,16 @@
core_impl_library_ = value.raw();
}
+ RawLibrary* math_library() const {
+ return math_library_;
+ }
+ void set_math_library(const Library& value) {
+ math_library_ = value.raw();
+ }
+
RawLibrary* isolate_library() const {
return isolate_library_;
}
-
void set_isolate_library(const Library& value) {
isolate_library_ = value.raw();
}
@@ -561,6 +567,7 @@
RawArray* canonical_type_arguments_;
RawLibrary* core_library_;
RawLibrary* core_impl_library_;
+ RawLibrary* math_library_;
RawLibrary* isolate_library_;
RawLibrary* mirrors_library_;
RawLibrary* native_wrappers_library_;
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/object_store.cc » ('j') | tests/lib/lib.status » ('J')

Powered by Google App Engine
This is Rietveld 408576698