Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for KtDeclaration (0.41 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

    internal val KtElement.ktSymbolKind: KaSymbolKind
        get() {
            if (this is KtPropertyAccessor) {
                return KaSymbolKind.ACCESSOR
            }
    
            if (this is KtDeclaration) {
                return when (this.getParentOfType<KtDeclaration>(strict = true)) {
                    null -> KaSymbolKind.TOP_LEVEL
                    is KtCallableDeclaration, is KtPropertyAccessor -> KaSymbolKind.LOCAL
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top