| Index: lib/src/location.dart
|
| diff --git a/lib/src/location.dart b/lib/src/location.dart
|
| index 27057424b1f3cf4ada9b14142654aabc24251c80..24259d55d10839a76899ec0de48966f3b408af21 100644
|
| --- a/lib/src/location.dart
|
| +++ b/lib/src/location.dart
|
| @@ -77,8 +77,8 @@ class SourceLocation implements Comparable<SourceLocation> {
|
| return offset - other.offset;
|
| }
|
|
|
| - bool operator ==(other) =>
|
| - other is SourceLocation && sourceUrl == other.sourceUrl &&
|
| + bool operator ==(other) => other is SourceLocation &&
|
| + sourceUrl == other.sourceUrl &&
|
| offset == other.offset;
|
|
|
| int get hashCode => sourceUrl.hashCode + offset;
|
|
|