Jan. 12, 2013
1:08 p.m.
I followed the advice from this question on stackoverflow 14234003 and from there created this simple method to add instance variables and the basic accessors in one go. addVarsAndTheirAccessors: aCollection on: aClass aCollection do: [ :each | aClass addInstVarNamed: each; compile: each, ' ^ ', each classified: 'accessing'; compile: each,': aByteString ',each, ' := aByteString' classified:'accessing' ] Currently I have to click on the created methods and format them in the browser. Is there an option to format the method during the compile phase or an method that can be passed a collection of methods to format automatically? -- Frank Church ======================= http://devblog.brahmancreations.com