File tree Expand file tree Collapse file tree 5 files changed +280
-235
lines changed Expand file tree Collapse file tree 5 files changed +280
-235
lines changed Original file line number Diff line number Diff line change @@ -294,13 +294,13 @@ canon ::= 0x00 0x00 f:<core:funcidx> opts:<opts> ft:<typeidx> => (canon lift
294
294
| 0x0c => (canon task.yield (core func)) 🔀
295
295
| 0x0d => (canon waitable.drop (core func)) 🔀
296
296
| 0x0e t:<typeidx> => (canon stream.new t (core func)) 🔀
297
- | 0x0f t:<typeidx> => (canon stream.read t (core func)) 🔀
298
- | 0x10 t:<typeidx> => (canon stream.write t (core func)) 🔀
297
+ | 0x0f t:<typeidx> opts:<opts> => (canon stream.read t opts (core func)) 🔀
298
+ | 0x10 t:<typeidx> opts:<opts> => (canon stream.write t opts (core func)) 🔀
299
299
| 0x11 async?:<async?> => (canon stream.cancel-read async? (core func)) 🔀
300
300
| 0x12 async?:<async?> => (canon stream.cancel-write async? (core func)) 🔀
301
301
| 0x13 t:<typeidx> => (canon future.new t (core func)) 🔀
302
- | 0x14 t:<typeidx> => (canon future.read t (core func)) 🔀
303
- | 0x15 t:<typeidx> => (canon future.write t (core func)) 🔀
302
+ | 0x14 t:<typeidx> opts:<opts> => (canon future.read t opts (core func)) 🔀
303
+ | 0x15 t:<typeidx> opts:<opts> => (canon future.write t opts (core func)) 🔀
304
304
| 0x16 async?:<async?> => (canon future.cancel-read async? (core func)) 🔀
305
305
| 0x17 async?:<async?> => (canon future.cancel-write async? (core func)) 🔀
306
306
async? ::= 0x00 =>
You can’t perform that action at this time.
0 commit comments