Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for if (0.21 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirCallableFilteringScope.kt

                if (isTargetCallable(function)) {
                    processor(function)
                }
            }
        }
    
        override fun processPropertiesByName(name: Name, processor: (FirVariableSymbol<*>) -> Unit) {
            if (!cachedCallableNames.contains(name)) return
    
            baseScope.processPropertiesByName(name) { property ->
                if (isTargetCallable(property)) {
                    processor(property)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 2K bytes
    - Viewed (0)
Back to top