This commit is contained in:
Anton-4 2020-12-15 15:21:20 +01:00
parent e1a0bc1563
commit 6e3bd69e7c

View file

@ -1239,5 +1239,8 @@ fn gather_tags(
}
fn is_recursion_var(subs: &Subs, var: Variable) -> bool {
matches!(subs.get_without_compacting(var).content, Content::RecursionVar { .. })
matches!(
subs.get_without_compacting(var).content,
Content::RecursionVar { .. }
)
}