| Index: lib/compiler/implementation/scanner/keyword.dart
|
| diff --git a/lib/compiler/implementation/scanner/keyword.dart b/lib/compiler/implementation/scanner/keyword.dart
|
| index 761c130aee22f805b6a167395df0c27efaef4400..c07f9bc466f3bf4b74d163c2d9d7cc1a859f5a2f 100644
|
| --- a/lib/compiler/implementation/scanner/keyword.dart
|
| +++ b/lib/compiler/implementation/scanner/keyword.dart
|
| @@ -124,6 +124,7 @@ class Keyword implements SourceString {
|
| }
|
|
|
| int hashCode() => syntax.hashCode();
|
| + int compareTo(SourceString other) => sourceStringCompare(this, other);
|
|
|
| bool operator ==(other) {
|
| return other is SourceString && toString() == other.slowToString();
|
|
|