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

Unified Diff: runtime/vm/flow_graph_builder.cc

Issue 11299020: Make creation of list literal more resilient to changes in the underlying (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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
Index: runtime/vm/flow_graph_builder.cc
===================================================================
--- runtime/vm/flow_graph_builder.cc (revision 14985)
+++ runtime/vm/flow_graph_builder.cc (working copy)
@@ -2810,7 +2810,7 @@
arguments->Add(new LiteralNode(args_pos, method_name));
// The second argument is an array containing the original method arguments.
ArrayNode* args_array =
- new ArrayNode(args_pos, Type::ZoneHandle(Type::ListInterface()));
+ new ArrayNode(args_pos, Type::ZoneHandle(Type::ArrayType()));
for (intptr_t i = 0; i < method_arguments->length(); i++) {
args_array->AddElement(method_arguments->NodeAt(i));
}

Powered by Google App Engine
This is Rietveld 408576698