Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Breaters (3.52 sec)

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

        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
        public fun <S : KaCallableSymbol> S.asSignature(): KaCallableSignature<S> =
            withValidityAssertion { analysisSession.signatureSubstitutor.asSignature(this) }
    
        /**
         * Creates a new [KaCallableSignature] by given symbol and leave all types intact
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

         *
         * @see KaResolveExtensionFile
         */
        public abstract fun getTopLevelCallableNames(): Set<Name>
    
        /**
         * Creates the generated Kotlin source file text.
         *
         * The resulted String should be a valid Kotlin code.
         * It should be consistent with other declarations which are present in the [KaResolveExtensionFile], more specifically:
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbolProvider.kt

    public interface KaSymbolProviderMixIn : KaSessionMixIn {
        public fun KtDeclaration.getSymbol(): KaDeclarationSymbol =
            withValidityAssertion { analysisSession.symbolProvider.getSymbol(this) }
    
        /**
         * Creates [KaVariableLikeSymbol] by [KtParameter].
         *
         * Unfortunately, [KtParameter] in PSI stands for many things, and not all of them are represented by a single type of symbol,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-65842`](https://youtrack.jetbrains.com/issue/KT-65842) K2 / CLI: "kotlinc -version" creates META-INF/main.kotlin_module
    - [`KT-66926`](https://youtrack.jetbrains.com/issue/KT-66926) Add a flag to report warnings when errors are found
    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/modification/KotlinModificationTrackerFactory.kt

    import com.intellij.openapi.project.Project
    import com.intellij.openapi.util.ModificationTracker
    import org.jetbrains.kotlin.analysis.api.platform.KotlinPlatformComponent
    
    /**
     * [KotlinModificationTrackerFactory] creates modification trackers for select modification events.
     *
     * Further modification tracking is implemented with a subscription-based mechanism via [KotlinModificationTopics]. Modification trackers make the most
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinDeclarationProviderFactory.kt

        public companion object {
            public fun getInstance(project: Project): KotlinDeclarationProviderMerger =
                project.getService(KotlinDeclarationProviderMerger::class.java)
        }
    }
    
    /**
     * Creates a [KotlinDeclarationProvider] providing symbols within the given [scope].
     *
     * The [contextualModule] is the module which contains the symbols to be provided, if applicable. The declaration provider may use 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)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    return null
                }
    
                if (resolveCalleeExpressionOfFunctionCall) {
                    // For implicit invoke, we resolve the calleeExpression of the CallExpression to the call that creates the receiver of this
                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorFactory.kt

        public abstract fun buildSubstitutor(builder: KaSubstitutorBuilder): KaSubstitutor
    }
    
    public typealias KtSubstitutorFactory = KaSubstitutorFactory
    
    /**
     * Creates new [KaSubstitutor] using substitutions specified inside [build] lambda
     */
    @OptIn(ExperimentalContracts::class, KaAnalysisApiInternals::class)
    public inline fun KaSession.buildSubstitutor(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorProvider.kt

            superClass: KaClassOrObjectSymbol,
        ): KaSubstitutor?
    }
    
    public typealias KtSubstitutorProvider = KaSubstitutorProvider
    
    public interface KaSubstitutorProviderMixIn : KaSessionMixIn {
        /**
         * Creates a [KaSubstitutor] based on the inheritance relationship between [subClass] and [superClass].
         *
         * The semantic of resulted [KaSubstitutor] is the substitutor that should be applied to a member of [superClass],
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top