| Index: lib/compiler/implementation/scanner/string_scanner.dart
|
| diff --git a/lib/compiler/implementation/scanner/string_scanner.dart b/lib/compiler/implementation/scanner/string_scanner.dart
|
| index 51851e2eeed24ba1b51f3271784647adbf00a641..73744d827bdfbd9092d0e387ceef78049881d2d4 100644
|
| --- a/lib/compiler/implementation/scanner/string_scanner.dart
|
| +++ b/lib/compiler/implementation/scanner/string_scanner.dart
|
| @@ -42,7 +42,7 @@ class SubstringWrapper implements SourceString {
|
| const SubstringWrapper(String this.internalString,
|
| int this.begin, int this.end);
|
|
|
| - int hashCode() => slowToString().hashCode();
|
| + int get hashCode => slowToString().hashCode;
|
|
|
| bool operator ==(other) {
|
| return other is SourceString && slowToString() == other.slowToString();
|
|
|