Re: [Pharo-dev] Extending Pharo Debugger

2016-10-06 Thread stepharo
It looks fun :) Are you looking for more ideas for your thesis? Le 6/10/16 à 10:05, Matteo Marra a écrit : Hello Stephan, In the work for my thesis, I'm building a debugger for big data applications, that when a bug happens doesn't stop the computation but proceeds evaluating the next

Re: [Pharo-dev] Extending Pharo Debugger

2016-10-06 Thread Matteo Marra
Hello Stephan, In the work for my thesis, I'm building a debugger for big data applications, that when a bug happens doesn't stop the computation but proceeds evaluating the next data. This opens a series of debuggers in separate threads, that are shown one by one. I added a button that allows me

Re: [Pharo-dev] Extending Pharo Debugger

2016-10-05 Thread stepharo
Hi matteo What do you want to add? Stef Le 4/10/16 à 16:10, Matteo Marra a écrit : Hello, I'm working on the Pharo debugger, and I wanted to add a button with new functionality just besides the buttons "Proceed" "restart" ... Is there an easy way to do it? Which is the class that I have

Re: [Pharo-dev] Extending Pharo Debugger

2016-10-04 Thread p...@highoctane.be
While you are at it, make a button at the top with "Run to cursor". It is a missing one that requires oneto get the context menu to execute. Annoying. Phil On Tue, Oct 4, 2016 at 4:30 PM, Matteo Marra wrote: > Hi Andrei, > > thank you for your really fast answer! > >

Re: [Pharo-dev] Extending Pharo Debugger

2016-10-04 Thread Matteo Marra
Hi Andrei, thank you for your really fast answer! Cheers, Matteo 2016-10-04 16:20 GMT+02:00 Andrei Chis : > Hi Matteo, > > If you look, for example at RestartDebugAction, there is on > the class side a method #gtStackDebuggingActionFor: that > has the annotation . >

Re: [Pharo-dev] Extending Pharo Debugger

2016-10-04 Thread Andrei Chis
Hi Matteo, If you look, for example at RestartDebugAction, there is on the class side a method #gtStackDebuggingActionFor: that has the annotation . To attach actions to the stack (proceed, resume, step into) the debugger looks for subclasses of DebugAction that have class side methods annotated

[Pharo-dev] Extending Pharo Debugger

2016-10-04 Thread Matteo Marra
Hello, I'm working on the Pharo debugger, and I wanted to add a button with new functionality just besides the buttons "Proceed" "restart" ... Is there an easy way to do it? Which is the class that I have to Modify/Extend in order to do that? I tried to look around the methods and I found where