Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KaExplicitReceiverValue (0.22 sec)

  1. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/KaAbstractResolver.kt

                else -> error("unexpected operator $operationToken")
            }
            return incOrDecOperationKind
        }
    
        protected fun KtExpression.toExplicitReceiverValue(type: KaType): KaExplicitReceiverValue =
            KaExplicitReceiverValue(this, type, isReceiverOfKtSafeQualifiedExpression(), token)
    
        private fun KtExpression.isReceiverOfKtSafeQualifiedExpression(): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaReceiverValue.kt

         */
        public abstract val type: KaType
    }
    
    
    /**
     * An explicit expression receiver. For example
     * ```
     *   "".length // explicit receiver `""`
     * ```
     */
    public class KaExplicitReceiverValue(
        expression: KtExpression,
        type: KaType,
        isSafeNavigation: Boolean,
        override val token: KaLifetimeToken,
    ) : KaReceiverValue() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top