mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-03 02:41:06 +00:00
Add in (unsafe and incorrect) impls of Send/Sync that are now required.
This commit is contained in:
parent
7fe3dfd4f5
commit
2541507789
crates
src/convert
@ -130,8 +130,7 @@ impl<'a, 'b> Builder<'a, 'b> {
|
|||||||
// returning data through.
|
// returning data through.
|
||||||
if binding.return_via_outptr.is_some() {
|
if binding.return_via_outptr.is_some() {
|
||||||
drop(webidl_params.next());
|
drop(webidl_params.next());
|
||||||
self.args_prelude
|
self.args_prelude.push_str("const retptr = 8;\n");
|
||||||
.push_str("const retptr = 8;\n");
|
|
||||||
arg_names.push("retptr".to_string());
|
arg_names.push("retptr".to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,8 +26,8 @@ use wasm_bindgen::prelude::*;
|
|||||||
pub struct JsFuture {
|
pub struct JsFuture {
|
||||||
resolved: oneshot::Receiver<JsValue>,
|
resolved: oneshot::Receiver<JsValue>,
|
||||||
rejected: oneshot::Receiver<JsValue>,
|
rejected: oneshot::Receiver<JsValue>,
|
||||||
_cb_resolve: Closure<FnMut(JsValue)>,
|
_cb_resolve: Closure<dyn FnMut(JsValue)>,
|
||||||
_cb_reject: Closure<FnMut(JsValue)>,
|
_cb_reject: Closure<dyn FnMut(JsValue)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl fmt::Debug for JsFuture {
|
impl fmt::Debug for JsFuture {
|
||||||
@ -143,6 +143,10 @@ where
|
|||||||
is_queued: Cell<bool>,
|
is_queued: Cell<bool>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO This is only safe because JS is currently single-threaded
|
||||||
|
unsafe impl Send for Task {}
|
||||||
|
unsafe impl Sync for Task {}
|
||||||
|
|
||||||
impl Task {
|
impl Task {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn new<F>(future: F) -> Arc<Self>
|
fn new<F>(future: F) -> Arc<Self>
|
||||||
|
@ -1079,7 +1079,6 @@ extern "C" {
|
|||||||
#[wasm_bindgen(method, js_name = bind)]
|
#[wasm_bindgen(method, js_name = bind)]
|
||||||
pub fn bind(this: &Function, context: &JsValue) -> Function;
|
pub fn bind(this: &Function, context: &JsValue) -> Function;
|
||||||
|
|
||||||
|
|
||||||
/// The bind() method creates a new function that, when called, has its this keyword set to the provided value,
|
/// The bind() method creates a new function that, when called, has its this keyword set to the provided value,
|
||||||
/// with a given sequence of arguments preceding any provided when the new function is called.
|
/// with a given sequence of arguments preceding any provided when the new function is called.
|
||||||
///
|
///
|
||||||
@ -1092,23 +1091,14 @@ extern "C" {
|
|||||||
///
|
///
|
||||||
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind)
|
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind)
|
||||||
#[wasm_bindgen(method, js_name = bind)]
|
#[wasm_bindgen(method, js_name = bind)]
|
||||||
pub fn bind1(
|
pub fn bind1(this: &Function, context: &JsValue, arg1: &JsValue) -> Function;
|
||||||
this: &Function,
|
|
||||||
context: &JsValue,
|
|
||||||
arg1: &JsValue,
|
|
||||||
) -> Function;
|
|
||||||
|
|
||||||
/// The bind() method creates a new function that, when called, has its this keyword set to the provided value,
|
/// The bind() method creates a new function that, when called, has its this keyword set to the provided value,
|
||||||
/// with a given sequence of arguments preceding any provided when the new function is called.
|
/// with a given sequence of arguments preceding any provided when the new function is called.
|
||||||
///
|
///
|
||||||
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind)
|
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind)
|
||||||
#[wasm_bindgen(method, js_name = bind)]
|
#[wasm_bindgen(method, js_name = bind)]
|
||||||
pub fn bind2(
|
pub fn bind2(this: &Function, context: &JsValue, arg1: &JsValue, arg2: &JsValue) -> Function;
|
||||||
this: &Function,
|
|
||||||
context: &JsValue,
|
|
||||||
arg1: &JsValue,
|
|
||||||
arg2: &JsValue,
|
|
||||||
) -> Function;
|
|
||||||
|
|
||||||
/// The bind() method creates a new function that, when called, has its this keyword set to the provided value,
|
/// The bind() method creates a new function that, when called, has its this keyword set to the provided value,
|
||||||
/// with a given sequence of arguments preceding any provided when the new function is called.
|
/// with a given sequence of arguments preceding any provided when the new function is called.
|
||||||
|
@ -90,7 +90,12 @@ fn bind2() {
|
|||||||
#[wasm_bindgen_test]
|
#[wasm_bindgen_test]
|
||||||
fn bind3() {
|
fn bind3() {
|
||||||
let a_list = list();
|
let a_list = list();
|
||||||
let prepended_list = a_list.bind3(&JsValue::NULL, &JsValue::from(2), &JsValue::from(3), &JsValue::from(4));
|
let prepended_list = a_list.bind3(
|
||||||
|
&JsValue::NULL,
|
||||||
|
&JsValue::from(2),
|
||||||
|
&JsValue::from(3),
|
||||||
|
&JsValue::from(4),
|
||||||
|
);
|
||||||
|
|
||||||
let arr = Array::from(&call_function(&prepended_list));
|
let arr = Array::from(&call_function(&prepended_list));
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@ use std::prelude::v1::*;
|
|||||||
use core::slice;
|
use core::slice;
|
||||||
use core::str;
|
use core::str;
|
||||||
|
|
||||||
use crate::convert::{FromWasmAbi, IntoWasmAbi, RefFromWasmAbi, RefMutFromWasmAbi, WasmAbi};
|
|
||||||
use crate::convert::OptionIntoWasmAbi;
|
use crate::convert::OptionIntoWasmAbi;
|
||||||
|
use crate::convert::{FromWasmAbi, IntoWasmAbi, RefFromWasmAbi, RefMutFromWasmAbi, WasmAbi};
|
||||||
|
|
||||||
if_std! {
|
if_std! {
|
||||||
use core::mem;
|
use core::mem;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user