Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for createdBy (0.42 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

         * Create a Kotlin/Native declaration provider for [ktModule].
         *
         * Generally, only Kotlin/Native KLIB libraries can declare forward declarations.
         * For other types of [KtModule]s the provider normally shouldn't be created.
         *
         * @return a declaration provider for [ktModule] or `null` if the module cannot contain forward declarations
         */
        public abstract fun createDeclarationProvider(ktModule: KtModule): KotlinDeclarationProvider?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProvider.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    
    /**
     * A declaration provider for a given scope. It can be created via [KotlinDeclarationProviderFactory].
     *
     * It may be called frequently, so implementations should cache the results.
     */
    public abstract class KotlinDeclarationProvider : KotlinComposableProvider {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         */
        public fun KaType.getTypeScope(): KaTypeScope? =
            withValidityAssertion { analysisSession.scopeProvider.getTypeScope(this) }
    
        /**
         * Returns a [KaTypeScope] with synthetic Java properties created for a given [KaType].
         */
        public fun KaType.getSyntheticJavaPropertiesScope(): KaTypeScope? =
            withValidityAssertion { analysisSession.scopeProvider.getSyntheticJavaPropertiesScope(this) }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-65600`](https://youtrack.jetbrains.com/issue/KT-65600) Analysis Api: FirFile for KtCodeFragments are created and not updated on changes
    - [`KT-64919`](https://youtrack.jetbrains.com/issue/KT-64919) K2 IDE: Implement KMP support for sealed class inheritors
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinCompositeProviderFactory.kt

        crossinline mergeTargets: (List<T>) -> P,
    ): P {
        // We should flatten providers before merging so that the merger has access to all individual providers, and also after merging because
        // composite providers may be created by the merger.
        return factory.createFlattened(factory.flatten(this).mergeOnly<_, T> { mergeTargets(it) })
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinAnnotationsResolver.kt

        public fun annotationsOnDeclaration(declaration: KtAnnotated): Set<ClassId>
    }
    
    public interface KotlinAnnotationsResolverFactory : KotlinPlatformComponent {
        /**
         * @param searchScope A scope in which the created [KotlinAnnotationsResolver] will operate. Make sure that this scope contains all
         * the annotations that you might want to resolve.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

            public fun getInstance(project: Project): KotlinDeclarationProviderFactory =
                project.getService(KotlinDeclarationProviderFactory::class.java)
        }
    }
    
    /**
     * While the main declaration provider created via [createDeclarationProvider] is scope-based, there are other declaration providers which
     * are not, such as file-based declaration providers. Not all declarations provided by such declaration providers can be provided by the
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

        (a) under intellectual property rights (other than patent or
        trademark) Licensable by Contributor to use, reproduce, modify,
        display, perform, sublicense and distribute the Modifications
        created by such Contributor (or portions thereof), either on an
        unmodified basis, with other Modifications, as Covered Software
        and/or as part of a Larger Work; and
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/configurators/AnalysisApiBaseTestServiceRegistrar.kt

                //KotlinClassFileDecompiler is registered as application service so it's available for the tests run in parallel as well
                //when the decompiler is registered, for compiled class KtClsFile is created instead of ClsFileImpl
                //and KtFile doesn't return any classes in classOwner.getClasses if there is no KtFileClassProvider
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtSymbolByFirBuilder.kt

                ProjectionKind.IN -> Variance.IN_VARIANCE
                ProjectionKind.INVARIANT -> Variance.INVARIANT
                ProjectionKind.STAR -> error("KtStarProjectionTypeArgument should not be directly created")
            }
    
            fun buildSubstitutor(substitutor: ConeSubstitutor): KaSubstitutor {
                if (substitutor == ConeSubstitutor.Empty) return KaSubstitutor.Empty(token)
                return when (substitutor) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top