Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TypeParameterDescriptor (0.27 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                is SimpleType -> {
                    val typeParameterDescriptor = TypeUtils.getTypeParameterDescriptorOrNull(type)
                    if (typeParameterDescriptor != null) {
                        return typeParameterDescriptor.upperBounds.flatMap { getUpperBounds(it) }
                    }
    
                    val typeConstructor = type.constructor
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/KtFe10DebugTypeRenderer.kt

    import org.jetbrains.kotlin.descriptors.ClassifierDescriptorWithTypeParameters
    import org.jetbrains.kotlin.descriptors.PossiblyInnerType
    import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
    import org.jetbrains.kotlin.descriptors.annotations.AnnotationDescriptor
    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.SpecialNames
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  3. 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 KtFe10TypeParameterType(unwrappedType, typeParameterDescriptor, analysisContext)
                }
    
                val typeConstructor = unwrappedType.constructor
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 07:15:56 GMT 2024
    - 33.2K bytes
    - Viewed (0)
Back to top