Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for exists (0.21 sec)

  1. analysis/analysis-api-fe10/tests/org/jetbrains/kotlin/analysis/api/fe10/test/configurator/AnalysisApiFe10TestConfigurator.kt

        }
    
        override fun computeTestDataPath(path: Path): Path {
            val newPath = path.resolveSibling(path.nameWithoutExtension + "." + testPrefix + "." + path.extension)
            if (newPath.toFile().exists()) return newPath
            return path
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 22 12:44:13 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        }
    
        /**
         * Checks whether `this` expression references the closest receiver in the current position.
         *
         * If it is the case, then we can safely remove the label from it (if it exists).
         */
        private fun FirThisReference.referencesClosestReceiver(): Boolean {
            require(!isImplicit) {
                "It doesn't make sense to handle implicit this references"
            }
    
    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)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

        fun createPackageSymbolIfOneExists(packageFqName: FqName): KtFirPackageSymbol? {
            val exists = packageProvider.doesPackageExist(packageFqName, analysisSession.targetPlatform)
            if (!exists) {
                return null
            }
            return createPackageSymbol(packageFqName)
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 28 09:06:28 GMT 2024
    - 32.4K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-54232`](https://youtrack.jetbrains.com/issue/KT-54232) Don't check if file exists in task file inputs configuration
    - [`KT-61066`](https://youtrack.jetbrains.com/issue/KT-61066) [KMP] iOS "Unkown Kotlin JVM target 20"
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

                // Java enhancement scopes as provided by `JavaScopeProvider` are either use-site or static scopes, so we need to compose them
                // to get the combined scope. A base declared member scope with Java enhancement doesn't exist, unfortunately.
                DeclaredMemberScopeKind.COMBINED -> {
                    // The static scope contains inner classes, so we need to exclude them from the non-static scope to avoid duplicates.
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
Back to top