Пример #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