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

Unified Diff: lib/compiler/implementation/universe.dart

Issue 10827181: Collect call site information and use that for estimating parameter types (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed comments from ahe@ Created 8 years, 4 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: lib/compiler/implementation/universe.dart
diff --git a/lib/compiler/implementation/universe.dart b/lib/compiler/implementation/universe.dart
index ebf742aa5c177e161b6adb3a7909fba739479279..aa1d89725de8cae8366da80346d5c33bea4ee19b 100644
--- a/lib/compiler/implementation/universe.dart
+++ b/lib/compiler/implementation/universe.dart
@@ -283,7 +283,7 @@ class Selector implements Hashable {
return orderedNamedArguments;
}
- toString() => '$kind $argumentCount';
+ toString() => 'Selector($kind, $argumentCount)';
}
class TypedSelector extends Selector {
@@ -353,4 +353,6 @@ class TypedSelector extends Selector {
if (other.receiverType !== receiverType) return false;
return super == other;
}
+
+ toString() => 'TypedSelector($kind, $receiverType, $argumentCount)';
}

Powered by Google App Engine
This is Rietveld 408576698