| Index: dart/frog/leg/scanner/keyword.dart
|
| diff --git a/dart/frog/leg/scanner/keyword.dart b/dart/frog/leg/scanner/keyword.dart
|
| index 0fe158306eefab5ff7250e5bb7d2a62af7a84fd2..afc6c8e9e0f2a7aa54b16123b828913e89457e9f 100644
|
| --- a/dart/frog/leg/scanner/keyword.dart
|
| +++ b/dart/frog/leg/scanner/keyword.dart
|
| @@ -126,7 +126,7 @@ class Keyword implements SourceString {
|
| int hashCode() => syntax.hashCode();
|
|
|
| bool operator ==(other) {
|
| - return other is SourceString && toString() == other.toString();
|
| + return other is SourceString && toString() == other.slowToString();
|
| }
|
|
|
| Iterator<int> iterator() => new StringCodeIterator(syntax);
|
| @@ -136,6 +136,7 @@ class Keyword implements SourceString {
|
| }
|
|
|
| String toString() => syntax;
|
| + String slowToString() => syntax;
|
| String get stringValue() => syntax;
|
|
|
| bool isEmtpy() => false;
|
|
|