Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for You (0.18 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtExpressionInfoProvider.kt

         *         else -> {}
         *     }
         * }
         *
         * Note that this function returns the same missing cases regardless of the existence of the else branch.
         * If you have to assume that it does not have the missing cases when it has an else branch,
         * you need a separate check whether it has an else branch or not.
         */
        public fun KtWhenExpression.getMissingCases(): List<WhenMissingCase> =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. ReadMe.md

    * `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 
    you might face timeouts getting them. In this case, you can increase timeout by specifying the following 
    command line parameters on the first run: 
        
        ./gradlew -Dhttp.socketTimeout=60000 -Dhttp.connectionTimeout=60000
    
    ## Important gradle tasks
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

        /**
         * This property can be used to optimize some argument processing logic.
         * For example, if you have [KaAnnotationApplicationInfo] from [KaAnnotated.annotationInfos] and [hasArguments] is **false**,
         * then you can avoid [KaAnnotated.annotationsByClassId] call,
         * because effectively you already have all necessary information in [KaAnnotationApplicationInfo]
         */
        public val hasArguments: Boolean
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinAnnotationsResolver.kt

        /**
         * @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.
         */
        public fun createAnnotationResolver(searchScope: GlobalSearchScope): KotlinAnnotationsResolver
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

    import org.jetbrains.kotlin.utils.addToStdlib.ifNotEmpty
    
    internal object FirReferenceResolveHelper {
        fun FirResolvedTypeRef.toTargetSymbol(session: FirSession, symbolBuilder: KaSymbolByFirBuilder): KaSymbol? {
            // When you call a method from Java with type arguments, in FIR they are currently represented as flexible types.
            // TODO Consider handling other non-ConeLookupTagBasedType types here (see KT-66418)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

         * provided, an empty map is returned defensively so that [toTypeArgumentsMapping] doesn't conjure any error types. If you want to map
         * too few type arguments meaningfully, please provide filler types explicitly.
         */
        private fun toTypeArgumentsMapping(
            typeArguments: List<FirTypeProjection>,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

     * only if the real resolution was unsuccessful. You can use this EP by creating a class implementing this interface.
     * For example, let's assume that you want to return symbol `fun foo() = 3` for the following KDoc resolution:
     *
     * ```
     *   package com.example
     *   fun foo() = 3
     *   /**
     *    * [this.is.not.com.example.fo<caret>o] is not the above `com.example.foo`, but you want to resolve it to the above `com.example.foo`.
     *    */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     *
     * [KaResolveExtension] implements the [Disposable] interface. The resolve extension can then act as a parent disposable, e.g. for a message
     * bus connection.
     *
     * You *must not* implement [KaResolveExtension]s as module-level services, due to the following reasons:
     *
     * 1. The IntelliJ platform SDK [discourages](https://plugins.jetbrains.com/docs/intellij/plugin-services.html#types) the use of
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compileTimeConstantProvider/evaluate/incompleteCode/noRightOperandUnsignedLong.descriptors.txt

    expression: 4294967296u
    constant: error("Type cannot be resolved. Please make sure you have the required dependencies for unsigned types in the classpath")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 181 bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     *
     * #### Implementation Notes
     *
     * Analysis API platforms need to take care of publishing modification topics via the [analysisMessageBus]. In general, if your platform
     * works with static code and static module structure, you do not need to publish any events. However, keep in mind the contracts of the
     * various modification events. For example, if your platform can guarantee a static module structure but source code can still change,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top