Index: pkg/compiler/lib/src/helpers/stats.dart |
diff --git a/pkg/compiler/lib/src/helpers/stats.dart b/pkg/compiler/lib/src/helpers/stats.dart |
index 13897c72c46425d72160ed48b7f3e8b142204ce1..d7f6b5d5f6890959e8939101e5f8beecc3e59114 100644 |
--- a/pkg/compiler/lib/src/helpers/stats.dart |
+++ b/pkg/compiler/lib/src/helpers/stats.dart |
@@ -458,7 +458,7 @@ class _StackTraceNode implements Comparable<_StackTraceNode> { |
indentation = ''.padLeft(countText.length, ' '); |
if (commonPrefix != null) { |
int index = 0; |
- for (String line in commonPrefix) { |
+ for (StackTraceLine line in commonPrefix) { |
sb.write(indentation); |
if (index > 1) { |
sb.write('...\n'); |