Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for correctly (0.07 sec)

  1. analysis/analysis-api-fir/analysis-api-fir-generator/build.gradle.kts

        /*
         We do not need guava in the generator, but because of a bug in the IJ project importing, we need to have a dependency on intellijCore
         the same as it is in `:fir:tree:tree-generator` module to the project be imported correctly
         */
        compileOnly(intellijCore())
        compileOnly(libs.guava)
    
        implementation(project(":compiler:psi"))
    }
    
    application {
        mainClass.set("org.jetbrains.kotlin.analysis.api.fir.generator.MainKt")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 18 18:42:40 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     * Scope tests should not forget checking contained names, as they're a public part of the [KaScope] API.
     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KaAnnotationImpl.kt

         */
        lazyArguments: Lazy<List<KaNamedAnnotationValue>>,
        index: Int?,
    
        /**
         * The constructor symbol into which this annotation resolves if the annotation is correctly resolved
         */
        constructorSymbol: KaConstructorSymbol?,
        override val token: KaLifetimeToken
    ) : KaAnnotation {
        private val backingClassId: ClassId? = classId
    
        override val classId: ClassId?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/permissions/KotlinStandaloneAnalysisPermissionOptions.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.standalone.base.permissions
    
    import org.jetbrains.kotlin.analysis.api.platform.permissions.KotlinAnalysisPermissionOptions
    
    // TODO (KT-68386): Currently unused due to KT-68386, but will be used again.
    class KotlinStandaloneAnalysisPermissionOptions : KotlinAnalysisPermissionOptions {
        override val defaultIsAnalysisAllowedOnEdt: Boolean get() = true
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 686 bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KotlinAnalysisPermissionOptions.kt

         * overridden by [org.jetbrains.kotlin.analysis.api.permissions.allowAnalysisOnEdt].
         *
         * TODO (KT-68186): Due to KT-68386, the implementation currently doesn't apply the default to
         * [KaAnalysisPermissionRegistry][org.jetbrains.kotlin.analysis.api.permissions.KaAnalysisPermissionRegistry], but it is taken into
         * account by [KaAnalysisPermissionChecker].
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

            val generatedTopLevelClassifiers = declarationGenerators
                .asSequence()
                .flatMap {
                    // FIXME this function should be called only once during plugin's lifetime, so this usage is not really correct (2)
                    it.getTopLevelClassIds()
                }
                .filter { it.packageFqName == packageFqName }
                .map { it.shortClassName }
    
            return generatedTopLevelClassifiers.toSet()
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/permissions/KaAnalysisPermissionChecker.kt

    import com.intellij.openapi.project.Project
    import org.jetbrains.kotlin.analysis.api.platform.KaEngineService
    
    /**
     * [KaAnalysisPermissionChecker] is an *engine service* which allows checking whether analysis is currently allowed.
     */
    public interface KaAnalysisPermissionChecker : KaEngineService {
        public fun isAnalysisAllowed(): Boolean
    
        public fun getRejectionReason(): String
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 855 bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

                // Standalone modes) to have different test results (since `testPrefix` normally supports this functionality), but (1) we are
                // currently only testing the IDE mode and (2) the test results between different modes should not differ for session
                // invalidation in the first place.
                testPrefix = resultFileSuffix,
            )
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     * can make use of the [KaLifetimeTracker][org.jetbrains.kotlin.analysis.api.platform.lifetime.KaLifetimeTracker] engine service to retrieve
     * the currently active lifetime token for comparison.
     *
     * As a marker interface, [KaEngineService] clearly separates an engine service from [KotlinPlatformComponent]s which need to be implemented
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

     * are not, such as file-based declaration providers. Not all declarations provided by such declaration providers can be provided by the
     * main declaration provider, even if the correct scope is provided (such as a file-based scope). For example, the main declaration provider
     * may be based on an index which doesn't contain the declarations provided by file-based declaration providers.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top