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?