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

Unified Diff: runtime/lib/array.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
« no previous file with comments | « no previous file | runtime/lib/double.cc » ('j') | runtime/vm/code_generator.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/array.cc
===================================================================
--- runtime/lib/array.cc (revision 32446)
+++ runtime/lib/array.cc (working copy)
@@ -13,8 +13,8 @@
namespace dart {
DEFINE_NATIVE_ENTRY(List_allocate, 2) {
- const AbstractTypeArguments& type_arguments =
- AbstractTypeArguments::CheckedHandle(isolate, arguments->NativeArgAt(0));
+ const TypeArguments& type_arguments =
+ TypeArguments::CheckedHandle(isolate, arguments->NativeArgAt(0));
const Instance& length = Instance::CheckedHandle(
isolate, arguments->NativeArgAt(1));
if (!length.IsSmi()) {
« no previous file with comments | « no previous file | runtime/lib/double.cc » ('j') | runtime/vm/code_generator.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698