Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Module (0.26 sec)

  1. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            val visited = hashSetOf<KtModule>()
            val stack = ktModules.toMutableList()
            while (stack.isNotEmpty()) {
                val module = stack.popLast()
                if (module in visited) continue
                visited += module
                for (dependency in module.allDependencies()) {
                    if (dependency !in visited) {
                        stack += dependency
                    }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

            if (module.directives.contains(AbstractCompilerFacilityTest.Directives.ATTACH_DUPLICATE_STDLIB)) {
                configuration.add(CLIConfigurationKeys.CONTENT_ROOTS, JvmClasspathRoot(ForTestCompileRuntime.minimalRuntimeJarForTests()))
            }
        }
    }
    
    internal fun createCodeFragment(ktFile: KtFile, module: TestModule, testServices: TestServices): KtCodeFragment? {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            } finally {
                generationState.destroy()
            }
        }
    
        private fun computeTargetModules(module: KtModule): List<KtModule> {
            return when (module) {
                is KtDanglingFileModule -> listOf(module.contextModule, module)
                else -> listOf(module)
            }
        }
    
        private fun runFir2Ir(
            session: LLFirSession,
            firFiles: List<FirFile>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                    )
                }
            }
            val ktFile = session.modulesWithFiles.getValue(sourceModule).single() as KtFile
    
            // Test dependsOn dependency: expect in the common module, actual "typealias" in the platform-specific module
            val testFunction = ktFile.findDescendantOfType<KtFunction>()!!
            val localVariable = testFunction.findDescendantOfType<KtProperty>()!!
            analyze(localVariable) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

            return findControlFlowGraph(anchor, firStatements)
                ?: errorWithAttachment("Cannot find a control flow graph for element") {
                    withKtModuleEntry("module", analysisSession.useSiteModule)
                    withPsiEntry("anchor", anchor)
                    withFirEntry("firAnchor", firStatements.last())
                }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

            withValidityAssertion { analysisSession.symbolProvider.getTypeAliasByClassId(classId) }
    
        /**
         * @return list of top-level functions and properties which are visible from current use-site module
         *
         * @param packageFqName package name in which callable symbols should be declared
         * @param name callable symbol name
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

            projectStructureProvider = buildProjectStructureProvider(kotlinCoreProjectEnvironment, init)
        }
    
        @Deprecated(
            "Compiler configuration is not a good fit for specifying multi-module project.",
            ReplaceWith("buildKtModuleProvider { }")
        )
        public fun buildKtModuleProviderByCompilerConfiguration(
            compilerConfiguration: CompilerConfiguration,
        ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. .space/CODEOWNERS

    # This file is checked by org.jetbrains.kotlin.code.SpaceCodeOwnersTest
    # Directive OWNER_LIST specifies possible values for owner field
    # Directive UNKNOWN specifies that path is unclaimed
    # Ownership must be exhaustive modulo UNKNOWN
    
    # OWNER_LIST: Kotlin
    # OWNER_LIST: "Kotlin Libraries"
    # OWNER_LIST: "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    # OWNER_LIST: "Kotlin Compiler Core"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top