ExecutableFunction.st
changeset 1669 4951596746f7
parent 1293 02fb05148c98
child 1871 d6e2d0570fa8
--- a/ExecutableFunction.st	Thu Sep 19 18:29:02 1996 +0200
+++ b/ExecutableFunction.st	Fri Sep 20 09:29:27 1996 +0200
@@ -42,23 +42,21 @@
     Instances of ExecutableCode are not ment to be created by user code -
     the compilers create instances of Method & Block, while compiling.
 
+    NOTICE: layout known by runtime system and compiler - do not change
+
 
     [Instance variables:]
-
       code        <not_an_object>   the function pointer to the machine code.
                                     Not accessable from smalltalk code.
                                     (notice the '*' in the instVarNames definition)
 
 
-
     [Class variables:]
-
       ExecutionErrorSignal          parent of all execution errors
                                     (not raised itself)
 
       InvalidCodeSignal             codeObject is not executable
 
-    NOTICE: layout known by runtime system and compiler - do not change
 
     [author:]
         Claus Gittinger
@@ -298,6 +296,6 @@
 !ExecutableFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.26 1996-04-25 16:48:53 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.27 1996-09-20 07:28:45 cg Exp $'
 ! !
 ExecutableFunction initialize!