Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ThisLabelToShortenInfo (0.18 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)
Back to top