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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 10380019: Stop postponing instantiation of Type and remove InstantiatedType VM class. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 7 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/raw_object_snapshot.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot_test.cc
===================================================================
--- runtime/vm/snapshot_test.cc (revision 7388)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -498,8 +498,6 @@
writer.WriteObject(Object::null_class());
writer.WriteObject(Object::type_class());
writer.WriteObject(Object::type_parameter_class());
- writer.WriteObject(Object::instantiated_type_class());
- writer.WriteObject(Object::abstract_type_arguments_class());
writer.WriteObject(Object::type_arguments_class());
writer.WriteObject(Object::instantiated_type_arguments_class());
writer.WriteObject(Object::function_class());
@@ -524,8 +522,6 @@
EXPECT(Object::null_class() == reader.ReadObject());
EXPECT(Object::type_class() == reader.ReadObject());
EXPECT(Object::type_parameter_class() == reader.ReadObject());
- EXPECT(Object::instantiated_type_class() == reader.ReadObject());
- EXPECT(Object::abstract_type_arguments_class() == reader.ReadObject());
EXPECT(Object::type_arguments_class() == reader.ReadObject());
EXPECT(Object::instantiated_type_arguments_class() == reader.ReadObject());
EXPECT(Object::function_class() == reader.ReadObject());
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698