01:20 | <rkirsling> | ah, year is updated to 2024 because there was never a PR merged in the mean time? |
01:37 | <bakkot> | indeed |
02:49 | <rkirsling> | funny transcription error in notes:
|
23:00 | <shu> | how does the assert in step 2 here work: https://tc39.es/ecma262/#sec-%asyncfromsynciteratorprototype%.next |
23:00 | <shu> | am i missing something? can't you call it with an arbitrary receiver? |
23:02 | <bakkot> | asyncfromsynciterator is fictional right now |
23:02 | <bakkot> | it's only used in for await (let item of sync) , or yield* sync in an async generator |
23:03 | <bakkot> | neither of which expose the actual wrapping iterator |
23:06 | <shu> | ah okay |