Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bond (0.09 sec)

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

        private fun PsiElement.isWhileLoopCondition() =
            unwrapQualified<KtWhileExpressionBase> { whileExpr, cond -> whileExpr.condition == cond } != null
    
        private fun PsiElement.isIfCondition() =
            unwrapQualified<KtIfExpression> { ifExpr, cond -> ifExpr.condition == cond } != null
    
        override fun isDefinitelyNull(expression: KtExpression): Boolean =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                // but also as implicit parameter types, for example in setters with implicit types
                is ConeFlexibleType -> {
                    // since Kotlin decompiler always "renders" flexible types as their lower bound, we can do the same here
                    lowerBound.renderTypeAsKotlinType()
                }
    
                else -> errorWithFirSpecificEntries("Type should not be present in Kotlin declaration", coneType = this)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top