Re: [Newbies] Anonymous subclasses?

2010-12-19 Thread Casey Ransberger
Got what I needed done (thanks Bert!) This is what I went with: metaclass := Metaclass new superclass: Some class; methodDictionary: MethodDictionary new; setFormat: Some class format; yourself. theme := metaclass new superclass: Some; methodDictionary: MethodDictionary new; setFormat: Some forma

Re: [Newbies] Anonymous subclasses?

2010-12-19 Thread HernĂ¡n Morales Durand
Hi Casey, Can you comment what's your use case for anonymous subclass? Or maybe post some example/testing code? Cheers, 2010/12/18 Casey Ransberger : > Hello all, > I want to make an anonymous subclass, or a copy of (either way) a subclass > of Object. > I've been googling around looking for an e