Added WeakSet constructor

This commit is contained in:
Dimitrii Nemkov
2018-06-27 13:15:47 +05:00
parent c16b9a903c
commit a0dda505d9
3 changed files with 41 additions and 0 deletions

View File

@ -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 {