(zelf: &Py<Self>, vm: &VirtualMachine)
| 596 | impl SelfIter for AwaitPromise {} |
| 597 | impl IterNext for AwaitPromise { |
| 598 | fn next(zelf: &Py<Self>, vm: &VirtualMachine) -> PyResult<PyIterReturn> { |
| 599 | zelf.send(None, vm) |
| 600 | } |
| 601 | } |
| 602 | |
| 603 | fn new_js_error(vm: &VirtualMachine, err: JsValue) -> PyBaseExceptionRef { |