예제 #1
0
 def nested(cond):
     if cond:
         if inline(cond_1):
             return 3
         else:
             return 2
     else:
         if inline(cond_1):
             return 1
         else:
             return 0
예제 #2
0
 def nested():
     if inline(cond_0):
         if inline(cond_1):
             return 3
         else:
             return 2
     else:
         if inline(cond_1):
             return 1
         else:
             return 0
예제 #3
0
 def basic():
     if inline(cond):
         return 0
     else:
         return 1
예제 #4
0
 def foo(x):
     if inline(y):
         return x + 1
     else:
         return x - 1