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

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

Issue 10905211: Clean up operator names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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: dart/lib/compiler/implementation/util/link.dart
diff --git a/dart/lib/compiler/implementation/util/link.dart b/dart/lib/compiler/implementation/util/link.dart
index 1029363bbdca4d9b1874b0dd95f2246d26cb75c9..f931a8ea3d5b841102245d0f9ba0685026b5a79d 100644
--- a/dart/lib/compiler/implementation/util/link.dart
+++ b/dart/lib/compiler/implementation/util/link.dart
@@ -28,7 +28,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