This repository was archived by the owner on Mar 3, 2020. It is now read-only.
This repository was archived by the owner on Mar 3, 2020. It is now read-only.
Check for sequential independent awaits, replace with \HH\Asio\va
#577
Open
Description
e.g:
$a = await foo();
$b = await bar();
should be:
list($a, $b) = await \HH\Asio\va(foo(), bar());
... but this is fine:
$a = await foo();
$b = await bar($a->getFoo());
Related: hhvm/hhast#8