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

Unified Diff: sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart

Issue 104893007: Trace lists when they are stored into other lists. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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: sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart (revision 30937)
+++ sdk/lib/_internal/compiler/implementation/inferrer/type_graph_nodes.dart (working copy)
@@ -837,6 +837,13 @@
*/
bool checksGrowable = true;
+ // The set of [TypeInformation] where the traced container could
+ // flow in.
+ final Setlet<TypeInformation> flowsInto = new Setlet<TypeInformation>();
+
+ bool bailedOut = true;
+ bool analyzed = false;
+
ContainerTypeInformation(this.originalContainerType,
this.elementType,
this.originalLength) {

Powered by Google App Engine
This is Rietveld 408576698