Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Marcus Denker
On Mar 16, 2011, at 8:58 PM, Sven Van Caekenberghe wrote: > > On 16 Mar 2011, at 19:48, Marcus Denker wrote: > >> >> On Mar 16, 2011, at 7:41 PM, Noury Bouraqadi wrote: >> >>> A break point should not turn the MC package into dirty as opposite to >>> inserting a self halt or self haltIf:[...

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Schwab,Wilhelm K
: Re: [Pharo-project] Breakpoints in Pharo How is a breakpoint different from a 'self halt' statement? On Wed, Mar 16, 2011 at 11:41 AM, Stéphane Ducasse wrote: > no news on this front. > We are working on infrastructure right now >- better code model

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Sven Van Caekenberghe
On 16 Mar 2011, at 19:48, Marcus Denker wrote: > > On Mar 16, 2011, at 7:41 PM, Noury Bouraqadi wrote: > >> A break point should not turn the MC package into dirty as opposite to >> inserting a self halt or self haltIf:[...]. >> > and > -> one could remove all breakpoints with a menu en

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Benoit St-Jean
+1 for breakpoints - Benoit St-Jean Yahoo! Messenger: bstjean A standpoint is an intellectual horizon of radius zero. (Albert Einstein)

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Reg Krock
+1 --- it would be very nice > A break point should not turn the MC package into dirty as opposite to >inserting a self halt or self haltIf:[...]. > and -> one could remove all breakpoints with a menu entry -> disable but not remove -> watchpoints (viewers for values and expressions)

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Marcus Denker
On Mar 16, 2011, at 7:41 PM, Noury Bouraqadi wrote: > A break point should not turn the MC package into dirty as opposite to > inserting a self halt or self haltIf:[...]. > and -> one could remove all breakpoints with a menu entry -> disable but not remove -> watchpoints

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Noury Bouraqadi
A break point should not turn the MC package into dirty as opposite to inserting a self halt or self haltIf:[...]. Noury On 16 mars 2011, at 16:46, Dmitri Zagidulin wrote: > How is a breakpoint different from a 'self halt' statement? > > On Wed, Mar 16, 2011 at 11:41 AM, Stéphane Ducasse > wro

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Stéphane Ducasse
It does not get logged into the log and you do not need to recompile. We could modify bytecode. for now we could have a button add self halt + compileSilently to recompile the method. So this is not that important since nobody seriously looked at how to solve the problem. :) Stef > Ho

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Dmitri Zagidulin
How is a breakpoint different from a 'self halt' statement? On Wed, Mar 16, 2011 at 11:41 AM, Stéphane Ducasse wrote: > no news on this front. > We are working on infrastructure right now >        - better code model >        - compiler >        - package >        - network >        - redoing the

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Stéphane Ducasse
no news on this front. We are working on infrastructure right now - better code model - compiler - package - network - redoing the tools. So from a user experience it may look the same but it is a real set of important changes below the surface that

Re: [Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Mariano Martinez Peck
2011/3/16 Janko Mivšek > Dear Pharoers, > > What is the current state of affairs on breakpoints? > > In Pharo 1.2, you have something in OB called "toogle breakpoint" (right click on a method), which puts a breakpoint at the beginning of the method. Then, you can remove it. Of course, it is not

[Pharo-project] Breakpoints in Pharo

2011-03-16 Thread Janko Mivšek
Dear Pharoers, What is the current state of affairs on breakpoints? Breakpoins is a thing I really miss when I'm working on Pharo, comparing to working on VisualWorks... This is in light of current question on StackOverflow: http://stackoverflow.com/questions/5322497/how-can-i-set-a-breakpoint-