Tools__BreakpointService.st
changeset 14950 29261c456545
parent 14849 6a193ec6c01f
child 14971 a33058120f3d
equal deleted inserted replaced
14949:bb530ad0230c 14950:29261c456545
   154 (i.e. a method stopped at a method breakpoint or one which already has statement breakpoints)
   154 (i.e. a method stopped at a method breakpoint or one which already has statement breakpoints)
   155 The reason is that the method needs to be recompiled for the breakpoint, which would not affect the method being currently executed.
   155 The reason is that the method needs to be recompiled for the breakpoint, which would not affect the method being currently executed.
   156 
   156 
   157 You can proceed to set the breakpoint, but it will only affect the next call into this method, not the current invocation.'
   157 You can proceed to set the breakpoint, but it will only affect the next call into this method, not the current invocation.'
   158                         yesLabel:'Set Breakpoint for Next Call' noLabel:'Ok') ifTrue:[
   158                         yesLabel:'Set Breakpoint for Next Call' noLabel:'Ok') ifTrue:[
   159 self halt.
   159 "/ self halt.
   160                             ok := true.
   160                             ok := true.
   161                         ]
   161                         ]
   162                 ] ifFalse:[
   162                 ] ifFalse:[
   163                     Dialog warn:'Sorry, cannot add a new breakpoint here.'.
   163                     Dialog warn:'Sorry, cannot add a new breakpoint here.'.
   164                 ].
   164                 ].
   700 ! !
   700 ! !
   701 
   701 
   702 !BreakpointService class methodsFor:'documentation'!
   702 !BreakpointService class methodsFor:'documentation'!
   703 
   703 
   704 version
   704 version
   705     ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointService.st,v 1.55 2014-11-19 20:40:55 cg Exp $'
   705     ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointService.st,v 1.56 2014-11-28 17:36:09 cg Exp $'
   706 !
   706 !
   707 
   707 
   708 version_CVS
   708 version_CVS
   709     ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointService.st,v 1.55 2014-11-19 20:40:55 cg Exp $'
   709     ^ '$Header: /cvs/stx/stx/libtool/Tools__BreakpointService.st,v 1.56 2014-11-28 17:36:09 cg Exp $'
   710 !
   710 !
   711 
   711 
   712 version_SVN
   712 version_SVN
   713     ^ '$Id: Tools__BreakpointService.st,v 1.55 2014-11-19 20:40:55 cg Exp $'
   713     ^ '$Id: Tools__BreakpointService.st,v 1.56 2014-11-28 17:36:09 cg Exp $'
   714 ! !
   714 ! !
   715 
   715