CompiledCode.st
changeset 21416 6f5e8696df0c
parent 21310 3f937bb2cdc8
child 21788 07e8ba40475d
--- a/CompiledCode.st	Mon Feb 13 20:05:23 2017 +0100
+++ b/CompiledCode.st	Mon Feb 13 20:05:34 2017 +0100
@@ -49,7 +49,7 @@
     [Instance variables:]
 
       flags       <SmallInteger>    special flag bits coded in a number
-      byteCode    <ByteArray>       bytecode if its an interpreted codeobject
+      byteCode    <ByteArray>       bytecode if it's an interpreted codeobject
 
       The block/methods literals are stored in the indexed instance variables.
       If there is only one indexed instvar, it contains a reference to an
@@ -59,7 +59,7 @@
     [Class variables:]
 
       NoByteCodeSignal              raised if a codeObject is about to be executed
-				    which has neither code nor byteCode (i.e. both are nil)
+                                    which has neither code nor byteCode (i.e. both are nil)
       InvalidByteCodeSignal         raised if byteCode is not an instance of ByteArray
       InvalidInstructionSignal      raised if an invalid instruction opcode is encountered
       BadLiteralsSignal             raised if literalArray is not an array
@@ -71,7 +71,7 @@
     NOTICE: layout known by runtime system and compiler - do not change
 
     [author:]
-	Claus Gittinger
+        Claus Gittinger
 "
 ! !
 
@@ -374,10 +374,12 @@
 
 homeMethod
     "for common protocol with blocks: if the receiver is a method,
-     return the receiver; otherwise, if its a block, return its home
+     return the receiver; otherwise, if it's a block, return its home
      method."
 
     ^ self
+
+    "Modified (comment): / 13-02-2017 / 19:58:51 / cg"
 !
 
 literalAt:index