Re: [Pharo-users] Deprecation rewrite introduces infinite recursion… how to prevent that?

2018-08-13 Thread Damien Pollet
Turns out it was pretty easy to implement: https://github.com/pharo-project/pharo/pull/1683 On Sat, 11 Aug 2018 at 15:59, Damien Pollet wrote: > I have a double-dispatch chain: > x generic: y → y firstDispatch: x → x secondDispatchFromY: y > > However this has been added after the fact, so

[Pharo-users] Deprecation rewrite introduces infinite recursion… how to prevent that?

2018-08-11 Thread Damien Pollet
I have a double-dispatch chain: x generic: y → y firstDispatch: x → x secondDispatchFromY: y However this has been added after the fact, so there are direct uses of the secondDispatchFromY: layer, which I'd like to deprecate/rewrite to use the generic: one. But if I do so, the intermediate