| Index: pkg/glob/lib/src/ast.dart
|
| diff --git a/pkg/glob/lib/src/ast.dart b/pkg/glob/lib/src/ast.dart
|
| index dbb76e664c746009168c74fc78ebe50d75329aef..191347734238d536fa50ae04940b5447e7029f75 100644
|
| --- a/pkg/glob/lib/src/ast.dart
|
| +++ b/pkg/glob/lib/src/ast.dart
|
| @@ -334,7 +334,7 @@ class OptionsNode extends AstNode {
|
| String _toRegExp() =>
|
| '(?:${options.map((option) => option._toRegExp()).join("|")})';
|
|
|
| - bool operator==(Object other) => other is OptionsNode &&
|
| + bool operator==(Object other) => other is OptionsNode &&
|
| const UnorderedIterableEquality().equals(options, other.options);
|
|
|
| int get hashCode => const UnorderedIterableEquality().hash(options);
|
|
|