*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Mon, 13 Aug 2001 16:13:49 +0200
changeset 5904 5198e81b5669
parent 5903 fa9072bf1506
child 5905 06cf209d6acc
*** empty log message ***
ExecutableFunction.st
--- a/ExecutableFunction.st	Mon Aug 13 15:03:33 2001 +0200
+++ b/ExecutableFunction.st	Mon Aug 13 16:13:49 2001 +0200
@@ -340,6 +340,14 @@
     "Created: 16.4.1996 / 16:33:24 / cg"
 !
 
+messagesSent
+    ^ #()       "/ actually: unknown here in this abstract class
+!
+
+messagesSentToSelf
+    ^ #()       "/ actually: unknown here in this abstract class
+!
+
 privacy
     "return a symbol describing the methods access rights (privacy);
      Currently, this is one of #private, #protected, #public or #ignored.
@@ -421,6 +429,6 @@
 !ExecutableFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.44 2000-08-18 20:05:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.45 2001-08-13 14:13:49 cg Exp $'
 ! !
 ExecutableFunction initialize!