|
|
@ -1,5 +1,8 @@ |
|
|
|
import 'dart:collection'; |
|
|
|
import 'dart:collection'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import 'package:collection/collection.dart'; |
|
|
|
|
|
|
|
import 'package:quiver_hashcode/hashcode.dart'; |
|
|
|
|
|
|
|
|
|
|
|
class Embeddable { |
|
|
|
class Embeddable { |
|
|
|
static const TYPE_KEY = '_type'; |
|
|
|
static const TYPE_KEY = '_type'; |
|
|
|
static const INLINE_KEY = '_inline'; |
|
|
|
static const INLINE_KEY = '_inline'; |
|
|
@ -36,16 +39,30 @@ class Embeddable { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
|
bool operator ==(Object other) => |
|
|
|
bool operator ==(dynamic other) { |
|
|
|
identical(this, other) || |
|
|
|
if (identical(this, other)) { |
|
|
|
other is Embeddable && |
|
|
|
return true; |
|
|
|
runtimeType == other.runtimeType && |
|
|
|
} |
|
|
|
type == other.type && |
|
|
|
if (other is! Embeddable) { |
|
|
|
inline == other.inline && |
|
|
|
return false; |
|
|
|
_data == other._data; |
|
|
|
} |
|
|
|
|
|
|
|
final typedOther = other; |
|
|
|
|
|
|
|
return typedOther.type == type && |
|
|
|
|
|
|
|
typedOther.inline == inline && |
|
|
|
|
|
|
|
DeepCollectionEquality().equals(typedOther._data, _data); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
|
int get hashCode => type.hashCode ^ inline.hashCode ^ _data.hashCode; |
|
|
|
int get hashCode { |
|
|
|
|
|
|
|
if (_data.isEmpty) { |
|
|
|
|
|
|
|
return hash2(type, inline); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
final dataHash = hashObjects( |
|
|
|
|
|
|
|
_data.entries.map((e) => hash2(e.key, e.value)), |
|
|
|
|
|
|
|
); |
|
|
|
|
|
|
|
return hash3(type, inline, dataHash); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
class Span extends Embeddable { |
|
|
|
class Span extends Embeddable { |
|
|
|