Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for collectShortenings (0.13 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

                        }
                    }
                }
            }
        }
    }
    
    public abstract class KaReferenceShortener : KaSessionComponent() {
        public abstract fun collectShortenings(
            file: KtFile,
            selection: TextRange,
            shortenOptions: ShortenOptions,
            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ReferenceShortener.kt

        override val analysisSession: KaFe10Session,
    ) : KaReferenceShortener(), KaFe10SessionComponent {
        override val token: KaLifetimeToken
            get() = analysisSession.token
    
        override fun collectShortenings(
            file: KtFile,
            selection: TextRange,
            shortenOptions: ShortenOptions,
            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        override val firResolveSession: LLFirResolveSession,
    ) : KaReferenceShortener(), KaFirSessionComponent {
        private val context = FirShorteningContext(analysisSession)
    
        override fun collectShortenings(
            file: KtFile,
            selection: TextRange,
            shortenOptions: ShortenOptions,
            classShortenStrategy: (KaClassLikeSymbol) -> ShortenStrategy,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
Back to top