- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for isOverride (0.07 sec)
-
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
} protected boolean isOverride(JApiMethod method) { // No point in parsing the source file if the method is not there any more. if (method.changeStatus == JApiChangeStatus.REMOVED) { return false } // @Override has source retention - so we need to peek into the sources return repository.isOverride(method) }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 10.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/SinceAnnotationRule.java
return member instanceof JApiHasAnnotations && isInject((JApiHasAnnotations) member); } private boolean isOverrideMethod(JApiCompatibility member) { return member instanceof JApiMethod && isOverride((JApiMethod) member); } /** * Kotlin file-facade classes can't have kdoc comments. */ private boolean isKotlinFileFacadeClass(JApiCompatibility member) {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 3.8K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt
} @VisibleForTesting fun emptyCaches() = sources.close() override fun close() = emptyCaches() fun isOverride(method: JApiMethod): Boolean = apiSourceFileFor(method).let { apiSourceFile -> when (apiSourceFile) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 3.8K bytes - Viewed (0)