1
0
mirror of https://github.com/fluencelabs/wasm-bindgen synced 2025-04-04 03:11:08 +00:00

Favor if let instead of is_some + unwrap

This commit is contained in:
Alex Crichton 2018-04-23 11:25:30 -07:00
parent 8ae6fe19a3
commit 2b9c48d5f9

@ -29,7 +29,7 @@ impl Config {
self.base64 = base64; self.base64 = base64;
self self
} }
pub fn fetch(&mut self, path: Option<String>) -> &mut Self { pub fn fetch(&mut self, path: Option<String>) -> &mut Self {
self.fetch_path = path; self.fetch_path = path;
self self
@ -195,7 +195,7 @@ impl Output {
.then(obj => {{ .then(obj => {{
wasm = obj.instance; wasm = obj.instance;
{memory} {memory}
}})", }})",
imports = imports, imports = imports,
memory = if export_mem { "memory = wasm.exports.memory;" } else { "" }, memory = if export_mem { "memory = wasm.exports.memory;" } else { "" },
); );
@ -213,12 +213,12 @@ impl Output {
}}", base64 = base64::encode(&wasm)), }}", base64 = base64::encode(&wasm)),
inst inst
) )
} else if self.fetch_path.is_some() { } else if let Some(ref path) = self.fetch_path {
( (
String::new(), String::new(),
format!("fetch('{path}') format!("fetch('{path}')
.then(res => res.arrayBuffer()) .then(res => res.arrayBuffer())
.then(bytes => {inst})", path = self.fetch_path.unwrap(), inst = inst) .then(bytes => {inst})", path = path, inst = inst)
) )
} else { } else {
panic!("the option --base64 or --fetch is required"); panic!("the option --base64 or --fetch is required");