Re: [Pharo-users] loading petitParser

2017-03-28 Thread Stephane Ducasse
I will update the book because this pointer does not work either http://www.themoosebook.org/book/internals/petit-parser On Tue, Mar 28, 2017 at 11:48 AM, Christophe Demarey < christophe.dema...@inria.fr> wrote: > yes because the current way to load projects is: > > Metacello new >

Re: [Pharo-users] loading petitParser

2017-03-28 Thread Christophe Demarey
yes because the current way to load projects is: Metacello new configuration: 'PetitParser'; smalltalkhubUser: 'Moose' project: 'PetitParser'; load. if you want to load a specific group, you should use the #load: message (current groups are Core, Tests, Parser and ParserIDE). Default

[Pharo-users] loading petitParser

2017-03-28 Thread Stephane Ducasse
Hi in the deep into pharo book it is written Gofer new smalltalkhubUser: 'Moose' project: 'PetitParser'; package: 'ConfigurationOfPetitParser'; load. (Smalltalk at: #ConfigurationOfPetitParser) perform: #loadDefault But this is not correct. There is no loadDefault. Should I change it?

[Pharo-users] Loading PetitParser loads a hell of a lot of things... is there a terser version?

2014-09-25 Thread p...@highoctane.be
I am loading PetitParser in my image but it takes a lng time to load and below is what I see in my Jenkins console. Build for that step starts at 13:48:51 and ends at 14:03:15. Phew! Also a couple errors in loading examples. What is recommended to use to not have all of this? I just need

Re: [Pharo-users] Loading PetitParser loads a hell of a lot of things... is there a terser version?

2014-09-25 Thread Tudor Girba
Hi, The dependencies are needed for the UI. If you can live without the UI, you can load the 'Core' group from the configuration. Cheers, Doru On Thu, Sep 25, 2014 at 2:07 PM, p...@highoctane.be p...@highoctane.be wrote: I am loading PetitParser in my image but it takes a lng time to

Re: [Pharo-users] Loading PetitParser loads a hell of a lot of things... is there a terser version?

2014-09-25 Thread Sean P. DeNigris
Tudor Girba-2 wrote If you can live without the UI, you can load the 'Core' group from the configuration. +1. That's what I usually do. - Cheers, Sean -- View this message in context:

Re: [Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-26 Thread p...@highoctane.be
I use it. Now, how can one paste text in the lower pane? I can't get that working and it is frustrating. Especially when I do have long external samples. I also got some out of memory errors when a grammar loops on itself in a wrong way. Which is what happend when trying things out. There

Re: [Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-26 Thread Tudor Girba
Hi, On Thu, Jun 26, 2014 at 8:45 AM, p...@highoctane.be p...@highoctane.be wrote: I use it. Great Now, how can one paste text in the lower pane? I can't get that working and it is frustrating. Especially when I do have long external samples. What do you mean? Cmd+v should work. It

Re: [Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-25 Thread Tudor Girba
If you want to use PetitParser at full speed, you should take a look at the dedicated PetitParser browser: PPBrowser open. And if you want to really go into it, you can also use the dedicated inspector and debugger from GT. Cheers, Doru On Tue, Jun 24, 2014 at 2:25 PM, p...@highoctane.be

[Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-24 Thread p...@highoctane.be
Looks like there is an announcement for added methods that is used by Voyage when loading packages. I was loading PetitParser and the image appeared unresponsive for quite a while. Is there a way to disable that check temporarily? Phil

Re: [Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-24 Thread Mariano Martinez Peck
What if you put your gofer expression to load PetitParser in a block closure and then: SystemAnnouncer uniqueInstance suspendAllWhile: [ Gofer it ... ] ? (I don't know what Pharo version you are using...but if that doesn't work check in BlockClosure for doSilently: or something similar). Best,

Re: [Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-24 Thread p...@highoctane.be
Thanks, didn't knew about this. BTW, PetitParser is really awesome. Up and running in a couple hours. Wow. Phil On Tue, Jun 24, 2014 at 2:00 PM, Mariano Martinez Peck marianop...@gmail.com wrote: What if you put your gofer expression to load PetitParser in a block closure and then:

Re: [Pharo-users] Loading petitparser when Voyage is loaded is taking an awful long time

2014-06-24 Thread Esteban Lorenzano
yes the announcement is taking care of flushing caches when a mongoDescription is added/deleted. probably things can be speed up, but I do not recommend to use #suspendAllWhile: (that will stop announce everything). Instead, you can simply do: VOMongoRepository unregisterToNotifications.