mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-04-02 18:31:05 +00:00
Update to recent WasmBoundary abi changes
This commit is contained in:
parent
188d368583
commit
03433a0ef6
@ -156,7 +156,10 @@ impl ToTokens for ast::Struct {
|
|||||||
|
|
||||||
impl ::std::convert::From<#name> for ::wasm_bindgen::JsValue {
|
impl ::std::convert::From<#name> for ::wasm_bindgen::JsValue {
|
||||||
fn from(value: #name) -> Self {
|
fn from(value: #name) -> Self {
|
||||||
let ptr = ::wasm_bindgen::convert::WasmBoundary::into_js(value);
|
let ptr = ::wasm_bindgen::convert::WasmBoundary::into_abi(
|
||||||
|
value,
|
||||||
|
unsafe { &mut ::wasm_bindgen::convert::GlobalStack::new() },
|
||||||
|
);
|
||||||
|
|
||||||
#[wasm_import_module = "__wbindgen_placeholder__"]
|
#[wasm_import_module = "__wbindgen_placeholder__"]
|
||||||
extern {
|
extern {
|
||||||
@ -164,7 +167,11 @@ impl ToTokens for ast::Struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
::wasm_bindgen::JsValue::__from_idx(#new_fn(ptr))
|
<::wasm_bindgen::JsValue as ::wasm_bindgen::convert::WasmBoundary>
|
||||||
|
::from_abi(
|
||||||
|
#new_fn(ptr),
|
||||||
|
unsafe { &mut ::wasm_bindgen::convert::GlobalStack::new() },
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -94,10 +94,10 @@ impl JsValue {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[doc(hidden)]
|
// #[doc(hidden)]
|
||||||
pub unsafe fn __from_idx(idx: u32) -> JsValue {
|
// pub unsafe fn __from_idx(idx: u32) -> JsValue {
|
||||||
JsValue { idx }
|
// JsValue { idx }
|
||||||
}
|
// }
|
||||||
//
|
//
|
||||||
// #[doc(hidden)]
|
// #[doc(hidden)]
|
||||||
// pub fn __get_idx(&self) -> u32 {
|
// pub fn __get_idx(&self) -> u32 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user