Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-03-05 | chore(core): remove argc field from OpDecl (#18024) | Divy Srivastava | |
https://github.com/denoland/deno/pull/18023#discussion_r1125611859 | |||
2022-11-27 | chore(ops): increase codegen tests coverage (#16834) | Divy Srivastava | |
Upgrade fast_call tests to full (both tier) codegen tests. | |||
2022-11-11 | feat(ops): implement fast lazy async ops (#16579) | Divy Srivastava | |
Implements fast scheduling of deferred op futures. ```rs #[op(fast)] async fn op_read( state: Rc<RefCell<OpState>>, rid: ResourceId, buf: &mut [u8], ) -> Result<u32, Error> { // ... } ``` The future is scheduled via a fast API call and polled by the event loop after being woken up by its waker. |