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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 8761011: Renaming type classes as discussed: (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 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
« runtime/vm/raw_object.h ('K') | « runtime/vm/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 1948)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -165,7 +165,7 @@
SnapshotWriter writer(false, &buffer, &allocator);
writer.WriteObject(Object::class_class());
writer.WriteObject(Object::null_class());
- writer.WriteObject(Object::parameterized_type_class());
+ writer.WriteObject(Object::type_class());
writer.WriteObject(Object::type_parameter_class());
writer.WriteObject(Object::instantiated_type_class());
writer.WriteObject(Object::type_arguments_class());
@@ -192,7 +192,7 @@
SnapshotReader reader(snapshot, isolate->heap(), isolate->object_store());
EXPECT(Object::class_class() == reader.ReadObject());
EXPECT(Object::null_class() == reader.ReadObject());
- EXPECT(Object::parameterized_type_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::type_arguments_class() == reader.ReadObject());
« runtime/vm/raw_object.h ('K') | « runtime/vm/snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698