Convert AccessorForCallableDescriptor to Kotlin

This commit is contained in:
Mikhael Bogdanov
2018-05-25 15:07:52 +02:00
parent 2fa521b62a
commit 15cbb68d47
@@ -14,17 +14,14 @@
* limitations under the License.
*/
package org.jetbrains.kotlin.codegen;
package org.jetbrains.kotlin.codegen
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.kotlin.descriptors.CallableMemberDescriptor;
import org.jetbrains.kotlin.descriptors.ClassDescriptor;
import org.jetbrains.kotlin.descriptors.CallableMemberDescriptor
import org.jetbrains.kotlin.descriptors.ClassDescriptor
public interface AccessorForCallableDescriptor<T extends CallableMemberDescriptor> {
@NotNull
T getCalleeDescriptor();
interface AccessorForCallableDescriptor<T : CallableMemberDescriptor> {
val calleeDescriptor: T
val superCallTarget: ClassDescriptor?
@Nullable
ClassDescriptor getSuperCallTarget();
}