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

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

Issue 10876008: Remove most superfluous getter arguments from dart2js. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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
« no previous file with comments | « dart/lib/compiler/implementation/universe.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/util/link_implementation.dart
diff --git a/dart/lib/compiler/implementation/util/link_implementation.dart b/dart/lib/compiler/implementation/util/link_implementation.dart
index fd855bb38dd3d16885d0b541a2a837861b51b1fc..a237a307a12f92ac39e9f09a45101096b4434d21 100644
--- a/dart/lib/compiler/implementation/util/link_implementation.dart
+++ b/dart/lib/compiler/implementation/util/link_implementation.dart
@@ -41,8 +41,8 @@ class LinkFactory<T> {
}
class LinkTail<T> implements EmptyLink<T> {
- T get head() => null;
- Link<T> get tail() => null;
+ T get head => null;
+ Link<T> get tail => null;
const LinkTail();
« no previous file with comments | « dart/lib/compiler/implementation/universe.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698