diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-09-12 21:13:08 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-09-12 15:13:08 -0400 |
commit | c03cdcc939f86c9865dc7a700782bdf558fa83f5 (patch) | |
tree | 941e9c9221cdea1e6df0eeee63defaf8a851381a /core/libdeno.rs | |
parent | 69e01c2374539e02956e643d87cd9a6afa805db9 (diff) |
feat: add bindings to run microtasks from Isolate (#2793)
Diffstat (limited to 'core/libdeno.rs')
-rw-r--r-- | core/libdeno.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/libdeno.rs b/core/libdeno.rs index 071f6ddf5..c46880f1f 100644 --- a/core/libdeno.rs +++ b/core/libdeno.rs @@ -280,6 +280,8 @@ extern "C" { js_source: *const c_char, ); pub fn deno_terminate_execution(i: *const isolate); + #[allow(dead_code)] + pub fn deno_run_microtasks(i: *const isolate, user_data: *const c_void); // Modules |