| Index: pkg/analyzer/lib/src/generated/source_io.dart
|
| diff --git a/pkg/analyzer/lib/src/generated/source_io.dart b/pkg/analyzer/lib/src/generated/source_io.dart
|
| index 554985dbfbda2d594e786170c85774fe458ec918..fc96b6483fdbfa9160607abc1486f5cf1bd1d69d 100644
|
| --- a/pkg/analyzer/lib/src/generated/source_io.dart
|
| +++ b/pkg/analyzer/lib/src/generated/source_io.dart
|
| @@ -95,7 +95,7 @@ class FileBasedSource implements Source {
|
| FileBasedSource.con2(this.file, this.uriKind);
|
|
|
| @override
|
| - bool operator ==(Object object) => object != null && this.runtimeType == object.runtimeType && file == (object as FileBasedSource).file;
|
| + bool operator ==(Object object) => object != null && object is FileBasedSource && file == object.file;
|
|
|
| @override
|
| bool exists() => file.isFile();
|
|
|