Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for Fontaine (0.26 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

                // Because the file to compile may be contained in a "common" multiplatform module, an `expect` declaration doesn't necessarily
                // have an obvious associated `actual` symbol. `shouldStubOrphanedExpectSymbols` generates stubs for such `expect` declarations.
                shouldStubOrphanedExpectSymbols = true,
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Dec 01 13:22:55 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
            val collector = InlineFunctionsCollector(project, analyzeOnlyReifiedInlineFunctions) { declaration ->
                if (!analyzedElements.contains(declaration)) {
                    nextInlineFunctions.add(declaration)
                }
            }
            val propertyAccessor = InlineDelegatedPropertyAccessorsAnalyzer(analysisContext, collector)
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Aug 29 23:55:31 GMT 2023
    - 5.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/CliFe10AnalysisFacade.kt

    import org.jetbrains.kotlin.analysis.project.structure.ProjectStructureProvider
    import org.jetbrains.kotlin.analyzer.AnalysisResult
    import org.jetbrains.kotlin.container.ComponentProvider
    import org.jetbrains.kotlin.container.get
    import org.jetbrains.kotlin.context.ProjectContext
    import org.jetbrains.kotlin.descriptors.ModuleDescriptor
    import org.jetbrains.kotlin.psi.KtElement
    import org.jetbrains.kotlin.psi.KtFile
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Jan 26 16:20:19 GMT 2024
    - 7K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

        ): T = constructor(
            if (valueParameterReference.parameterIndex == -1) firFunctionSymbol.receiverParameter
                ?: errorWithAttachment("${firFunctionSymbol::class} should contain a receiver") {
                    withFirEntry("fir", firFunctionSymbol.firSymbol.fir)
                }
            else firFunctionSymbol.valueParameters[valueParameterReference.parameterIndex]
        )
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Jul 26 14:29:20 GMT 2023
    - 7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        override val container: ClassId,
        override val annotation: ClassId,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<KtAnnotationEntry>(firDiagnostic, token), KtFirDiagnostic.RepeatableContainerMustHaveValueArrayError
    
    internal class RepeatableContainerMustHaveValueArrayWarningImpl(
        override val container: ClassId,
        override val annotation: ClassId,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  6. .space/CODEOWNERS

    /compiler/compiler-runner/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/compiler-runner-unshaded/ "Kotlin Build Tools"
    /compiler/config/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/config.jvm/ "Kotlin JVM"
    /compiler/container/ "Kotlin Compiler Core" Simon.Ogorodnik
    /compiler/daemon/ "Kotlin Build Tools"
    /compiler/fir/ "Kotlin Compiler Core" Simon.Ogorodnik
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  7. ReadMe.md

    or the following command on Windows:
    
        gradlew <tasks-and-options>
    
    On the first project configuration gradle will download and setup the dependencies on
    
    * `intellij-core` is a part of command line compiler and contains only necessary APIs.
    * `idea-full` is a full blown IntelliJ IDEA Community Edition to be used in the plugin module.
    
    These dependencies are quite large, so depending on the quality of your internet connection 
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 11 14:28:46 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

                            return listOfNotNull(symbolBuilder.createPackageSymbolIfOneExists(classId.packageFqName))
                        } else {
                            // This is unexpected. The code probably contains some weird structures. In this case, we just fail the resolution
                            // with zero results.
                            return emptyList()
                        }
                    }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     * provides symbol names from binary libraries in Standalone mode, which the Standalone declaration provider does not contain (to avoid
     * stub-indexing binary libraries). And in general, querying the symbol names provider might be faster since its sets are cached, which is
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 23 10:55:55 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            /**
             * A scope containing both non-static and static members. A smart combined scope (as opposed to a naive combination of [KtScope]s
             * with [getCompositeScope]) avoids duplicate inner classes, as they are contained in non-static and static scopes.
             *
             * A proper combined declared member scope kind also makes it easier to cache combined scopes directly (if needed).
             */
            COMBINED,
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
Back to top