Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KtPartiallyAppliedVariableSymbol (0.23 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

            val partiallyAppliedSymbol = toPartiallyAppliedSymbol(context) ?: return null
            if (partiallyAppliedSymbol.signature !is KtVariableLikeSignature<*>) return null
            @Suppress("UNCHECKED_CAST")
            return partiallyAppliedSymbol as KtPartiallyAppliedVariableSymbol<KtVariableLikeSymbol>
        }
    
    
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Apr 29 12:48:54 GMT 2024
    - 34.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

                    @Suppress("UNCHECKED_CAST") // safe because of the above check on targetKtSymbol
                    KtSimpleVariableAccessCall(
                        partiallyAppliedSymbol as KtPartiallyAppliedVariableSymbol<KtVariableLikeSymbol>,
                        fir.unwrapLValue()?.toTypeArgumentsMapping(partiallyAppliedSymbol) ?: emptyMap(),
                        KtSimpleVariableAccess.Write(rhs)
                    )
                }
    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)
Back to top