Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
allsey87 committed Jun 16, 2023
1 parent 9809a15 commit 807633b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/js-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4504,7 +4504,11 @@ pub mod WebAssembly {
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Exception)
#[wasm_bindgen(constructor, js_namespace = WebAssembly, catch)]
pub fn new_with_options(tag: &Tag, payload: &Array, options: &Object) -> Result<Exception, JsValue>;
pub fn new_with_options(
tag: &Tag,
payload: &Array,
options: &Object
) -> Result<Exception, JsValue>;

/// The `is()` prototype method of the `WebAssembly.Exception` can be used to
/// test if the Exception matches a given tag.
Expand Down

0 comments on commit 807633b

Please sign in to comment.