Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for option (0.51 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceShortenerTest.kt

                        this += ShortenStrategy.entries.associate { option ->
                            val shorteningsForOption = collectPossibleReferenceShorteningsInElement(
                                element,
                                shortenOptions = ShortenOptions.ALL_ENABLED,
                                classShortenStrategy = { option },
                                callableShortenStrategy = { option }
                            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    is FirAbstractSimpleImportingScope -> EXPLICIT
                    else -> LOCAL
                }
            }
    
            fun fromShortenOption(option: ShortenStrategy): ImportKind? = when (option) {
                ShortenStrategy.SHORTEN_AND_IMPORT -> EXPLICIT
                ShortenStrategy.SHORTEN_AND_STAR_IMPORT -> STAR
                else -> null
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/references/AbstractReferenceShortenerForWholeFileTest.kt

                        this += ShortenStrategy.entries.associateWith { option ->
                            val shorteningsForOption = collectPossibleReferenceShortenings(
                                mainFile,
                                mainFile.textRange,
                                classShortenStrategy = { option },
                                callableShortenStrategy = { option }
                            )
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 27 16:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

            }
            return symbolEquals(other)
        }
    
        /**
         * All kinds of non-local named class or object symbols must have the same kind of hash code. The class ID is the best option, as the
         * same class/object may be represented by multiple different symbols.
         */
        override fun hashCode(): Int = classId?.hashCode() ?: symbolHashCode()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. ReadMe.md

    (or put it into `$GRADLE_USER_HOME/gradle.properties`).
    
    On Windows you might need to add long paths setting to the repo:
    
        git config core.longpaths true 
    
    ## Building
    
    The project is built with Gradle. Run Gradle to build the project and to run the tests 
    using the following command on Unix/macOS:
    
        ./gradlew <tasks-and-options>
        
    or the following command on Windows:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/analyze.kt

     */
    @OptIn(KtModuleStructureInternals::class)
    public inline fun <R> analyzeCopy(
        useSiteKtElement: KtElement,
        resolutionMode: DanglingFileResolutionMode,
        crossinline action: KaSession.() -> R,
    ): R {
        val containingFile = useSiteKtElement.containingKtFile
        return withDanglingFileResolutionMode(containingFile, resolutionMode) {
            analyze(containingFile, action)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

        public abstract fun resolveCall(psi: KtElement): KaCallInfo?
        public abstract fun collectCallCandidates(psi: KtElement): List<KaCallCandidateInfo>
    }
    
    @OptIn(KaAnalysisApiInternals::class)
    public typealias KtCallResolver = KaResolver
    
    @OptIn(KaAnalysisApiInternals::class)
    public interface KaResolverMixIn : KaSessionMixIn {
        @Deprecated(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExpr.txt

    expression: ANNOTATED_EXPRESSION
    text: @OptIn(Deprecated::class) args
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 95 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/annotatedExprBodyUnused.kt

    fun main(args: Array<String>) {
        (@OptIn(Deprecated::class) <expr>args</expr>)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 83 bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

        private val builtinsModule: KtBuiltinsModule by lazy {
            @OptIn(LLFirInternals::class)
            LLFirBuiltinsSessionFactory.getInstance(project).getBuiltinsSession(platform).ktModule as KtBuiltinsModule
        }
    
        override fun getNotUnderContentRootModule(project: Project): KtNotUnderContentRootModule {
            return ktNotUnderContentRootModuleWithoutPsiFile
        }
    
        @OptIn(KtModuleStructureInternals::class)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top