Mark js_sys::Promise as #[must_use] (#1927)

* Mark js_sys::Promise as #[must_use]

* Fix js_sys::Promise #[must_use] warnings
This commit is contained in:
Darin Morrison
2020-01-06 07:47:16 -08:00
committed by Alex Crichton
parent 7ed152276f
commit 624ff42eae
3 changed files with 3 additions and 2 deletions

View File

@ -4567,6 +4567,7 @@ extern "C" {
/// an asynchronous operation, and its resulting value.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)
#[must_use]
#[wasm_bindgen(extends = Object)]
#[derive(Clone, Debug)]
pub type Promise;