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

Unified Diff: runtime/vm/object_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/object_test.cc
===================================================================
--- runtime/vm/object_test.cc (revision 32446)
+++ runtime/vm/object_test.cc (working copy)
@@ -2747,8 +2747,8 @@
cache.AddCheck(empty_class.id(), targ_0, targ_1, Bool::True());
EXPECT_EQ(1, cache.NumberOfChecks());
intptr_t test_class_id = -1;
- AbstractTypeArguments& test_targ_0 = AbstractTypeArguments::Handle();
- AbstractTypeArguments& test_targ_1 = AbstractTypeArguments::Handle();
+ TypeArguments& test_targ_0 = TypeArguments::Handle();
+ TypeArguments& test_targ_1 = TypeArguments::Handle();
Bool& test_result = Bool::Handle();
cache.GetCheck(0, &test_class_id, &test_targ_0, &test_targ_1, &test_result);
EXPECT_EQ(empty_class.id(), test_class_id);
« runtime/vm/dart_api_impl.cc ('K') | « runtime/vm/object.cc ('k') | runtime/vm/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698