CompiledCode.st
changeset 5538 e0cd72dbdda7
parent 5537 05d01dd462f6
child 5555 bf38f4b28455
equal deleted inserted replaced
5537:05d01dd462f6 5538:e0cd72dbdda7
   453     "arrange for a breakpoint-debugger to be opened when this method
   453     "arrange for a breakpoint-debugger to be opened when this method
   454      was invoked countInvocations times."
   454      was invoked countInvocations times."
   455 
   455 
   456     MessageTracer trapMethod:self after:countInvocations.
   456     MessageTracer trapMethod:self after:countInvocations.
   457 
   457 
       
   458 !
       
   459 
       
   460 breakPointIf:conditionBlock
       
   461     "arrange for a breakpoint-debugger to be opened when this method
       
   462      is invoked AND conditionBlock evaluates to true."
       
   463 
       
   464     MessageTracer trapMethod:self if:conditionBlock
       
   465 
       
   466     "Created: / 18.8.2000 / 22:09:59 / cg"
   458 !
   467 !
   459 
   468 
   460 breakPointInProcess:aProcess
   469 breakPointInProcess:aProcess
   461     "arrange for a breakpoint-debugger to be opened when this method
   470     "arrange for a breakpoint-debugger to be opened when this method
   462      is invoked from withn aProcess."
   471      is invoked from withn aProcess."
  1563 ! !
  1572 ! !
  1564 
  1573 
  1565 !CompiledCode class methodsFor:'documentation'!
  1574 !CompiledCode class methodsFor:'documentation'!
  1566 
  1575 
  1567 version
  1576 version
  1568     ^ '$Header: /cvs/stx/stx/libbasic/CompiledCode.st,v 1.79 2000-08-18 20:04:49 cg Exp $'
  1577     ^ '$Header: /cvs/stx/stx/libbasic/CompiledCode.st,v 1.80 2000-08-18 20:22:50 cg Exp $'
  1569 ! !
  1578 ! !
  1570 CompiledCode initialize!
  1579 CompiledCode initialize!