Hi folks. I need to be able to execute a method with an object but not sending a message to that object. So for example, I&#39;ve checked Message&gt;&gt;sendTo:   or  CompiledMethod&gt;&gt;valueWithReceiver:arguments:<br>
and both of them are finally sent to the receiver. I need to do something like:  (MyClass &gt;&gt;#foo) valueWith: anObject args: args.<br>but I don&#39;t want that the primitive is sent to anObject.<br><br>I would like to be able to send such message to the compiled method, and being the receiver. For example, something like this:<br>
<br>CompiledMethod &gt;&gt; valueWithReceiver: aReceiver arguments: anArray <br>
    &quot;Execute compiledMethod against the receiver and args in argArray. The receiver is the CompiledMethod&quot;<br><br>    &lt;primitive: 666&gt;<br>    self primitiveFailed<br><br>Do you think this is doable ?  If true, can you give me any hint ?<br>
<br>I took a look to #primitiveExecuteMethod  but I cannot figure out how to adapt it.<br><br>Thanks in advance,<br><br>Mariano<br><br><br>