Is there a way to do something like this in ChucK?

class A extends B {
// override B's method
public void doSomething(){
super.doSomething();
// do other things too
}
}