Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for baz (0.13 sec)

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

            get() {
                val nameReference = when (val sourcePsi = psi) {
                    // usual `foo.bar.baz` case
                    is KtDotQualifiedExpression -> sourcePsi.selectorExpression
    
                    // short `foo` case, or implicit invoke call like `foo.bar.baz()`
                    else -> sourcePsi
                }
    
                return nameReference as? KtNameReferenceExpression
            }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

                    }
                }
            }
    
            if (this is FirImplicitInvokeCall) {
    
                // If we have a PSI expression like `Foo.Bar.Baz()` and try to resolve `Bar` part,
                // and the only FIR that we have for that PSI is an implicit invoke call, that means that
    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