Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Escape (0.4 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10ScopeResolution.kt

    ) : KtFe10ScopeResolution() {
        override fun getPossibleCallableNames(): Set<Name> = withValidityAssertion {
            return scope.getFunctionNames() + scope.getVariableNames()
        }
    
        override fun getPossibleClassifierNames(): Set<Name> = withValidityAssertion {
            return scope.getClassifierNames() ?: emptySet()
        }
    
        override fun getConstructors(): Sequence<KtConstructorSymbol> = sequence {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Oct 10 13:38:00 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeSubstitution.kt

        override fun getDeclarationScope(scope: KtTypeScope): KtScope {
            return when (scope) {
                is KtFirDelegatingTypeScope -> KtFirDelegatingNamesAwareScope(scope.firScope, analysisSession.firSymbolBuilder)
                is KtCompositeTypeScope -> KtCompositeScope.create(scope.subScopes.map(::getDeclarationScope), token)
                else -> unexpectedElementError<KtTypeScope>(scope)
            }
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri May 19 11:53:15 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/scopes/KtFe10PackageScope.kt

    import org.jetbrains.kotlin.analysis.api.symbols.KtPackageSymbol
    import org.jetbrains.kotlin.resolve.scopes.MemberScope
    
    internal class KtFe10PackageScope(
        scope: MemberScope,
        private val owner: KtPackageSymbol,
        analysisContext: Fe10AnalysisContext
    ) : KtFe10ScopeMember(scope, constructors = emptyList(), analysisContext) {
        override fun getPackageSymbols(nameFilter: KtScopeNameFilter): Sequence<KtPackageSymbol> = withValidityAssertion {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Nov 11 10:59:57 GMT 2022
    - 1.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

            val scope = lhs.resolvedType.scope(
                session,
                analysisSession.getScopeSessionFor(analysisSession.useSiteSession),
                CallableCopyTypeCalculator.DoNothing,
                requiredMembersPhase = FirResolvePhase.STATUS,
            ) ?: return emptyList()
    
            return buildList {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Apr 15 10:59:01 GMT 2024
    - 37.5K bytes
    - Viewed (0)
  5. .idea/scopes/TestData.xml

    <component name="DependencyValidationManager">
      <scope name="TestData" pattern="file:testData//*" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Sep 21 07:11:21 GMT 2023
    - 114 bytes
    - Viewed (0)
  6. .idea/scopes/IDE.xml

    <component name="DependencyValidationManager">
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Tue Oct 24 16:22:04 GMT 2017
    - 609 bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     *
     * Since this fallback is not suitable for symbols from binary libraries in Standalone mode, the symbol names provider absolutely needs to
     * work there. This functionality is covered by package scope tests.
     */
    @OptIn(ExperimentalTopLevelDeclarationsGenerationApi::class)
    internal object DeclarationsInPackageProvider {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 23 10:55:55 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  8. .idea/scopes/all_except_testData.xml

    <component name="DependencyValidationManager">
      <scope name="all except testData" pattern="!file[*]:*//testData//*&amp;&amp;!file[*]:testData//*" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Wed Nov 28 11:27:57 GMT 2012
    - 162 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

                    // Add an empty scope to the shadowed set to give GlobalSearchScope.union something
                    // to work with if there are no extension tools.
                    // If there are extension tools, any empty scopes, whether from shadowedSearchScope
                    // on the extension tools or from this add() call, will be ignored.
                    add(GlobalSearchScope.EMPTY_SCOPE)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 18 10:43:08 GMT 2024
    - 9.4K bytes
    - Viewed (0)
  10. .idea/scopes/Apply_copyright.xml

    <component name="DependencyValidationManager">
      <scope name="Apply copyright" pattern="!file[*]:*//testData//*&amp;&amp;!file[*]:testData//*&amp;&amp;!file[*]:*.gradle.kts&amp;&amp;!file[*]:*.gradle&amp;&amp;!file[group:kotlin-ultimate]:*/&amp;&amp;!file[kotlin.libraries]:stdlib/api//*" />
    XML
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Mon Jul 13 17:42:04 GMT 2020
    - 304 bytes
    - Viewed (0)
Back to top