Re: [Pharo-users] The tedious split between class and instance?

2014-08-10 Thread Esteban Lorenzano
+1 it would be really useful to have a refactoring “make creator with instance vars”, to allow you to pick inst vars and do something like: Blah class>>children: aCollection ^ self basicNew initializeChildren: aCollection; yourself Blah>>initializeChild

[Pharo-users] The tedious split between class and instance?

2014-08-09 Thread Tim Mackinnon
The more I use Pharo again - the more it strikes me how tedious it is to have to flip between instance and class side definitions. For example - if I create a new class with an instance variable, and then in my class constructor method decide that it would be handy to do: ^self new children: it