Fix missing module qualifier bug.

This commit is contained in:
cfreksen 2017-10-29 22:31:52 +01:00
parent 6398047e64
commit 14d9215ac4
No known key found for this signature in database
GPG Key ID: EAC13EE101008978
1 changed files with 1 additions and 1 deletions

View File

@ -360,7 +360,7 @@ def ty2base_ty(ty, tdecs, seen=[]):
return ty2base_ty(tdecs[other_name].body, tdecs, [other_name] + seen)
else:
err('Could not find type {} in gloval type environment:\n{}'
.format(ty2s(ty), tdecs.keys()))
.format(ll.ty2s(ty), tdecs.keys()))
return ll.SimpleType.Void
else:
# TODO