blob: 05a5dbd7897732d625cd16975fab5e2dbd27b6b2 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: public_member_api_docs
import 'hash_codes.dart';
abstract class Union {
const Union();
int get $ordinal;
Object get $data;
@override
int get hashCode => deepHash([$ordinal, $data]);
@override
bool operator ==(dynamic other) {
if (identical(this, other)) {
return true;
}
if (runtimeType != other.runtimeType) {
return false;
}
final Union otherUnion = other;
if ($ordinal != otherUnion.$ordinal) {
return false;
}
return deepEquals($data, otherUnion.$data);
}
@override
String toString() {
return '$runtimeType(${$ordinal}: ${$data})';
}
}
typedef UnionFactory<T> = T Function(int index, Object data);