| Index: lib/compiler/implementation/scanner/token.dart
|
| diff --git a/lib/compiler/implementation/scanner/token.dart b/lib/compiler/implementation/scanner/token.dart
|
| index 99055fed481cbc723d4e56360f793c919bc0e659..0e10e0ff37654e23488a67f7cd3045f497d340e3 100644
|
| --- a/lib/compiler/implementation/scanner/token.dart
|
| +++ b/lib/compiler/implementation/scanner/token.dart
|
| @@ -200,7 +200,7 @@ class StringWrapper implements SourceString {
|
|
|
| const StringWrapper(String this.stringValue);
|
|
|
| - int hashCode() => stringValue.hashCode();
|
| + int get hashCode => stringValue.hashCode;
|
|
|
| bool operator ==(other) {
|
| return other is SourceString && toString() == other.slowToString();
|
|
|