This commit is contained in:
Andrey Breslav
2011-06-02 17:30:04 +04:00
parent 7a8ea7fd88
commit 7ad600220b
@@ -19,6 +19,14 @@ public class JetThisExpression extends JetLabelQualifiedExpression {
visitor.visitThisExpression(this);
}
/**
* class A : B, C {
* override fun foo() {
* this<B>.foo()
* this<C>.foo()
* }
* }
*/
@Nullable
public JetTypeReference getSuperTypeQualifier() {
return (JetTypeReference) findChildByType(JetNodeTypes.TYPE_REFERENCE);