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

Unified Diff: runtime/vm/debugger_api_impl.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/debugger_api_impl.cc
===================================================================
--- runtime/vm/debugger_api_impl.cc (revision 32446)
+++ runtime/vm/debugger_api_impl.cc (working copy)
@@ -608,8 +608,8 @@
const Class& super_cls = Class::Handle(cls.SuperClass());
intptr_t num_expected_type_arguments = super_cls.NumTypeArguments();
TypeArguments& super_type_args_array = TypeArguments::Handle();
- const AbstractTypeArguments& type_args_array =
- AbstractTypeArguments::Handle(type.arguments());
+ const TypeArguments& type_args_array =
+ TypeArguments::Handle(type.arguments());
if (!type_args_array.IsNull() && (num_expected_type_arguments > 0)) {
super_type_args_array = TypeArguments::New(num_expected_type_arguments);
AbstractType& type_arg = AbstractType::Handle();

Powered by Google App Engine
This is Rietveld 408576698