- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for nestedClassFilePathCandidatesFor (0.12 sec)
-
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt
// visible for testing fun classFilePathCandidatesFor(sourceName: String): Sequence<String> = sourceName.replace(".", "/").let { path -> candidateClassFiles(path) + nestedClassFilePathCandidatesFor(path) } private fun nestedClassFilePathCandidatesFor(path: String): Sequence<String> = generateSequence({ nestedClassNameFor(path) }, ::nestedClassNameFor) .flatMap(::candidateClassFiles) private
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 6.3K bytes - Viewed (0)