Open martinRenou opened 5 years ago
We should use beniget for assignments and forward substitution. By using beniget we could allow this kind of functions:
def foo(value): if value < 3: b = 3 else: b = 4 return b
This should turn into an equivalent of value < 3 ? 3 : 4
value < 3 ? 3 : 4
We should use beniget for assignments and forward substitution. By using beniget we could allow this kind of functions:
This should turn into an equivalent of
value < 3 ? 3 : 4