CompiledCode.st
changeset 6544 7f5d747a9a92
parent 6308 9722a8992196
child 6546 9cada8214da7
equal deleted inserted replaced
6543:916373aeb49f 6544:7f5d747a9a92
   744 
   744 
   745     "Modified: 4.11.1996 / 22:46:55 / cg"
   745     "Modified: 4.11.1996 / 22:46:55 / cg"
   746 !
   746 !
   747 
   747 
   748 interpretWithReceiver:aReceiver
   748 interpretWithReceiver:aReceiver
   749     self halt
   749     "invoked by VM for non-Smalltalk-methods (MetaMethods)"
       
   750 
       
   751     self subclassResponsibility
   750 !
   752 !
   751 
   753 
   752 interpretWithReceiver:aReceiver arg:arg1
   754 interpretWithReceiver:aReceiver arg:arg1
   753     self halt
   755     "invoked by VM for non-Smalltalk-methods (MetaMethods)"
       
   756 
       
   757     self subclassResponsibility
   754 !
   758 !
   755 
   759 
   756 interpretWithReceiver:aReceiver arg:arg1 arg:arg2
   760 interpretWithReceiver:aReceiver arg:arg1 arg:arg2
   757     self halt
   761     "invoked by VM for non-Smalltalk-methods (MetaMethods)"
       
   762 
       
   763     self subclassResponsibility
   758 !
   764 !
   759 
   765 
   760 interpretWithReceiver:aReceiver arg:arg1 arg:arg2 arg:arg3
   766 interpretWithReceiver:aReceiver arg:arg1 arg:arg2 arg:arg3
   761     self halt
   767     "invoked by VM for non-Smalltalk-methods (MetaMethods)"
       
   768 
       
   769     self subclassResponsibility
       
   770 !
       
   771 
       
   772 interpretWithReceiver:aReceiver arguments:argVector
       
   773     "invoked by VM for non-Smalltalk-methods (MetaMethods)"
       
   774 
       
   775     self subclassResponsibility
   762 !
   776 !
   763 
   777 
   764 invalidByteCode
   778 invalidByteCode
   765     "{ Pragma: +optSpace }"
   779     "{ Pragma: +optSpace }"
   766 
   780 
  1661 ! !
  1675 ! !
  1662 
  1676 
  1663 !CompiledCode class methodsFor:'documentation'!
  1677 !CompiledCode class methodsFor:'documentation'!
  1664 
  1678 
  1665 version
  1679 version
  1666     ^ '$Header: /cvs/stx/stx/libbasic/CompiledCode.st,v 1.87 2001-12-13 11:51:10 cg Exp $'
  1680     ^ '$Header: /cvs/stx/stx/libbasic/CompiledCode.st,v 1.88 2002-05-14 09:51:45 cg Exp $'
  1667 ! !
  1681 ! !
  1668 CompiledCode initialize!
  1682 CompiledCode initialize!