Sha256: 59dcf192c9e85b0d98031c135d2aa2eda4902a2bc5b740a9ddf1e75dc9cdd23e
Contents?: true
Size: 437 Bytes
Versions: 30
Compression:
Stored size: 437 Bytes
Contents
use wasm_bindgen::prelude::*; use wasm_bindgen_test::*; #[wasm_bindgen(module = "tests/wasm/rethrow.js")] extern "C" { fn call_throw_one(); fn call_ok(); } #[wasm_bindgen_test] fn err_works() { call_throw_one(); } #[wasm_bindgen] pub fn throw_one() -> Result<u32, JsValue> { Err(1.into()) } #[wasm_bindgen_test] fn ok_works() { call_ok(); } #[wasm_bindgen] pub fn nothrow() -> Result<u32, JsValue> { Ok(1) }
Version data entries
30 entries across 30 versions & 1 rubygems