Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toPartiallyAppliedSymbol (0.27 sec)

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

            val operationPartiallyAppliedSymbol = operationCall.toPartiallyAppliedSymbol(arrayAccessExpression) ?: return null
    
            // The explicit receiver for both `get` and `set` call should be the array expression.
            val getPartiallyAppliedSymbol =
                (operationCall.explicitReceiver as? FirFunctionCall)?.toPartiallyAppliedSymbol(arrayAccessExpression.arrayExpression)
                    ?: return null
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

            val partiallyAppliedSymbol = toPartiallyAppliedSymbol(context) ?: return null
            if (partiallyAppliedSymbol.symbol !is S) return null
            @Suppress("UNCHECKED_CAST")
            return partiallyAppliedSymbol as KtPartiallyAppliedFunctionSymbol<S>
        }
    
        private fun ResolvedCall<*>.toPartiallyAppliedSymbol(context: BindingContext): KtPartiallyAppliedSymbol<*, *>? {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 14 06:10:31 GMT 2024
    - 36.4K bytes
    - Viewed (0)
Back to top