示例#1
0
 def __init__(self, _next, condition, instructions_true, instructions_false):
     InstructionNode.__init__(self, _next)
     self.condition = condition
     self.instructions_true = instructions_true
     self.instructions_false = instructions_false
示例#2
0
 def __init__(self, _next, location, expression):
     InstructionNode.__init__(self, _next)
     self.location = location
     self.expression = expression
示例#3
0
 def __init__(self, _next, location):
     InstructionNode.__init__(self, _next)
     self.location = location
示例#4
0
 def __init__(self, _next, condition, instructions):
     InstructionNode.__init__(self, _next)
     self.condition = condition
     self.instructions = instructions
示例#5
0
 def __init__(self, _next, proc_obj):
     InstructionNode.__init__(self, _next)
     self.proc_obj = proc_obj
示例#6
0
 def __init__(self, _next, expression):
     InstructionNode.__init__(self, _next)
     self.expression = expression