Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for invocation (0.2 sec)

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

            else ->
                return true
        }
        val resolution = reference.resolve()
        return resolution != null && resolution !is KtClass
    }
    
    /**
     * Invocations of _statically named_ callables is not considered a use. E.g.
     * consider
     *
     *   1)   fun f() { 54 }; f()
     *   2)   val f = { 54 }; f()
     *
     * in which the `f` in 2) is regarded as used and `f` in 1) is not.
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 12 20:38:23 GMT 2024
    - 17.6K bytes
    - Viewed (0)
Back to top