Nov. 5, 2013
9:33 a.m.
On 05 Nov 2013, at 10:19, Clément Bera <bera.clement@gmail.com> wrote:
Hello,
The method that exists is #withArgs:executeMethod: so replace "executeMethod: someCode" ==> by ==> "withArgs: #( ) executeMethod: someCode" or create the method: Object>>executeMethod: compiledMethod ^ self withArgs: #( ) executeMethod: compiledMethod Then it should work.
I think the easiest is to add back that methods⦠I really do not like to have an API on Object for executing methods (is should be in Methodâ¦), but as the primitive is there now, it is not easy to change. I all add issues for 2.0 and 3. Marcus