Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for OnParameter (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

                "class OnField { @B(A.class) String foo; }",
                "class OnParameter { void foo(@B(A.class) int x) {} }"
            outputs.snapshot { run language.compileTaskName }
    
            when:
            a.text += "/* change */"
            run language.compileTaskName
    
            then:
            outputs.recompiledClasses("A", "OnClass", "OnMethod", "OnParameter", "OnField")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalGroovyCompilationIntegrationTest.groovy

                "class X {}",
                "@B(A.CST) class OnClass {}",
                "class OnMethod { @B(A.CST) void foo() {} }",
                "class OnField { @B(A.CST) String foo; }",
                "class OnParameter { void foo(@B(A.CST) int x) {} }",
                "class InMethodBody { void foo(int x) { @B(A.CST) int value = 5; } }",
            ]
    
            impl.snapshot { run("impl:${language.compileTaskName}") }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

                "class NoAnnotationClass {}",
                "@B(A.class) class OnClass {}",
                "class OnMethod { @B(A.class) void foo() {} }",
                "class OnField { @B(A.class) String foo; }",
                "class OnParameter { void foo(@B(A.class) int x) {} }"
            ]
    
            impl.snapshot { run language.compileTaskName }
    
            when:
            source api: [
                """
                    class A { public void foo() {} }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

                // cases where it's relevant, ABI-wise
                "@B(A.x) class OnClass {}",
                "class OnMethod { @B(A.y) void foo() {} }",
                "class OnField { @B(A.x) String foo; }",
                "class OnParameter { void foo(@B(A.y) int x) {} }",
                "class InMethodBody { void foo(int x) { @B(A.x) int value = 5; } }"
            ]
    
            impl.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top