Sign in
dart
/
dart_style
/
1cf42fa68a80c05ad2418455fc6cdc75f8377abe
/
.
/
test
/
tall
/
regression
/
0100
/
0176.unit
blob: 4cd8c8dfeda6508124aa3ba7c1fad176ac558ca5 [
file
] [
log
] [
blame
]
>>>
Iterable
<
Task
>
generate
()
sync
*
{
int
i
=
0
;
while
(
i
++
<
100
)
{
yield
new
Task
(
i
,
rnd
.
nextInt
(
100
),
calc
);
}
}
<<<
Iterable
<
Task
>
generate
()
sync
*
{
int
i
=
0
;
while
(
i
++
<
100
)
{
yield
new
Task
(
i
,
rnd
.
nextInt
(
100
),
calc
);
}
}