write Aliases implementation

This commit is contained in:
Folkert 2022-03-15 22:02:04 +01:00
parent a66d23f93d
commit 7d8409f6a6
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
7 changed files with 175 additions and 35 deletions

View file

@ -322,9 +322,9 @@ fn unify_alias(
if args.len() == other_args.len() {
let mut problems = Vec::new();
let it = args
.variables()
.all_variables()
.into_iter()
.zip(other_args.variables().into_iter());
.zip(other_args.all_variables().into_iter());
for (l, r) in it {
let l_var = subs[l];