コード例 #1
0
 def __init__(self, cpu):
     CpuException.__init__(self, cpu)
コード例 #2
0
 def __init__(self, cpu, wrong_type):
     self._wrong_type = wrong_type
     CpuException.__init__(self, cpu)
コード例 #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)
コード例 #4
0
 def __init__(self, cpu, destination, selector):
     CpuException.__init__(self, cpu)
     self.destination = destination
     self.selector = selector
コード例 #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
コード例 #6
0
 def __init__(self, cpu, looked_up_list):
     self._looked_up_list = looked_up_list
     CpuException.__init__(self, cpu)
コード例 #7
0
 def __init__(self, arguments_interface, cpu):
     ArgumentsException.__init__(self, arguments_interface)
     CpuException.__init__(self, cpu)
コード例 #8
0
 def __init__(self, addr, stack): 
     CpuException.__init__(self, None)
     self._addr = addr
     self._stack = stack