コード例 #1
0
ファイル: flowcontext.py プロジェクト: yuyichao/pypy
 def __init__(self, inputargs, prevblock, booloutcome):
     Block.__init__(self, inputargs)
     self.prevblock = prevblock
     self.booloutcome = booloutcome
コード例 #2
0
ファイル: flowcontext.py プロジェクト: zielmicha/pypy
 def __init__(self, inputargs, prevblock, booloutcome):
     Block.__init__(self, inputargs)
     self.prevblock = prevblock
     self.booloutcome = booloutcome
コード例 #3
0
ファイル: flowcontext.py プロジェクト: yuyichao/pypy
 def __init__(self, framestate):
     Block.__init__(self, framestate.getvariables())
     self.framestate = framestate
     self.dead = False
コード例 #4
0
ファイル: flowcontext.py プロジェクト: zielmicha/pypy
 def __init__(self, framestate):
     Block.__init__(self, framestate.getvariables())
     self.framestate = framestate
     self.dead = False