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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 154393003: Implement eager instantiation and canonicalization of type arguments at run (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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/snapshot_test.cc
===================================================================
--- runtime/vm/snapshot_test.cc (revision 32446)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -473,7 +473,6 @@
MessageWriter writer(&buffer, &malloc_allocator);
writer.WriteObject(Object::class_class());
writer.WriteObject(Object::type_arguments_class());
- writer.WriteObject(Object::instantiated_type_arguments_class());
writer.WriteObject(Object::function_class());
writer.WriteObject(Object::field_class());
writer.WriteObject(Object::token_stream_class());
@@ -492,7 +491,6 @@
Isolate::Current());
EXPECT(Object::class_class() == reader.ReadObject());
EXPECT(Object::type_arguments_class() == reader.ReadObject());
- EXPECT(Object::instantiated_type_arguments_class() == reader.ReadObject());
EXPECT(Object::function_class() == reader.ReadObject());
EXPECT(Object::field_class() == reader.ReadObject());
EXPECT(Object::token_stream_class() == reader.ReadObject());

Powered by Google App Engine
This is Rietveld 408576698