Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ThisLabelToShortenInfo (0.39 sec)

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

                override val listOfQualifierToShortenInfo: List<QualifierToShortenInfo> get() = emptyList()
                override val thisLabelsToShorten: List<ThisLabelToShortenInfo> = emptyList()
                override val kDocQualifiersToShorten: List<SmartPsiElementPointer<KDocName>> get() = emptyList()
    
                override val isEmpty: Boolean get() = true
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

    /**
     * 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 {
        public val targetFile: SmartPsiElementPointer<KtFile>
        public val importsToAdd: Set<FqName>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                collector.qualifiersToShorten.distinctBy { it.element }.map { QualifierToShortenInfo(it.element.createSmartPointer(), it.shortenedRef) },
                collector.labelsToShorten.distinctBy { it.element }.map { ThisLabelToShortenInfo(it.element.createSmartPointer()) },
                kDocCollector.kDocQualifiersToShorten.distinctBy { it.element }.map { it.element.createSmartPointer() },
            )
        }
    
    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