Sign in
dart
/
co19
/
refs/heads/nnbd
/
.
/
Utils
/
lang_feature_check.dart
blob: 023e3b87e356f5b0f80f6c4ee60e516bbd1f9c9d [
file
] [
log
] [
blame
]
part of
Expect
;
typedef
F
<
X
>
=
void
Function
<
Y
extends
X
>();
typedef
expected_target
=
Function
<
X
>();
// Functions for correct type comparison in language feature tests
F
<
X
>
toF
<
X
>(
X x
)
=>
null
;
Type typeOf
<
X
>()
=>
X
;