Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newMethod (0.17 sec)

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

    import org.jetbrains.kotlin.psi.psiUtil.containingClassOrObject
    
    
    internal
    object KotlinSourceQueries {
    
        fun isOverrideMethod(method: JApiMethod): (KtFile) -> Boolean = { ktFile ->
            val ctMethod = method.newMethod.get()
            ktFile.kotlinDeclarationSatisfies(ctMethod.declaringClass, ctMethod) { ktMember ->
                ktMember.hasModifier(KtTokens.OVERRIDE_KEYWORD)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    // method receiver is instantiated with its receiver type parameters.
    //
    // Methods are numbered deterministically: given the same list of source files
    // presented to the type checker, or the same sequence of NewMethod and AddMethod
    // calls, the mapping from method index to corresponding method remains the same.
    // But the specific ordering is not specified and must not be relied on as it may
    // change in the future.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/go/types/named.go

    // method receiver is instantiated with its receiver type parameters.
    //
    // Methods are numbered deterministically: given the same list of source files
    // presented to the type checker, or the same sequence of NewMethod and AddMethod
    // calls, the mapping from method index to corresponding method remains the same.
    // But the specific ordering is not specified and must not be relied on as it may
    // change in the future.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top