diff options
author | andy finch <andyfinch7@gmail.com> | 2019-06-13 23:43:54 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-06-13 20:43:54 -0700 |
commit | dc60fe9f300043f191286ef804a365e16e455f87 (patch) | |
tree | c6b74e9faa6f26745b8770a18d0ae46ee34f3774 /core/libdeno.rs | |
parent | fdd2eb538327ee3f50fe2869320411191830c985 (diff) |
Refactor dispatch handling (#2452)
Promise id is now created in core and passed back to JS.
Diffstat (limited to 'core/libdeno.rs')
-rw-r--r-- | core/libdeno.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/libdeno.rs b/core/libdeno.rs index 84f21e89e..a17a8e521 100644 --- a/core/libdeno.rs +++ b/core/libdeno.rs @@ -267,6 +267,7 @@ extern "C" { i: *const isolate, user_data: *const c_void, buf: deno_buf, + promise_id: *const c_int, ); pub fn deno_pinned_buf_delete(buf: &mut deno_pinned_buf); pub fn deno_execute( |