Fork of daniellemaywood.uk/gleam — Wasm codegen work
2

Configure Feed

Select the types of activity you want to include in your feed.

make clippy happy

+1 -1
+1 -1
compiler-core/src/javascript/decision.rs
··· 456 456 // redeclaration occurs. 457 457 if let Decision::Run { body } = fallback { 458 458 for (variable, _) in body.bindings.iter() { 459 - if let Some(_) = old_scope.get(variable) { 459 + if old_scope.get(variable).is_some() { 460 460 let new_variable_name = self.variables.next_local_var(variable); 461 461 462 462 let _ = self