Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
48
third-party/vendor/wasm-bindgen/tests/wasm/char.rs
vendored
Normal file
48
third-party/vendor/wasm-bindgen/tests/wasm/char.rs
vendored
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
use wasm_bindgen::prelude::*;
|
||||
use wasm_bindgen_test::*;
|
||||
|
||||
#[wasm_bindgen(module = "tests/wasm/char.js")]
|
||||
extern "C" {
|
||||
fn js_identity(c: char) -> char;
|
||||
fn js_works();
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn rust_identity(c: char) -> char {
|
||||
c
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn rust_option_identity(c: Option<char>) -> Option<char> {
|
||||
c
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn rust_js_identity(c: char) -> char {
|
||||
js_identity(c)
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn letter() -> char {
|
||||
'a'
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn face() -> char {
|
||||
'😀'
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn rust_letter(a: char) {
|
||||
assert_eq!(a, 'a');
|
||||
}
|
||||
|
||||
#[wasm_bindgen]
|
||||
pub fn rust_face(p: char) {
|
||||
assert_eq!(p, '😀');
|
||||
}
|
||||
|
||||
#[wasm_bindgen_test]
|
||||
fn works() {
|
||||
js_works();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue