(&self, scope: Scope<'_>)
| 631 | } |
| 632 | |
| 633 | async fn async_exec(&self, scope: Scope<'_>) -> CallResult<()> { |
| 634 | let value = scope.get_integer(0) + 1; |
| 635 | yield_now().await; |
| 636 | scope.return_integer(value) |
| 637 | } |
| 638 | } |
| 639 | |
| 640 | struct AsyncIoErrorCommand { |
no test coverage detected