Run cargo fmt over all code

This commit is contained in:
Alex Crichton 2019-08-12 11:28:37 -07:00
parent 3697fb7205
commit 1d0c333a2b
9 changed files with 21 additions and 25 deletions

View File

@ -148,7 +148,10 @@ impl<'a, 'b> Outgoing<'a, 'b> {
self.cx.expose_get_cached_string_from_wasm()?; self.cx.expose_get_cached_string_from_wasm()?;
self.js.prelude(&format!("const v{} = getCachedStringFromWasm({}, {});", tmp, ptr, len)); self.js.prelude(&format!(
"const v{} = getCachedStringFromWasm({}, {});",
tmp, ptr, len
));
if *owned { if *owned {
self.prelude_free_cached_string(&ptr, &len)?; self.prelude_free_cached_string(&ptr, &len)?;

View File

@ -287,7 +287,8 @@ impl Bindgen {
); );
} }
self.threads.run(&mut module) self.threads
.run(&mut module)
.with_context(|_| "failed to prepare module for threading")?; .with_context(|_| "failed to prepare module for threading")?;
// If requested, turn all mangled symbols into prettier unmangled // If requested, turn all mangled symbols into prettier unmangled

View File

@ -627,14 +627,10 @@ impl<'a> Context<'a> {
// Make sure to export the `anyref` table for the JS bindings since it // Make sure to export the `anyref` table for the JS bindings since it
// will need to be initialized. If it doesn't exist though then the // will need to be initialized. If it doesn't exist though then the
// module must not use it, so we skip it. // module must not use it, so we skip it.
let table = self let table = self.module.tables.iter().find(|t| match t.kind {
.module walrus::TableKind::Anyref(_) => true,
.tables _ => false,
.iter() });
.find(|t| match t.kind {
walrus::TableKind::Anyref(_) => true,
_ => false,
});
let table = match table { let table = match table {
Some(t) => t.id(), Some(t) => t.id(),
None => return Ok(()), None => return Ok(()),
@ -642,11 +638,9 @@ impl<'a> Context<'a> {
self.module.exports.add("__wbg_anyref_table", table); self.module.exports.add("__wbg_anyref_table", table);
let ty = self.module.types.add(&[], &[]); let ty = self.module.types.add(&[], &[]);
let (import, import_id) = self.module.add_import_func( let (import, import_id) =
PLACEHOLDER_MODULE, self.module
"__wbindgen_init_anyref_table", .add_import_func(PLACEHOLDER_MODULE, "__wbindgen_init_anyref_table", ty);
ty,
);
self.module.start = Some(match self.module.start { self.module.start = Some(match self.module.start {
Some(prev_start) => { Some(prev_start) => {

View File

@ -1,10 +1,10 @@
use std::cell::RefCell;
use futures::future; use futures::future;
use std::fmt;
use std::rc::Rc;
use futures::prelude::*; use futures::prelude::*;
use futures::sync::oneshot; use futures::sync::oneshot;
use js_sys::Promise; use js_sys::Promise;
use std::cell::RefCell;
use std::fmt;
use std::rc::Rc;
use wasm_bindgen::prelude::*; use wasm_bindgen::prelude::*;
/// A Rust `Future` backed by a JavaScript `Promise`. /// A Rust `Future` backed by a JavaScript `Promise`.

View File

@ -90,7 +90,8 @@ impl Scene {
}); });
drop(tx.send(rgb_data)); drop(tx.send(rgb_data));
})?; })?;
let done = rx.map(move |_data| image_data(base, len, width, height).into()) let done = rx
.map(move |_data| image_data(base, len, width, height).into())
.map_err(|_| JsValue::undefined()); .map_err(|_| JsValue::undefined());
Ok(RenderingScene { Ok(RenderingScene {

View File

@ -4,9 +4,9 @@ use std::prelude::v1::*;
use core::slice; use core::slice;
use core::str; use core::str;
use cfg_if::cfg_if;
use crate::convert::OptionIntoWasmAbi; use crate::convert::OptionIntoWasmAbi;
use crate::convert::{FromWasmAbi, IntoWasmAbi, RefFromWasmAbi, RefMutFromWasmAbi, WasmAbi}; use crate::convert::{FromWasmAbi, IntoWasmAbi, RefFromWasmAbi, RefMutFromWasmAbi, WasmAbi};
use cfg_if::cfg_if;
if_std! { if_std! {
use core::mem; use core::mem;
@ -124,7 +124,6 @@ vectors! {
u8 i8 u16 i16 u32 i32 u64 i64 usize isize f32 f64 u8 i8 u16 i16 u32 i32 u64 i64 usize isize f32 f64
} }
cfg_if! { cfg_if! {
if #[cfg(feature = "enable-interning")] { if #[cfg(feature = "enable-interning")] {
#[inline] #[inline]
@ -141,7 +140,6 @@ cfg_if! {
} }
} }
if_std! { if_std! {
impl<T> IntoWasmAbi for Vec<T> where Box<[T]>: IntoWasmAbi<Abi = WasmSlice> { impl<T> IntoWasmAbi for Vec<T> where Box<[T]>: IntoWasmAbi<Abi = WasmSlice> {
type Abi = <Box<[T]> as IntoWasmAbi>::Abi; type Abi = <Box<[T]> as IntoWasmAbi>::Abi;

View File

@ -3,8 +3,8 @@
#![doc(hidden)] #![doc(hidden)]
use cfg_if::cfg_if;
use crate::{Clamped, JsValue}; use crate::{Clamped, JsValue};
use cfg_if::cfg_if;
macro_rules! tys { macro_rules! tys {
($($a:ident)*) => (tys! { @ ($($a)*) 0 }); ($($a:ident)*) => (tys! { @ ($($a)*) 0 });

View File

@ -57,7 +57,6 @@ pub mod prelude {
} }
} }
pub mod convert; pub mod convert;
pub mod describe; pub mod describe;