Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-12 Thread Max Leske
Oops. Didn't see all those answers :) > On 13 Mar 2017, at 07:16, Max Leske wrote: > > What do you mean by "skip"? Not execute? Then not that I'm aware of. But you > can: > > 1. step into > 2. return value from method (right click on the current frame) > > With a return value of nil that will

Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-12 Thread Max Leske
What do you mean by "skip"? Not execute? Then not that I'm aware of. But you can: 1. step into 2. return value from method (right click on the current frame) With a return value of nil that will have the same effect. HTH, Max > On 10 Mar 2017, at 21:20, stepharong wrote: > > Hi > > I need t

Re: [Pharo-dev] Growing large images: the case of Moose models

2017-03-12 Thread Clément Bera
Hi again, I summarised my experiment with Moose and 2 other experiments in a "Tuning the Pharo garbage collector" blog post here: https://clementbera.wordpress.com/2017/03/12/tuning-the-pharo-garbage-collector/ I may integrate some new methods in the VirtualMachine class in Pharo in the next few

Re: [Pharo-dev] perform:withArguments: and collection

2017-03-12 Thread Eliot Miranda
On Sun, Mar 12, 2017 at 3:16 PM, Peter Uhnak wrote: > Hi, > > Apparently sending #perform:withArguments: and using OrderedCollection > leads to PrimitiveFailed. > > I can recast it, but maybe we can just add > > (argArray isArray) > ifFalse: [ ^ self error: 'Arguments must be instance of

[Pharo-dev] perform:withArguments: and collection

2017-03-12 Thread Peter Uhnak
Hi, Apparently sending #perform:withArguments: and using OrderedCollection leads to PrimitiveFailed. I can recast it, but maybe we can just add (argArray isArray) ifFalse: [ ^ self error: 'Arguments must be instance of Array' ] to make the error less cryptic. (or allow OrderedCollecti

Re: [Pharo-dev] Did we lose edit-in-place in GT Inspector in Pharo 6?

2017-03-12 Thread Alistair Grant
On 12 March 2017 at 03:36, Sean P. DeNigris wrote: > Double clicking on a value in the raw tab seems to have no effect. > > p.s I asked twice in Discord with no response. I guess I'm finally getting > old enough that I don't understand how to use new platforms ;) While I'm feeling much the same (

Re: [Pharo-dev] Did we lose edit-in-place in GT Inspector in Pharo 6?

2017-03-12 Thread Andrei Chis
On Sun, Mar 12, 2017 at 5:07 PM, Sean P. DeNigris wrote: > Tudor Girba-2 wrote > > this feature is temporarily not available due to the move to FastTable > > :( > > > Tudor Girba-2 wrote > > but we are working on adding it back. > > :) > > I use this all the time to e.g. nil out an inst var to >

[Pharo-dev] debugger feature I would pay for

2017-03-12 Thread stepharong
Hi doru You have some features and I would love to use it for real. Here is my scenario: I have a test failing in pillar dev but not in my previous image. :( I want to run a test in an image (green test). - get the test execution stack In another image (dev), I would like to load th

Re: [Pharo-dev] what is the SpecLayout architecture?

2017-03-12 Thread stepharong
On Sat, 11 Mar 2017 14:55:35 +0100, Peter Uhnak wrote: Hi, this is probably a tall order, but is there some description of SpecLayout architecture? To clarify: I am NOT asking how to use SpecLayout, I am asking how SpecLayout works internally. iirc SpecInterpreter was rewritten by Joha

[Pharo-dev] How to use the serial port on MacOS X?

2017-03-12 Thread olivier auverlot
Hi, I try to use the serial port to communicate with an Arduino. On Linux, no problemo. I can open the serial port with the following code: | serialPort baudRate comPortNumber | baudRate := 31250. comPort := '/dev/ttyACM0'. serialPort := SerialPort new baudRate: 31250; dat

Re: [Pharo-dev] Did we lose edit-in-place in GT Inspector in Pharo 6?

2017-03-12 Thread Sean P. DeNigris
Tudor Girba-2 wrote > this feature is temporarily not available due to the move to FastTable :( Tudor Girba-2 wrote > but we are working on adding it back. :) I use this all the time to e.g. nil out an inst var to re-lazily-initialize. I noticed it was missing (after trying to press the mouse

Re: [Pharo-dev] 60437 empty catalog

2017-03-12 Thread Esteban Lorenzano
I introduced a change there (to force a cache per session and not per day as before). And I discovered than forcing an update in Catalog Browser empties the cache without refilling it… so it has to be my change :S I will review it tomorrow. Esteban > On 11 Mar 2017, at 15:54, Ben Coman wrote

Re: [Pharo-dev] image not opening.

2017-03-12 Thread Guillermo Polito
Yeh, to be more precise, * the problem is that the image somehow got it's display size modified to a very small one. * And that happenned while building an image in the CI in headless mode. * If the same image is built locally in a vm launched in non-headless mode, the issue cannot be reproduced.

Re: [Pharo-dev] image not opening.

2017-03-12 Thread stepharong
guillermo was suspecting a problem with the interpretatin of the image metadata Maybe related? http://forum.world.st/BUG-A-problem-with-callbacks-that-shows-up-in-64bits-but-is-on-32bits-too-td4938152.html On Sat, Mar 11, 2017 at 2:22 AM, Cyril Ferlicot wrote: On ven. 10 mars 2017 at 18:42

Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-12 Thread stepharong
On Sat, 11 Mar 2017 09:54:56 +0100, Tudor Girba wrote: Ah, I got it. It is not supported at the moment and as far as I know, it was not supported in the SpecDebugger either. I wonder if the old debugger got it and spec did not offer it. But yes it would be nice to have it (may be not as bu

Re: [Pharo-dev] Debugger: is there a way to skip a message?

2017-03-12 Thread stepharong
Hi Like nicolas mentioned. My scenario was: I was debugging a process with intermediary results (files that the process was removing) and I wanted to keep the files (ie. not executing some messages that I knew where removing the resources) because I needed to check the status of th

[Pharo-dev] class selection is lost when browsing a method in and switching in hierarchy mode

2017-03-12 Thread stepharong
Hi I have the impression that I found an really annoying glitch. - Take a class hierarchy in the middle - Select a class side method - Select the hierarchy buttong - normally the class you selected and (the class of the currently displayed is not selected anymore). https://pharo.fogbugz.com/

Re: [Pharo-dev] Why do we have doublequoting for "?

2017-03-12 Thread stepharong
On Sat, 11 Mar 2017 17:17:19 +0100, Tudor Girba wrote: Hi Stef, I am still thinking about this point, but I do not have an intelligent answer yet. I just wanted to say that I did not forget it :). :) Cheers, Doru On Feb 26, 2017, at 11:16 PM, stepharong wrote: I hate my mail cli

[Pharo-dev] Crash

2017-03-12 Thread stepharong
Pharo 6.0 Latest update: #60438 I was editing code and got a crash. I think that I'm using the latest vm (and I'm on el capitan) Image - /Users/ducasse/Workspace/FirstCircle/MyBooks/Bk-Writing/PillarHacking/ToHack/Pharo.image Pharo6.0 Latest update: #60438 Unnamed Virtual Machine --