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

Unified Diff: dart/runtime/vm/object_store.h

Issue 59073003: Version 0.8.10.4 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 | « dart/runtime/vm/object.cc ('k') | dart/runtime/vm/object_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/runtime/vm/object_store.h
===================================================================
--- dart/runtime/vm/object_store.h (revision 29808)
+++ dart/runtime/vm/object_store.h (working copy)
@@ -195,15 +195,15 @@
RawType* float32x4_type() const { return float32x4_type_; }
void set_float32x4_type(const Type& value) { float32x4_type_ = value.raw(); }
- RawClass* uint32x4_class() const {
- return uint32x4_class_;
+ RawClass* int32x4_class() const {
+ return int32x4_class_;
}
- void set_uint32x4_class(const Class& value) {
- uint32x4_class_ = value.raw();
+ void set_int32x4_class(const Class& value) {
+ int32x4_class_ = value.raw();
}
- RawType* uint32x4_type() const { return uint32x4_type_; }
- void set_uint32x4_type(const Type& value) { uint32x4_type_ = value.raw(); }
+ RawType* int32x4_type() const { return int32x4_type_; }
+ void set_int32x4_type(const Type& value) { int32x4_type_ = value.raw(); }
RawArray* typed_data_classes() const {
return typed_data_classes_;
@@ -441,7 +441,7 @@
RawClass* double_class_;
RawType* double_type_;
RawType* float32x4_type_;
- RawType* uint32x4_type_;
+ RawType* int32x4_type_;
RawType* string_type_;
RawClass* one_byte_string_class_;
RawClass* two_byte_string_class_;
@@ -454,7 +454,7 @@
RawClass* immutable_array_class_;
RawClass* growable_object_array_class_;
RawClass* float32x4_class_;
- RawClass* uint32x4_class_;
+ RawClass* int32x4_class_;
RawArray* typed_data_classes_;
RawClass* error_class_;
RawClass* stacktrace_class_;
« no previous file with comments | « dart/runtime/vm/object.cc ('k') | dart/runtime/vm/object_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698