Well, found out about aliasing in http://pharo.gemtalksystems.com/book/LanguageAndLibraries/Traits/, is that the correct way of doint it?

On Thu, Aug 16, 2018 at 11:30 AM, Vitor Medina Cruz <vitormcruz@gmail.com> wrote:
Hello,

In a class that uses a Trait, how can I override one of it's method by appending behavior to the method implemented by the Trait? In a typical override, this is done by calling super:

method

���� super method
���� "extended behavior"
���� ...


Is there a way to change "super" to a reference the Trait?

Regards,
Vitor