Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for isProject (0.19 sec)

  1. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperConstructorCallWithLocalFunction.kt

    open class IJProject(val init: () -> Unit = {})
    
    @Suppress("UNUSED_VARIABLE")
    class KotlinIDE : IJProject(init = {
        fun foo() {
            val f = anySymbols
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 167 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/unresolvedReferenceInsideSuperPrimaryConstructorCallWithLocalFunction.kt

    open class IJProject(val init: () -> Unit = {})
    
    @Suppress("UNUSED_VARIABLE")
    class KotlinIDE() : IJProject(init = {
        fun foo() {
            val f = anySymbols
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Oct 13 17:13:14 UTC 2023
    - 169 bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/internal/VisualStudioProjectRegistryTest.groovy

            when:
            registry.addProjectConfiguration(executableBinary1)
            registry.addProjectConfiguration(executableBinary2)
    
            then:
            def vsProject = registry.getProjectConfiguration(executableBinary1).project
            vsProject.sourceFiles.files == [sourceCommon, source1, source2] as Set
        }
    
        private VisualStudioTargetBinary targetBinary(String variant, File... sources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top