Constructor instance variable Pharo

Viewed 330

I am new to Pharo and I was wondering if there is some automatic refactoring method to create a constructor with one parameter per instance variable. Right now to do that I a create class side method that create a new instance of the class and call on the new instance a method that initialize the instance variables. It is quite boring and long, but I couldn't find a way to do it automatically (like instead I can do it for creating accessors to instance variable etc).

Is there a way?

1 Answers
Related