Compare commits

...

3 commits

Author SHA1 Message Date
872c8e356d Merge remote-tracking branch 'origin/main' 2025-12-15 14:58:10 +02:00
094894b7d9 Remove weird blanks 2025-12-15 14:40:20 +02:00
571e4a99b6 Base files needed 2025-12-15 14:40:09 +02:00
5 changed files with 0 additions and 4 deletions

0
src/c_ir.rs Normal file
View file

View file

View file

View file

View file

@ -17,10 +17,6 @@ impl LambdaLowerer {
}
}
fn collect_free_vars(&self, expr: &Expr, lambda_params: &[String]) -> std::collections::HashSet<String> {
let mut free_vars = std::collections::HashSet::new();
let mut local_scope = std::collections::HashSet::new();