Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for F$Inner (0.37 sec)

  1. analysis/analysis-api/testData/components/containingDeclarationProvider/containingDeclarationByPsi/deeplyNestedCode.kt

    class X {
        fun foo() {
            class U {
                inner class K {
                    inner class D {
                        fun check() {
                            class F {
                                inner class L
                            }
                        }
                    }
                }
    
                class T
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 26 19:19:00 UTC 2022
    - 332 bytes
    - Viewed (0)
  2. 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"() {
            source api: [
    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/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            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