Index: lib/compiler/implementation/scanner/keyword.dart |
diff --git a/lib/compiler/implementation/scanner/keyword.dart b/lib/compiler/implementation/scanner/keyword.dart |
index 768dedfa0a79c92d1da5695df606c3029f388758..dd16ba7ae1c73c3c142ed2e3a236e71d66ce1237 100644 |
--- a/lib/compiler/implementation/scanner/keyword.dart |
+++ b/lib/compiler/implementation/scanner/keyword.dart |
@@ -94,7 +94,7 @@ class Keyword implements SourceString { |
return result; |
} |
- int hashCode() => syntax.hashCode(); |
+ int get hashCode => syntax.hashCode; |
bool operator ==(other) { |
return other is SourceString && toString() == other.slowToString(); |