mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-03-31 01:11:06 +00:00
changed String to JsString in Atomics::wait
This commit is contained in:
parent
de2c2cf26c
commit
58245b0587
@ -624,7 +624,7 @@ pub mod Atomics {
|
|||||||
///
|
///
|
||||||
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait)
|
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait)
|
||||||
#[wasm_bindgen(static_method_of = Atomics, catch)]
|
#[wasm_bindgen(static_method_of = Atomics, catch)]
|
||||||
pub fn wait(typed_array: &JsValue, index: u32, value: i32) -> Result<String, JsValue>;
|
pub fn wait(typed_array: &JsValue, index: u32, value: i32) -> Result<JsString, JsValue>;
|
||||||
|
|
||||||
/// Like `wait()`, but with timeout
|
/// Like `wait()`, but with timeout
|
||||||
///
|
///
|
||||||
@ -635,7 +635,7 @@ pub mod Atomics {
|
|||||||
index: u32,
|
index: u32,
|
||||||
value: i32,
|
value: i32,
|
||||||
timeout: f64,
|
timeout: f64,
|
||||||
) -> Result<String, JsValue>;
|
) -> Result<JsString, JsValue>;
|
||||||
|
|
||||||
/// The static `Atomics.xor()` method computes a bitwise XOR
|
/// The static `Atomics.xor()` method computes a bitwise XOR
|
||||||
/// with a given value at a given position in the array,
|
/// with a given value at a given position in the array,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user