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

Unified Diff: runtime/vm/object_store.h

Issue 10933039: Make int an abstract class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Now with correct base. Created 8 years, 3 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
diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
index 6e2800c48ee8caedd4a6616886a0f0c85a1a89e2..1442ff16085cf81e67023c16e9698eb7b4251b75 100644
--- a/runtime/vm/object_store.h
+++ b/runtime/vm/object_store.h
@@ -60,9 +60,9 @@ class ObjectStore {
number_type_ = value.raw();
}
- RawType* int_interface() const { return int_interface_; }
- void set_int_interface(const Type& value) {
- int_interface_ = value.raw();
+ RawType* int_type() const { return int_type_; }
+ void set_int_type(const Type& value) {
+ int_type_ = value.raw();
}
RawClass* integer_implementation_class() const {
@@ -463,7 +463,7 @@ class ObjectStore {
RawType* void_type_;
RawType* function_type_;
RawType* number_type_;
- RawType* int_interface_;
+ RawType* int_type_;
RawClass* integer_implementation_class_;
RawClass* smi_class_;
RawType* smi_type_;

Powered by Google App Engine
This is Rietveld 408576698