Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for incorrecto (2.45 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

        /**
         * Returns inferred [KaType] of the receiver.
         *
         * In case of smart cast on the receiver returns smart cast type.
         *
         * For builder inference in FIR implementation it currently works incorrectly, see KT-50916.
         */
        public abstract val type: KaType
    }
    
    
    /**
     * An explicit expression receiver. For example
     * ```
     *   "".length // explicit receiver `""`
     * ```
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-61689`](https://youtrack.jetbrains.com/issue/KT-61689) Analysis API: ContextCollector provides incorrect context in scripts
    - [`KT-61683`](https://youtrack.jetbrains.com/issue/KT-61683) Analysis API: resolve ambiguities in kotlin project
    - [`KT-61245`](https://youtrack.jetbrains.com/issue/KT-61245) Analysis API: ContextCollector provides incorrect context for supertype constructor calls
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

         * If they are present, we have to resort to [FirRegularClassSymbol.resolvedStatus] instead - otherwise we can observe incorrect status
         * properties.
         *
         * TODO This optimization should become obsolete after KT-56551 is fixed.
         */
        private val FirRegularClassSymbol.optionallyResolvedStatus: FirDeclarationStatus
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

            return action()
        } finally {
            permissionRegistry.isAnalysisAllowedOnEdt = false
        }
    }
    
    @RequiresOptIn("Analysis should not be allowed to be run from a write action, as otherwise it may cause incorrect behavior and IDE freezes.")
    public annotation class KaAllowAnalysisFromWriteAction
    
    /**
     * The private [KaAllowProhibitedAnalyzeFromWriteAction] opt-in forces users of [allowAnalysisFromWriteAction] to specify an opt-in not only
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                        classId?.takeUnless { it.shortClassName.isSpecial }
                            ?.asFqNameString()
                    }
                }
            }
        }
    
        // TODO this is a dummy and incorrect implementation just to satisfy some tests
        override fun getContainingModule(symbol: KaSymbol): KtModule {
            val descriptor = when (symbol) {
                is KaValueParameterSymbol -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

     */
    private val FirFunctionCall.functionReferenceName: Name?
        get() {
            toResolvedCallableReference()?.let { return it.name }
    
            // unresolved reference has incorrect name, so we have to retrieve it by PSI
            val wholeCallExpression = realPsi as? KtExpression
            val callExpression = wholeCallExpression?.getPossiblyQualifiedCallExpression()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top