Convert AccessorForCallableDescriptor to Kotlin
This commit is contained in:
+7
-10
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user