Exemplo n.º 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
Exemplo n.º 2
0
 def __init__(self, _next, location, expression):
     InstructionNode.__init__(self, _next)
     self.location = location
     self.expression = expression
Exemplo n.º 3
0
 def __init__(self, _next, location):
     InstructionNode.__init__(self, _next)
     self.location = location
Exemplo n.º 4
0
 def __init__(self, _next, condition, instructions):
     InstructionNode.__init__(self, _next)
     self.condition = condition
     self.instructions = instructions
Exemplo n.º 5
0
 def __init__(self, _next, proc_obj):
     InstructionNode.__init__(self, _next)
     self.proc_obj = proc_obj
Exemplo n.º 6
0
 def __init__(self, _next, expression):
     InstructionNode.__init__(self, _next)
     self.expression = expression