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

Unified Diff: dart/sdk/lib/_internal/compiler/implementation/util/link.dart

Issue 10905211: Clean up operator names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Address review comments Created 8 years, 1 month 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: dart/sdk/lib/_internal/compiler/implementation/util/link.dart
diff --git a/dart/sdk/lib/_internal/compiler/implementation/util/link.dart b/dart/sdk/lib/_internal/compiler/implementation/util/link.dart
index b50b86aeeb87f41df71641d930570f3fb450013d..b4ad7daf39bff359c31b30a8041e118d2f7038b6 100644
--- a/dart/sdk/lib/_internal/compiler/implementation/util/link.dart
+++ b/dart/sdk/lib/_internal/compiler/implementation/util/link.dart
@@ -30,7 +30,6 @@ class Link<T> implements Iterable<T> {
const Link();
Link<T> prepend(T element) {
- // TODO(ahe): Use new Link<T>, but this cost 8% performance on VM.
return new LinkEntry<T>(element, this);
}

Powered by Google App Engine
This is Rietveld 408576698