예제 #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