Compare commits

..

No commits in common. "872c8e356db86c9a3ee374b55eec58953ee56a9d" and "fe622654e51bbc556dfc320fc0578117c05ffa8c" have entirely different histories.

5 changed files with 4 additions and 0 deletions

View file

View file

@ -17,6 +17,10 @@ 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();