Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for albers (0.58 sec)

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

                    false
    
                // - The "reference" in a constructor call. E.g. `C` in `C()`
                is KtConstructorCalleeExpression ->
                    false
    
                // - Labels themselves: `@label` in return`@label` or `label@`while...
                is KtLabelReferenceExpression ->
                    false
    
                // - The operation symbol itself in binary and unary operations: `!!`, `+`...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

     * and will collect them to [ShortenCommand.listOfQualifierToShortenInfo].
     * @property removeThisLabels If set to `true`, reference shortener will detect redundant labels on `this` expressions,
     * and will collect them to [ShortenCommand.thisLabelsToShorten]
     */
    public data class ShortenOptions(
        public val removeThis: Boolean = false,
        public val removeThisLabels: Boolean = false,
    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

            //TODO: collect all usages of available symbols in the file and prevent importing symbols that could introduce name clashes, which
            // may alter the meaning of existing code.
            val collector = ElementsToShortenCollector(
                shortenOptions,
                context,
                towerContext,
                file,
                selection,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/types/KtFirFunctionalType.kt

        override val contextReceivers: List<KaContextReceiver> by cached {
            coneType.contextReceiversTypes(builder.rootSession)
                .map {
                    // Context receivers in function types may not have labels, hence the `null` label.
                    KaContextReceiverImpl(it.buildKtType(), label = null, token)
                }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/types/KtFe10FunctionalType.kt

            get() = withValidityAssertion {
                fe10Type.getContextReceiverTypesFromFunctionType().map { receiverType ->
                    // Context receivers in function types may not have labels, hence the `null` label.
                    KaContextReceiverImpl(
                        receiverType.toKtType(analysisContext),
                        label = null,
                        analysisContext.token,
                    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            // as getMessage will call lazyResolveToPhase(ANNOTATION_ARGUMENTS)
            // TODO(KT-67823) stop exposing compiler internals, as the message isn't actually required by the callers.
            return SimpleDeprecationInfo(deprecationLevel, propagatesToOverrides, null)
        }
    
        override fun getJavaGetterName(symbol: KaPropertySymbol): Name {
            require(symbol is KaFirSymbol<*>)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-53629`](https://youtrack.jetbrains.com/issue/KT-53629) K2: forbid multiple labels per statement
    - [`KT-65255`](https://youtrack.jetbrains.com/issue/KT-65255) K2 / KJS: "IllegalArgumentException: Candidate is not successful, but system has no contradiction"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top