- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ApiFunction (0.04 sec)
-
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiExtensionGeneratorFacade.kt
private fun candidatesForExtensionFrom(type: ApiType): Sequence<ApiFunction> = type.functions.filter(::isCandidateForExtension).asSequence() private fun Sequence<ApiFunction>.sortedWithTypeOfTakingFunctionsFirst() = sortedBy { f -> if (f.parameters.any { it.type.isGradleTypeOf }) 0 else 1 } private fun ApiFunction.newMappedParameters() =
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Mar 12 15:56:18 UTC 2025 - 17.8K bytes - Viewed (0) -
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt
} val typeParameters: List<ApiTypeUsage> by unsafeLazy { context.apiTypeParametersFor(visitedSignature) } val functions: List<ApiFunction> by unsafeLazy { delegate.methods.filter(::isSignificantDeclaration).map { ApiFunction(asmLevel, incubatingAnnotationTypeDescriptor, this, it, context) } } private fun singleAbstractMethodOf(classNode: ClassNode) =Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Mar 12 15:56:18 UTC 2025 - 20.2K bytes - Viewed (0)