Convert AccessorForCallableDescriptor to Kotlin
This commit is contained in:
+7
-10
@@ -14,17 +14,14 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.jetbrains.kotlin.codegen;
|
package org.jetbrains.kotlin.codegen
|
||||||
|
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.kotlin.descriptors.CallableMemberDescriptor
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.kotlin.descriptors.ClassDescriptor
|
||||||
import org.jetbrains.kotlin.descriptors.CallableMemberDescriptor;
|
|
||||||
import org.jetbrains.kotlin.descriptors.ClassDescriptor;
|
|
||||||
|
|
||||||
public interface AccessorForCallableDescriptor<T extends CallableMemberDescriptor> {
|
interface AccessorForCallableDescriptor<T : CallableMemberDescriptor> {
|
||||||
@NotNull
|
val calleeDescriptor: T
|
||||||
T getCalleeDescriptor();
|
|
||||||
|
val superCallTarget: ClassDescriptor?
|
||||||
|
|
||||||
@Nullable
|
|
||||||
ClassDescriptor getSuperCallTarget();
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user