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

Unified Diff: runtime/vm/object_store.h

Issue 12544015: Implement 'dart:typeddata' directly in the VM instead of using 'dart:scalarlist' (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
Index: runtime/vm/object_store.h
===================================================================
--- runtime/vm/object_store.h (revision 19594)
+++ runtime/vm/object_store.h (working copy)
@@ -351,6 +351,13 @@
external_float64_array_class_ = value.raw();
}
+ RawArray* typeddata_classes() const {
+ return typeddata_classes_;
+ }
+ void set_typeddata_classes(const Array& value) {
+ typeddata_classes_ = value.raw();
+ }
+
RawClass* stacktrace_class() const {
return stacktrace_class_;
}
@@ -642,6 +649,7 @@
RawClass* external_float32x4_array_class_;
RawClass* external_float32_array_class_;
RawClass* external_float64_array_class_;
+ RawArray* typeddata_classes_;
RawClass* stacktrace_class_;
RawClass* jsregexp_class_;
RawClass* weak_property_class_;

Powered by Google App Engine
This is Rietveld 408576698