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

Unified Diff: runtime/vm/snapshot.cc

Issue 10876100: Convert double interface into abstract class (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/snapshot_ids.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.cc
===================================================================
--- runtime/vm/snapshot.cc (revision 11629)
+++ runtime/vm/snapshot.cc (working copy)
@@ -64,7 +64,6 @@
case kSmiType: return object_store->smi_type();
case kMintType: return object_store->mint_type();
case kDoubleType: return object_store->double_type();
- case kDoubleInterface: return object_store->double_interface();
case kIntInterface: return object_store->int_interface();
case kBoolType: return object_store->bool_type();
case kStringInterface: return object_store->string_interface();
@@ -97,8 +96,6 @@
return kMintType;
} else if (raw_type == object_store->double_type()) {
return kDoubleType;
- } else if (raw_type == object_store->double_interface()) {
- return kDoubleInterface;
} else if (raw_type == object_store->int_interface()) {
return kIntInterface;
} else if (raw_type == object_store->bool_type()) {
« no previous file with comments | « runtime/vm/parser.cc ('k') | runtime/vm/snapshot_ids.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698