J2K: do not generate super call to abstract property
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
package test;
|
||||
|
||||
import kotlinApi.*;
|
||||
|
||||
public class KotlinClassAbstractPropertyImpl extends KotlinClassAbstractProperty {
|
||||
private boolean myIsVisible;
|
||||
|
||||
@Override
|
||||
public boolean isVisible() {
|
||||
return myIsVisible;
|
||||
}
|
||||
|
||||
private void test() {
|
||||
myIsVisible = true;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user