From a0dda505d954a29c07b3f596a2024f5d0819aebb Mon Sep 17 00:00:00 2001 From: Dimitrii Nemkov Date: Wed, 27 Jun 2018 13:15:47 +0500 Subject: [PATCH] Added WeakSet constructor --- src/js.rs | 11 +++++++++++ tests/all/js_globals/WeakSet.rs | 29 +++++++++++++++++++++++++++++ tests/all/js_globals/mod.rs | 1 + 3 files changed, 41 insertions(+) create mode 100644 tests/all/js_globals/WeakSet.rs diff --git a/src/js.rs b/src/js.rs index 6ece49ac3..934000f43 100644 --- a/src/js.rs +++ b/src/js.rs @@ -619,6 +619,17 @@ extern { pub fn delete(this: &WeakMap, key: Object) -> bool; } +#[wasm_bindgen] +extern { + pub type WeakSet; + + /// The WeakSet object lets you store weakly held objects in a collection. + /// + /// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet + #[wasm_bindgen(constructor)] + pub fn new() -> WeakSet; +} + // JsString #[wasm_bindgen] extern { diff --git a/tests/all/js_globals/WeakSet.rs b/tests/all/js_globals/WeakSet.rs new file mode 100644 index 000000000..46f829fd5 --- /dev/null +++ b/tests/all/js_globals/WeakSet.rs @@ -0,0 +1,29 @@ +#![allow(non_snake_case)] + +use project; + +#[test] +fn new() { + project() + .file("src/lib.rs", r#" + #![feature(proc_macro, wasm_custom_section)] + + extern crate wasm_bindgen; + use wasm_bindgen::prelude::*; + use wasm_bindgen::js; + + #[wasm_bindgen] + pub fn new_weak_set() -> js::WeakSet { + js::WeakSet::new() + } + "#) + .file("test.ts", r#" + import * as assert from "assert"; + import * as wasm from "./out"; + + export function test() { + assert.equal(typeof wasm.new_weak_set(), "object"); + } + "#) + .test() +} \ No newline at end of file diff --git a/tests/all/js_globals/mod.rs b/tests/all/js_globals/mod.rs index 453c407ce..5f1ea8fee 100644 --- a/tests/all/js_globals/mod.rs +++ b/tests/all/js_globals/mod.rs @@ -9,6 +9,7 @@ mod Function; mod JsString; mod Math; mod WeakMap; +mod WeakSet; mod Number; mod Object; mod TypedArray;