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

Unified Diff: runtime/vm/object_store.cc

Issue 10942025: Convert String and List to abstract classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated to tip-of-tree. 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.cc
diff --git a/runtime/vm/object_store.cc b/runtime/vm/object_store.cc
index dbe2c70b059a4e8d3a41c47a53111e4b6568e67e..9e778625d74a480f65a36c7ff6fc22338ec68460 100644
--- a/runtime/vm/object_store.cc
+++ b/runtime/vm/object_store.cc
@@ -27,7 +27,7 @@ ObjectStore::ObjectStore()
mint_class_(Class::null()),
bigint_class_(Class::null()),
double_class_(Class::null()),
- string_interface_(Type::null()),
+ string_type_(Type::null()),
one_byte_string_class_(Class::null()),
two_byte_string_class_(Class::null()),
four_byte_string_class_(Class::null()),
@@ -36,7 +36,7 @@ ObjectStore::ObjectStore()
external_four_byte_string_class_(Class::null()),
bool_type_(Type::null()),
bool_class_(Class::null()),
- list_interface_(Type::null()),
+ list_type_(Type::null()),
array_class_(Class::null()),
immutable_array_class_(Class::null()),
growable_object_array_class_(Class::null()),

Powered by Google App Engine
This is Rietveld 408576698