Skip to content

Commit

Permalink
Fix function name change
Browse files Browse the repository at this point in the history
Co-authored-by: T6 <[email protected]>
  • Loading branch information
edusporto and tjjfvi authored Jun 10, 2024
1 parent e016d7c commit 9ade570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -571,7 +571,7 @@ impl Book {
/// nodes in weird places. See HVM issue [#362](https://github.com/HigherOrderCO/HVM/issues/362)
/// for an example.
fn propagate_safety(&self, compiled_book: &mut hvm::Book, lookup: &BTreeMap<String, u32>) {
let rev_dependencies = self.direct_dependents();
let dependents = self.direct_dependents();
let mut stack: Vec<&str> = Vec::new();

for (name, _) in self.defs.iter() {
Expand Down

0 comments on commit 9ade570

Please sign in to comment.