Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for executeQuery (0.08 sec)

  1. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

        fun <T : Any?> executeQuery(apiSourceFile: ApiSourceFile.Java, query: JavaSourceQuery<T>): T =
            openJavaCompilationUnitsByFile
                .computeIfAbsent(apiSourceFile.currentFile) { JavaParser().parse(it).getResult().get() }
                .accept(query.visitor, null)
                ?: query.defaultValue
    
    
        fun <T : Any?> executeQuery(apiSourceFile: ApiSourceFile.Kotlin, transform: (KtFile) -> T): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 20 16:37:41 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top