def __init__(self, cpu):
     CpuException.__init__(self, cpu)
Exemplo n.º 2
0
 def __init__(self, cpu, wrong_type):
     self._wrong_type = wrong_type
     CpuException.__init__(self, cpu)
Exemplo n.º 3
0
 def __init__(self, cpu, selfref_reg, current_meth_impl):
     self._current_meth_impl = current_meth_impl
     self._selfref_reg = selfref_reg
     CpuException.__init__(self, cpu)
 def __init__(self, cpu, destination, selector):
     CpuException.__init__(self, cpu)
     self.destination = destination
     self.selector = selector
Exemplo n.º 5
0
 def __init__(self, cpu, log_func, nslog_string):
     CpuException.__init__(self, cpu, caused_by=None)
     self.nslog_string = nslog_string
     self.log_func = log_func
Exemplo n.º 6
0
 def __init__(self, cpu, looked_up_list):
     self._looked_up_list = looked_up_list
     CpuException.__init__(self, cpu)
 def __init__(self, arguments_interface, cpu):
     ArgumentsException.__init__(self, arguments_interface)
     CpuException.__init__(self, cpu)
Exemplo n.º 8
0
 def __init__(self, addr, stack): 
     CpuException.__init__(self, None)
     self._addr = addr
     self._stack = stack