Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for usually (0.35 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionNavigationTargetsProvider.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    public abstract class KaResolveExtensionNavigationTargetsProvider {
        /**
         * Provides a [PsiElement] which will be opened on a navigation request for [element].
         *
         * Usually returns a single result. Might return an empty collection if there is no navigation target.
         * Also, might multiple targets in a case of ambiguity or multiple targets for a [symbol]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationsList.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.KaLifetimeOwner
    import org.jetbrains.kotlin.name.ClassId
    
    /**
     * A list of annotations applied for some entity.
     *
     * Annotation owners are usually implement [KaAnnotated]
     */
    public interface KaAnnotationList : List<KaAnnotation>, KaLifetimeOwner {
        @Deprecated("Use the annotation list as a 'List'.")
        public val annotations: List<KaAnnotation>
            get() = this
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

        private val inlineFunctionsWithBody: MutableSet<KtDeclarationWithBody> = mutableSetOf()
    
        /**
         * Collects all inline function calls in an [element] (usually a file) and follows each transitively.
         */
        fun analyze(element: KtElement) {
            val project = element.project
            val nextInlineFunctions = HashSet<KtDeclarationWithBody>()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtSubstitutor.kt

    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    
    /**
     * Type substitutor. Performs substitution of a type parameters inside a type to some fixed type.
     * Usually can be represented as a map from type parameter to it corresponding substitution.
     *
     * Example of a substitution:
     * ```
     * substitutor = { T -> Int, S -> Long }
     * substitute(Map<T, S>, substitutor) = Map<Int, Long>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinComposableProvider.kt

     * provider.
     *
     * Composable providers share certain traits: There is a notion of a sequentially composed [KotlinCompositeProvider] of that kind, and there
     * is usually a merge function which allows to create a single provider from a list of providers. Mergers of composable providers may
     * produce a merged provider which is more efficient than the naive sequential composite provider.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

        private val transitiveDependentsByKtModule = createConcurrentSoftMap<KtModule, Set<KtModule>>()
    
        private val refinementDependentsByKtModule: Map<KtModule, Set<KtModule>> by lazy {
            // Refinement dependents will usually only be requested for expect classes, so it's better to compute them lazily as they're not
            // needed for all projects.
            buildDependentsMap(modules) { it.transitiveDependsOnDependencies.asSequence() }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt

        name = "Smoke Ide Tests"
        description = "Tests against IDE sync process"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        requirements {
            // These tests are usually heavy and the build time is twice on EC2 agents
            requiresNotEc2Agent()
        }
    
        applyTestDefaults(
            model = model,
            buildType = this,
            gradleTasks = ":smoke-ide-test:smokeIdeTest",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 14:05:00 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDestructuringDeclarationSymbol.kt

        /**
         * A list of [KaVariableSymbol]s which were created from this destructuring declaration.
         *
         * The entries are usually [KaLocalVariableSymbol]s. However, for top-level destructuring declarations in scripts, the entries are
         * [KaPropertySymbol]s instead.
         *
         * E.g., for the following code:
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-56624`](https://youtrack.jetbrains.com/issue/KT-56624) "Unresolved reference" with import alias and enum constructor call
    - [`KT-54726`](https://youtrack.jetbrains.com/issue/KT-54726) K1: StackOverflowError on mutually recursive typealiases
    - [`KT-35134`](https://youtrack.jetbrains.com/issue/KT-35134) False negative INCOMPATIBLE_TYPES, EQUALITY_NOT_APPLICABLE when comparing smartcast value to Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            val result = mutableMapOf<KaTypeParameterSymbol, KaType>()
    
            for ((index, typeParameter) in typeParameters.withIndex()) {
                // After resolution all type arguments should be usual types (not FirPlaceholderProjection)
                val typeArgument = typeArguments[index]
                if (typeArgument !is FirTypeProjectionWithVariance || typeArgument.variance != Variance.INVARIANT) return emptyMap()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top