Skip to content
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
@fredemmott

Description

@fredemmott

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

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions