ExecutableFunction.st
changeset 2536 41f4c3159f6b
parent 2532 e555281237f1
child 2667 6a9fec5b99cb
--- a/ExecutableFunction.st	Fri Apr 11 13:41:35 1997 +0200
+++ b/ExecutableFunction.st	Fri Apr 11 17:31:10 1997 +0200
@@ -256,6 +256,15 @@
     "Modified: 16.4.1996 / 16:32:36 / cg"
 !
 
+isTimed
+    "return true, if this is a wrapper method for a time measurement.
+     False is returned here - this method is redefined in WrappedMethod"
+
+    ^ false
+
+    "Created: 11.4.1997 / 17:06:32 / cg"
+!
+
 isTraced
     "return true, if this is a wrapper method for a trace point.
      False is returned here - this method is redefined in WrappedMethod"
@@ -321,6 +330,6 @@
 !ExecutableFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.30 1997-04-07 17:29:49 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExecutableFunction.st,v 1.31 1997-04-11 15:31:10 cg Exp $'
 ! !
 ExecutableFunction initialize!