summaryrefslogtreecommitdiffstats
path: root/vendor/wasm-bindgen/tests/wasm/rethrow.rs
blob: d2a0ffafd33d7de4ab9560a8511373872a945e13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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)
}