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

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

Issue 223403003: Use closure tracer to identify closures that are not passed to Function.apply (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 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: sdk/lib/_internal/compiler/implementation/inferrer/list_tracer.dart
diff --git a/sdk/lib/_internal/compiler/implementation/inferrer/list_tracer.dart b/sdk/lib/_internal/compiler/implementation/inferrer/list_tracer.dart
index e95f986b49c163e85e6463b9898f5fbe11554596..fcb3ae1e987a939382e85d19357bca5fd65c6b1a 100644
--- a/sdk/lib/_internal/compiler/implementation/inferrer/list_tracer.dart
+++ b/sdk/lib/_internal/compiler/implementation/inferrer/list_tracer.dart
@@ -126,7 +126,7 @@ Set<String> doNotChangeLengthSelectorsSet = new Set<String>.from(
]);
-class ListTracerVisitor extends TracerVisitor {
+class ListTracerVisitor extends TracerVisitor<ListTypeInformation> {
// The [List] of found assignments to the list.
List<TypeInformation> assignments = <TypeInformation>[];
bool callsGrowableMethod = false;

Powered by Google App Engine
This is Rietveld 408576698