On 6 janv. 2014, at 10:56, Clément Bera <[email protected]> wrote:
> Hello, > > here I have a class > > A>>== > ^ true > > Now: > a := A new. > b := A new. > a == b "Answers false" > a perform: #== with: b "Answers true" > > Do I have to remove the usage of the byte code for #== in the compiler to be > able to override == ? Yes you have to because there is no message sent, just pointer comparison.
