Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove all getWaitHandle
Summary: - This removes all references to getWaitHandle in hphp/hack - We are removing it from HHVM so Hack should not use it Reviewed By: jano Differential Revision: D6912922 fbshipit-source-id: e68d2a76ddba047690ac5d6f61019693930f4531
- Loading branch information
Showing
with
27 additions
and 38 deletions.
- +1 −1 hphp/hack/test/autocomplete/builtins.php
- +8 −1 hphp/hack/test/autocomplete/builtins.php.exp
- +3 −10 hphp/hack/test/emitter/async.php
- +3 −10 hphp/hack/test/emitter/lambda.php
- +1 −1 hphp/hack/test/ffp_autocomplete/existing_capabilities/builtins.php
- +8 −1 hphp/hack/test/ffp_autocomplete/existing_capabilities/builtins.php.exp
- +1 −12 hphp/hack/test/typecheck/this_tparam.php
- +2 −2 hphp/hack/tools/remove_soft_types/test.php
@@ -1,5 +1,5 @@ | ||
<?hh | ||
|
||
function f(Awaitable<int> $a): void { | ||
function f(Generator<int, int, int> $a): void { | ||
$a->AUTO332 | ||
} |
@@ -1 +1,8 @@ | ||
getWaitHandle abs (function(): WaitHandle<T>) | ||
valid (function(): bool) | ||
send (function(?Ts $v): void) | ||
rewind (function(): void) | ||
raise (function(Exception $e): void) | ||
next (function(): void) | ||
key (function(): Tk) | ||
getOrigFuncName (function(): string) | ||
current (function(): Tv) |
@@ -1,5 +1,5 @@ | ||
<?hh | ||
// AUTOCOMPLETE 4 7 | ||
function f(Awaitable<int> $a): void { | ||
function f(Generator<int, int, int> $a): void { | ||
$a-> | ||
} |
@@ -1 +1,8 @@ | ||
getWaitHandle | ||
current | ||
getOrigFuncName | ||
key | ||
next | ||
raise | ||
rewind | ||
send | ||
valid |