Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for asPsiTypeElement (0.19 sec)

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

                    return null
                }
            }
    
            if (!analysisSession.useSiteModule.platform.has<JvmPlatform>()) return null
    
            val typeElement = asPsiTypeElement(
                simplifyType(kotlinType),
                useSitePosition,
                mode.toTypeMappingMode(type, isAnnotationMethod, suppressWildcards),
            )
    
            val psiType = typeElement?.type ?: return null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

                }
            }
    
            if (!rootModuleSession.moduleData.platform.has<JvmPlatform>()) return null
    
            val typeElement = coneType.simplifyType(rootModuleSession, useSitePosition).asPsiTypeElement(
                session = rootModuleSession,
                mode = mode.toTypeMappingMode(type, isAnnotationMethod, suppressWildcards),
                useSitePosition = useSitePosition,
                allowErrorTypes = allowErrorTypes,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top