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

Configure Feed

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

explain code

+5
+5
compiler-core/src/javascript/decision.rs
··· 449 449 .expression_generator 450 450 .current_scope_vars 451 451 .extend(old_scope.clone()); 452 + 453 + // For binded variables inside body we need to check if 454 + // there is same-named variable in old scope. In this case 455 + // we need to register next available variable, so no 456 + // redeclaration occurs. 452 457 if let Decision::Run { body } = fallback { 453 458 for (variable, _) in body.bindings.iter() { 454 459 if let Some(_) = old_scope.get(variable) {