Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Read (0.16 sec)

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

        }
    
        /**
         * For prefix and postfix `++` and `--`, the idea is the same because FIR represents it as several operations. For example, for `i++`,
         * if the input PSI is `i`, we instead resolve `i++` and extract the read part of this access for `i`.
         */
        private fun KtElement.getContainingUnaryIncOrDecExpression(): KtUnaryExpression? {
            if (this !is KtExpression) return null
            val baseExpression = deparenthesize(this)
    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