Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KaFe10TypeParameterType (0.3 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10TypeParameterType.kt

    import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.types.SimpleType
    
    internal class KaFe10TypeParameterType(
        override val fe10Type: SimpleType,
        private val parameter: TypeParameterDescriptor,
        override val analysisContext: Fe10AnalysisContext
    ) : KaTypeParameterType(), KaFe10Type {
        override val name: Name
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            is SimpleType -> {
                val typeParameterDescriptor = TypeUtils.getTypeParameterDescriptorOrNull(unwrappedType)
                if (typeParameterDescriptor != null) {
                    return KaFe10TypeParameterType(unwrappedType, typeParameterDescriptor, analysisContext)
                }
    
                val typeConstructor = unwrappedType.constructor
    
                if (typeConstructor is NewTypeVariableConstructor) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top