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

Unified Diff: lib/compiler/implementation/scanner/token.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/scanner/token.dart
diff --git a/lib/compiler/implementation/scanner/token.dart b/lib/compiler/implementation/scanner/token.dart
index 3cd0d09a2dffd0f511e190d0e9397dfa4a2c4e7e..bf76787adf34adf257782d1863faf8eb5c4cf8ec 100644
--- a/lib/compiler/implementation/scanner/token.dart
+++ b/lib/compiler/implementation/scanner/token.dart
@@ -177,7 +177,7 @@ class StringToken extends Token {
String slowToString() => value.slowToString();
}
-interface SourceString extends Hashable, Iterable<int> default StringWrapper {
+interface SourceString extends Iterable<int> default StringWrapper {
const SourceString(String string);
void printOn(StringBuffer sb);

Powered by Google App Engine
This is Rietveld 408576698