org.jetbrains.kotlin.asJava.classes.KtUltraLightElementWithNullabilityAnnotationDescriptorBased.kt Maven / Gradle / Ivy
/*
* Copyright 2010-2022 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.asJava.classes
import com.intellij.psi.PsiModifierListOwner
import com.intellij.psi.PsiPrimitiveType
import org.jetbrains.annotations.NotNull
import org.jetbrains.annotations.Nullable
import org.jetbrains.kotlin.psi.KtDeclaration
import org.jetbrains.kotlin.types.KotlinType
import org.jetbrains.kotlin.types.TypeUtils
import org.jetbrains.kotlin.types.isError
import org.jetbrains.kotlin.types.typeUtil.TypeNullability
import org.jetbrains.kotlin.types.typeUtil.isTypeParameter
import org.jetbrains.kotlin.types.typeUtil.nullability
interface KtUltraLightElementWithNullabilityAnnotationDescriptorBased :
KtUltraLightElementWithNullabilityAnnotation {
fun computeQualifiedNameForNullabilityAnnotation(kotlinType: KotlinType?): String? {
val notErrorKotlinType = kotlinType?.takeUnless(KotlinType::isError) ?: return null
val psiType = psiTypeForNullabilityAnnotation ?: return null
if (psiType is PsiPrimitiveType) return null
if (notErrorKotlinType.isTypeParameter()) {
if (!TypeUtils.hasNullableSuperType(notErrorKotlinType)) return NotNull::class.java.name
if (!notErrorKotlinType.isMarkedNullable) return null
}
return when (notErrorKotlinType.nullability()) {
TypeNullability.NOT_NULL -> NotNull::class.java.name
TypeNullability.NULLABLE -> Nullable::class.java.name
TypeNullability.FLEXIBLE -> null
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy