blob: 8bfd33fbc861c3fb08fea242a1d416f15aa05b52 [file] [log] [blame]
// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
typedef Typedef = Object?;
membersMethod(o) {
return /*
checkingOrder={Object?,Object,Null},
fields={hashCode:int,noSuchMethod:dynamic Function(Invocation),runtimeType:Type,toString:String Function()},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(:var hashCode) /*space=Object?(hashCode: int)*/ => hashCode,
Typedef(
:var runtimeType
) /*
error=unreachable,
space=Object?(runtimeType: Type)
*/
=>
runtimeType,
Typedef(
:var toString
) /*
error=unreachable,
space=Object?(toString: String Function())
*/
=>
toString(),
Typedef(
:var noSuchMethod
) /*
error=unreachable,
space=Object?(noSuchMethod: dynamic Function(Invocation))
*/
=>
noSuchMethod,
_ /*
error=unreachable,
space=()
*/
=>
null,
};
}
exhaustiveHashCode(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
fields={hashCode:int},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(:int hashCode) /*space=Object?(hashCode: int)*/ => hashCode,
};
}
exhaustiveRuntimeType(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
fields={runtimeType:Type},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(:Type runtimeType) /*space=Object?(runtimeType: Type)*/ =>
runtimeType,
};
}
exhaustiveToString(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
fields={toString:String Function()},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(
:String Function() toString
) /*space=Object?(toString: String Function())*/ =>
toString,
};
}
exhaustiveNoSuchMethod(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
fields={noSuchMethod:dynamic Function(Invocation)},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(
:dynamic Function(Invocation) noSuchMethod
) /*space=Object?(noSuchMethod: dynamic Function(Invocation))*/ =>
noSuchMethod,
};
}
nonExhaustiveRestrictedValue(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
error=non-exhaustive:Object(hashCode: int())/Object();Null(hashCode: int())/null,
fields={hashCode:int},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(hashCode: 5) /*space=Object?(hashCode: 5)*/ => 5,
};
}
nonExhaustiveRestrictedType(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
error=non-exhaustive:Object(noSuchMethod: dynamic Function(Invocation) _)/Object();Null(noSuchMethod: dynamic Function(Invocation) _)/null,
fields={noSuchMethod:dynamic Function(Invocation)},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(
:int Function(Invocation) noSuchMethod
) /*space=Object?(noSuchMethod: int Function(Invocation))*/ =>
noSuchMethod,
};
}
unreachableMethod(Typedef o) {
return /*
checkingOrder={Object?,Object,Null},
fields={hashCode:int,noSuchMethod:dynamic Function(Invocation),runtimeType:Type,toString:String Function()},
subtypes={Object,Null},
type=Object?
*/
switch (o) {
Typedef(:var hashCode) /*space=Object?(hashCode: int)*/ => hashCode,
Typedef(
:var runtimeType
) /*
error=unreachable,
space=Object?(runtimeType: Type)
*/
=>
runtimeType,
Typedef(
:var toString
) /*
error=unreachable,
space=Object?(toString: String Function())
*/
=>
toString(),
Typedef(
:var noSuchMethod
) /*
error=unreachable,
space=Object?(noSuchMethod: dynamic Function(Invocation))
*/
=>
noSuchMethod,
};
}