lang: Misc changes from an old feature branch

This commit is contained in:
James Shubin
2022-08-04 14:49:24 -04:00
parent 12ae44d563
commit ac39606386
5 changed files with 60 additions and 14 deletions

View File

@@ -888,7 +888,10 @@ Loop:
logf("%s: unsolved equality: %+v", Name, x)
}
for x := range unsolved {
logf("%s: unsolved expected: %+v", Name, x)
logf("%s: unsolved expected: (%p) %+v", Name, x, x)
}
for expr, typ := range solved {
logf("%s: solved: (%p) => %+v", Name, expr, typ)
}
return nil, ErrAmbiguous
}