*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 29 Oct 2015 09:49:36 +0100
changeset 5504 0dda43e18c90
parent 5501 0a89afd84c8f
child 5505 f1873e306ba5
child 5506 a604a1bb195d
*** empty log message ***
Workspace.st
--- a/Workspace.st	Thu Oct 29 00:12:11 2015 +0100
+++ b/Workspace.st	Thu Oct 29 09:49:36 2015 +0100
@@ -2188,7 +2188,7 @@
 
     |code|
 
-    compilerClass == Smalltalk::Compiler ifFalse:[
+    compilerClass == (Smalltalk at:#Compiler) ifFalse:[
 	"sigh - this measurement will include the time to compile - sigh"
 	aProfiler spyDetailedOn:[ self doIt ].
 	^ self.
@@ -2204,7 +2204,7 @@
 
     |code|
 
-    compilerClass == Smalltalk::Compiler ifFalse:[
+    compilerClass == (Smalltalk at:#Compiler) ifFalse:[
         "sigh - this measurement will include the time to compile - sigh"
         [ self doIt ] benchmark:'execution time: '.
         ^ self.