forked from IUCompilerCourse/python-student-support-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
type_check_Pvar.py
54 lines (49 loc) · 1.65 KB
/
type_check_Pvar.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from ast import *
def check_type_equal(t1, t2, e):
if t1 != t2:
raise Exception('error: ' + repr(t1) + ' != ' + repr(t2) + ' in ' + repr(e))
class TypeCheckPvar:
def type_check_exp(self, e, env):
match e:
case BinOp(left, Add(), right):
l = self.type_check_exp(left, env)
check_type_equal(l, int, left)
r = self.type_check_exp(right, env)
check_type_equal(r, int, right)
return int
case UnaryOp(USub(), v):
t = self.type_check_exp(v, env)
check_type_equal(t, int, v)
return int
case Name(id):
return env[id]
case Constant(value) if isinstance(value, int):
return int
case Call(Name('input_int'), []):
return int
case _:
raise Exception('error in TypeCheckPvar.type_check_exp, unhandled ' + repr(e))
def type_check_stmts(self, ss, env):
if len(ss) == 0:
return
match ss[0]:
case Assign([lhs], value):
t = self.type_check_exp(value, env)
if lhs.id in env:
check_type_equal(env[lhs.id], t, value)
else:
env[lhs.id] = t
return self.type_check_stmts(ss[1:], env)
case Expr(Call(Name('print'), [arg])):
t = self.type_check_exp(arg, env)
check_type_equal(t, int, arg)
return self.type_check_stmts(ss[1:], env)
case Expr(value):
self.type_check_exp(value, env)
return self.type_check_stmts(ss[1:], env)
case _:
raise Exception('error in TypeCheckPvar.type_check_stmt, unhandled ' + repr(s))
def type_check_P(self, p):
match p:
case Module(body):
self.type_check_stmts(body, {})