forked from M-Labs/artiq
1
0
Fork 0

Require boolean condition in If, While, IfExp.

This commit is contained in:
whitequark 2015-07-21 23:39:22 +03:00
parent 1e851adf4f
commit e21829ce74
4 changed files with 21 additions and 3 deletions

View File

@ -145,6 +145,8 @@ class Inferencer(algorithm.Visitor):
def visit_IfExpT(self, node): def visit_IfExpT(self, node):
self.generic_visit(node) self.generic_visit(node)
self._unify(node.test.type, builtins.TBool(),
node.test.loc, None)
self._unify(node.body.type, node.orelse.type, self._unify(node.body.type, node.orelse.type,
node.body.loc, node.orelse.loc) node.body.loc, node.orelse.loc)
self._unify(node.type, node.body.type, self._unify(node.type, node.body.type,
@ -788,6 +790,11 @@ class Inferencer(algorithm.Visitor):
node.value = self._coerce_one(value_type, node.value, other_node=node.target) node.value = self._coerce_one(value_type, node.value, other_node=node.target)
def visit_If(self, node):
self.generic_visit(node)
self._unify(node.test.type, builtins.TBool(),
node.test.loc, None)
def visit_For(self, node): def visit_For(self, node):
old_in_loop, self.in_loop = self.in_loop, True old_in_loop, self.in_loop = self.in_loop, True
self.generic_visit(node) self.generic_visit(node)
@ -798,6 +805,8 @@ class Inferencer(algorithm.Visitor):
old_in_loop, self.in_loop = self.in_loop, True old_in_loop, self.in_loop = self.in_loop, True
self.generic_visit(node) self.generic_visit(node)
self.in_loop = old_in_loop self.in_loop = old_in_loop
self._unify(node.test.type, builtins.TBool(),
node.test.loc, None)
def visit_Break(self, node): def visit_Break(self, node):
if not self.in_loop: if not self.in_loop:

View File

@ -25,3 +25,12 @@ a = b
# CHECK-L: ${LINE:+1}: error: type int(width='a) does not have an attribute 'x' # CHECK-L: ${LINE:+1}: error: type int(width='a) does not have an attribute 'x'
(1).x (1).x
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with bool
1 if 1 else 1
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with bool
if 1: pass
# CHECK-L: ${LINE:+1}: error: cannot unify int(width='a) with bool
while 1: pass

View File

@ -3,7 +3,7 @@
def _gcd(a, b): def _gcd(a, b):
if a < 0: if a < 0:
a = -a a = -a
while a: while a > 0:
c = a c = a
a = b % a a = b % a
b = c b = c

View File

@ -33,8 +33,8 @@ j = []
j += [1.0] j += [1.0]
# CHECK-L: j:list(elt=float) # CHECK-L: j:list(elt=float)
1 if a else 2 1 if c else 2
# CHECK-L: 1:int(width='f) if a:int(width='a) else 2:int(width='f):int(width='f) # CHECK-L: 1:int(width='f) if c:bool else 2:int(width='f):int(width='f)
True and False True and False
# CHECK-L: True:bool and False:bool:bool # CHECK-L: True:bool and False:bool:bool