Re: [Pharo-dev] Breakpoint of variable write

2015-05-02 Thread stepharo
Yes because we can do more after that :) Stef Le 1/5/15 13:04, Yuriy Tymchuk a écrit : Thanks Marcus! This will be very useful. Uko On 01 May 2015, at 12:51, Marcus Denker wrote: On 01 May 2015, at 12:41, Yuriy Tymchuk wrote: Hi, is it possible to do a halt whenever some instance varia

Re: [Pharo-dev] Breakpoint of variable write

2015-05-01 Thread Ben Coman
On Fri, May 1, 2015 at 6:41 PM, Yuriy Tymchuk wrote: > Hi, is it possible to do a halt whenever some instance variable is written? > > Because this week I’ve spent a lot of time debugging because something was > setting some strange values to variables and it was hard to track that down. > > Uko

Re: [Pharo-dev] Breakpoint of variable write

2015-05-01 Thread Yuriy Tymchuk
Thanks Marcus! This will be very useful. Uko > On 01 May 2015, at 12:51, Marcus Denker wrote: > > >> On 01 May 2015, at 12:41, Yuriy Tymchuk wrote: >> >> Hi, is it possible to do a halt whenever some instance variable is written? > > Soon… I am working on it. > > Make a class TT with ivar

Re: [Pharo-dev] Breakpoint of variable write

2015-05-01 Thread Thierry Goubier
Le 01/05/2015 12:51, Marcus Denker a écrit : On 01 May 2015, at 12:41, Yuriy Tymchuk wrote: Hi, is it possible to do a halt whenever some instance variable is written? Soon… I am working on it. Make a class TT with ivar ‘tt’, method tt tt := 1. Then we can define a meta-link to c

Re: [Pharo-dev] Breakpoint of variable write

2015-05-01 Thread Marcus Denker
> On 01 May 2015, at 12:41, Yuriy Tymchuk wrote: > > Hi, is it possible to do a halt whenever some instance variable is written? Soon… I am working on it. Make a class TT with ivar ‘tt’, method tt tt := 1. Then we can define a meta-link to call "Halt now”: | link | link := MetaLin

[Pharo-dev] Breakpoint of variable write

2015-05-01 Thread Yuriy Tymchuk
Hi, is it possible to do a halt whenever some instance variable is written? Because this week I’ve spent a lot of time debugging because something was setting some strange values to variables and it was hard to track that down. Uko