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

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

Issue 10911006: Collect the types used in is-checks in the resolver phase. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix last upload. Created 8 years, 3 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/util/link.dart
diff --git a/lib/compiler/implementation/util/link.dart b/lib/compiler/implementation/util/link.dart
index cf97bd933d3daa543171e5b35dfa9013cb8050a5..dc9721f0ab08b1a271972cf0100e1ef4c372dfec 100644
--- a/lib/compiler/implementation/util/link.dart
+++ b/lib/compiler/implementation/util/link.dart
@@ -18,6 +18,8 @@ interface Link<T> extends Iterable<T> default LinkFactory<T> {
void printOn(StringBuffer buffer, [separatedBy]);
void forEach(void f(T element));
+
+ bool equals(other);
}
interface EmptyLink<T> extends Link<T> default LinkTail<T> {

Powered by Google App Engine
This is Rietveld 408576698