fix(typechecker): quantified types unifying

This commit is contained in:
Shunsuke Shibayama 2023-02-19 02:00:54 +09:00
parent 448fe4e64c
commit 855d47f02c
7 changed files with 77 additions and 40 deletions

View file

@ -14,7 +14,7 @@ def while__(cond_block, body):
def with__(obj, body):
obj.__enter__()
body(e)
body(obj)
obj.__exit__()
def discard__(obj):