[Pharo-project] Object>>#actionMap -> (Object>>#actionMap "a CompiledMethod(1891)")
I was wondering if this is of any interest to have the () and the compiled method with number because it breaks self evaluation for nothing. (Object>>#actionMap "a CompiledMethod(1891)") Stef
On Jan 16, 2010, at 10:16 AM, Stéphane Ducasse wrote:
I was wondering if this is of any interest to have the () and the compiled method with number because it breaks self evaluation for nothing.
(Object>>#actionMap "a CompiledMethod(1891)")
when working with compiled methods, it makes it easy to see if you are looking (likely) at the same one. In turn, it makes it easy to see if a method is changed. With my tiny "in image" AST-to-BC JIT in Reflectivity, this was very useful to have. It's even useful when doing it "see, I invalidate the class, and all active methods are on the fly regenerated befor execution". Marcus -- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD.
participants (2)
-
Marcus Denker -
Stéphane Ducasse