mixin Foo { virtual Void method() { ... } } class Bar { override Void method() { ... // how do I call Foo's "method"? // something like super.method() but for a mixnin not the super class ... } }
Use a named super like Foo.super.method.
Foo.super.method
See docLang.
Login or Signup to reply.
helium Wed 5 Aug 2009
brian Wed 5 Aug 2009
Use a named super like
Foo.super.method
.See docLang.