Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for C$Inner (0.1 sec)

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

            run("impl:${language.compileTaskName}")
    
            then:
            impl.recompiledClasses('B', 'C', 'C$Inner', 'D', 'D$Inner', 'E', 'E$1', 'F', 'F$Inner')
    
            where:
            visibility << ['public', 'private', '']
        }
    
        def "does full recompilation if change of constant value in annotation"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            when:
            source api: ["class A { public static final int EVIL = 0; }"]
            run("impl:${language.compileTaskName}")
    
            then:
            impl.recompiledClasses('C', 'C$Inner', 'D', 'D$Inner', 'E', 'E$1', 'F', 'F$Inner')
    
            where:
            visibility << ['public', 'private', '']
        }
    
        def "recognizes change of constant value in annotation"() {
            source api: [
    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