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

Unified Diff: runtime/vm/flow_graph_builder.cc

Issue 10942025: Convert String and List to abstract classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated to tip-of-tree. Created 8 years, 3 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/flow_graph_builder.cc
diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
index c067f88633b82bf284f08861ccfaef55a3adaa43..a3a9520d4da300958eae9ee54d1d28f76cd99552 100644
--- a/runtime/vm/flow_graph_builder.cc
+++ b/runtime/vm/flow_graph_builder.cc
@@ -1658,7 +1658,7 @@ static intptr_t GetResultCidOfConstructor(ConstructorCallNode* node) {
const Class& function_class = Class::Handle(function.Owner());
if (function_class.library() == core_impl_lib.raw()) {
- if (function_class.Name() == Symbols::ListImplementation()) {
+ if (function_class.Name() == Symbols::List()) {
if (function.name() == Symbols::ListFactory()) {
if (node->arguments()->length() == 0) {
return kGrowableObjectArrayCid;

Powered by Google App Engine
This is Rietveld 408576698