Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for KtThisExpression (0.47 sec)

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

        val shortenedReference: String?,
    )
    
    /**
     * A class with a reference to [KtThisExpression] with a label qualifier ([KtThisExpression.labelQualifier]) that can be safely removed
     * without changing the semantics of the code.
     */
    public data class ThisLabelToShortenInfo(
        val labelToShorten: SmartPsiElementPointer<KtThisExpression>,
    )
    
    public interface ShortenCommand {
    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-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        override val nameToImport: FqName? = null,
        override val importAllInParent: Boolean = false
    ) : ElementToShorten()
    
    private class ShortenThisLabel(
        override val element: KtThisExpression,
    ) : ElementToShorten() {
        override val nameToImport: FqName? = null
        override val importAllInParent: Boolean = false
    }
    
    /**
     * N.B. Does not subclass [ElementToShorten] because currently
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                is KtBreakExpression ->
                    false
                is KtContinueExpression ->
                    false
                is KtSuperExpression ->
                    false
                is KtThisExpression ->
                    false
    
                // No direct expression children
                is KtStringTemplateExpression ->
                    false
    
                else ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top