Re: [Pharo-users] Where did all the Comments Go?

2019-09-20 Thread Andrew Black
ionManager>>launchSnapshot:andQuit: [ isImageStarting := self launchSnapshot: save andQuit: quit. wait signal ] in SessionManager>>snapshot:andQuit: in Block: [ isImageStarting := self launchSnapshot: save and...etc... [ self value. Processor terminateActive ] in BlockClosure>>

[Pharo-users] Where did all the Comments Go?

2019-09-20 Thread Andrew Black
My third attempt to post this ... I’m coming back to Pharo after not having used it for several months. I’m pleased to see that Pharo 7 is now stable and that work has started on Pharo 8. I downloaded a new Pharo Launcher (the old one could no longer figure out which version of the VM to use),

[Pharo-users] Issue decoding source file

2018-10-23 Thread Andrew Black
I’m getting a walkback while attempting to look at the prior versions of certain methods.It happens on some methods, but not all. I think the the issue may be related to having characters in the method body that are represented as multi-byte sequences in UTF-8. The error is 'Illegal leading b

Re: [Pharo-users] [ANN] Pharo Git Thermite Release

2018-07-31 Thread Andrew Black
Hi Ronie, These visualizations look great! But I don’t know what they /mean/.When one hovers the mouse over the visualizations, does help text appear explaining what one is looking at? For example, I guess that the red and green segments in “Lines of Code” refer to lines deleted and added

Re: [Pharo-users] [ANN] Pharo Git Thermite Release

2018-07-29 Thread Andrew Black
Hi Ronie, These visualizations look great! But I don’t know what they mean.When one hovers the mouse over the visualizations, does help text appear explaining what one is looking at? For example, I guess that the red and green segments in “Lines of Code” refer to lines deleted and added.

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-22 Thread Andrew Black
> On 22 Jul 2018, at 19:35 , Sean P. DeNigris wrote: > > Andrew Black-2 wrote >>> spec >>> baseline: 'SmaCC-Reification' >>> with: [ spec repository: 'github://apblack/SmaCC:fglr' >

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-22 Thread Andrew Black
> On 21 Jul 2018, at 08:22 , Sean P. DeNigris wrote: > > Andrew P. Black wrote >> I don’t know what else to try! > > From the error message: >Could not resolve: BaselineOfSmaCC-Reification... in > https://github.com/apblack/SmaCC.git[working] > > I'm guessing that you can't load from two

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-20 Thread Andrew Black
I’ve spent another couple of hours on this, and here is where I stand. I can get SmaCC-Reification to load if I use the "load ...” menu in the Montecello extension menu to Iceberg — but only if I select the fglr branch manually. (this is reasonable, because that group is not on the working branc

Re: [Pharo-users] Changing a BaselineOf... to include one more package

2018-07-20 Thread Andrew Black
> On 16 Jul 2018, at 07:27 , Guillermo Polito wrote: > > - I've cloned SmaCC > - I've checked out the flgr branch > - I've loaded the baseline and added > >> spec package: 'SmaCC-Reification' with: [ spec requires: >> #('SmaCC-Smalltalk-Parser' 'SmaCC-Runtime' 'SmaCC-Java') ] > - then, I'v

Re: [Pharo-users] Is there a way to stop arrays sorting automatically?

2018-01-06 Thread Andrew Black
+1 for what Richard says. Moreover, if you know that n is small, and you really want copies of all th permutations, then adding a copy message to your block is really simple. But if the permutationsDo: method made the copy, then it would be useless except for very small values of n. The comment t