Boolean.st
changeset 4682 4158042a9c8c
parent 4656 aa895a9835a2
child 4728 37eaa8241422
equal deleted inserted replaced
4681:7bac1e0ba551 4682:4158042a9c8c
   184     ^ true
   184     ^ true
   185 ! !
   185 ! !
   186 
   186 
   187 !Boolean methodsFor:'tracing'!
   187 !Boolean methodsFor:'tracing'!
   188 
   188 
   189 traceInto:aRequestor level:level
   189 traceInto:aRequestor level:level from:referrer
   190     "double dispatch into tracer, passing my type implicitely in the selector"
   190     "double dispatch into tracer, passing my type implicitely in the selector"
   191 
   191 
   192     ^ aRequestor traceBoolean:self level:level
   192     ^ aRequestor traceBoolean:self level:level from:referrer
   193 
   193 
   194 
   194 
   195 ! !
   195 ! !
   196 
   196 
   197 !Boolean class methodsFor:'documentation'!
   197 !Boolean class methodsFor:'documentation'!
   198 
   198 
   199 version
   199 version
   200     ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.23 1999-09-01 19:56:10 cg Exp $'
   200     ^ '$Header: /cvs/stx/stx/libbasic/Boolean.st,v 1.24 1999-09-04 18:20:45 cg Exp $'
   201 ! !
   201 ! !