Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TypeAliasDescriptor (0.14 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            else -> null
        }
    }
    
    internal fun ClassifierDescriptor.toKtClassifierSymbol(analysisContext: Fe10AnalysisContext): KaClassifierSymbol? {
        return when (this) {
            is TypeAliasDescriptor -> KaFe10DescTypeAliasSymbol(this, analysisContext)
            is TypeParameterDescriptor -> KaFe10DescTypeParameterSymbol(this, analysisContext)
            is ClassDescriptor -> toKaClassSymbol(analysisContext)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

        private fun getBoundClass(type: KotlinType): ClassDescriptor? {
            return when (val declaration = type.constructor.declarationDescriptor) {
                is ClassDescriptor -> declaration
                is TypeAliasDescriptor -> getBoundClass(declaration.expandedType)
                else -> null
            }
        }
    
        private fun collectSuperClasses(type: KotlinType): Set<ClassDescriptor> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top