Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for owner (0.14 sec)

  1. 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) {
    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)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSamResolver.kt

            val classId = ktClassLikeSymbol.classIdIfNonLocal ?: return null
            val owner = analysisSession.getClassLikeSymbol(classId) as? FirRegularClass ?: return null
            val resolver = LocalSamResolver(analysisSession, analysisSession.useSiteSession)
            return resolver.getSamConstructor(owner)?.let {
                analysisSession.firSymbolBuilder.functionLikeBuilder.buildSamConstructorSymbol(it.symbol)
            }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu May 12 14:15:14 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  3. .space/CODEOWNERS

    # OWNER_LIST: "Kotlin Build Infrastructure" "Kotlin Build Tools"
    # OWNER_LIST: "Kotlin Performance QA"
    # OWNER_LIST: "Kotlin IDE Analysis Core"
    # OWNER_LIST: "Kotlin Release"
    # OWNER_LIST: "Kotlin Apple Ecosystem"
    # OWNER_LIST: "Kotlin Language Evolution"
    # OWNER_LIST: "Kotlin in Fleet"
    # OWNER_LIST: Compose
    # OWNER_LIST: Mikhail.Glukhikh Dmitriy.Novozhilov Kirill.Rakhman
    # OWNER_LIST: Yan.Zhulanow
    # OWNER_LIST: Dmitry.Gridin
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DynamicFunctionDescValueParameterSymbol.kt

        override fun createPointer(): KtSymbolPointer<KtValueParameterSymbol> = withValidityAssertion {
            Pointer(owner.createPointer())
        }
    
        override fun equals(other: Any?): Boolean = other is KtFe10DynamicFunctionDescValueParameterSymbol && other.owner == this.owner
        override fun hashCode(): Int = owner.hashCode()
    
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:46 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            val owner = descriptor.owner
    
            if (descriptor is IrBasedReceiverParameterDescriptor && owner is IrValueParameter) {
                val receiverClass = (owner.type as? IrSimpleType)?.classifier as? IrClassSymbol
                val receiverClassId = receiverClass?.owner?.classId
    
                if (receiverClassId != null) {
                    if (owner.index >= 0) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 32.2K bytes
    - Viewed (1)
  6. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10ScopeProvider.kt

        }
    
        private class DeclaredMemberScope(
            val allMemberScope: MemberScope,
            val owner: ClassDescriptor,
            val forDelegatedMembersOnly: Boolean
        ) : MemberScope {
            constructor(owner: ClassDescriptor, forDelegatedMembersOnly: Boolean = false) :
                    this(owner.unsubstitutedMemberScope, owner, forDelegatedMembersOnly)
    
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 12.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        private fun KtAnalysisSession.getSymbolsFromDeclaration(name: Name, owner: KtDeclaration): List<KtSymbol> = buildList {
            if (owner is KtNamedDeclaration) {
                if (owner.nameAsName == name) {
                    add(owner.getSymbol())
                }
            }
            if (owner is KtTypeParameterListOwner) {
                for (typeParameter in owner.typeParameters) {
                    if (typeParameter.nameAsName == name) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolContainingDeclarationProvider.kt

                return getContainingModule(symbol.owningProperty)
            }
    
            if (symbol is KtFe10DynamicFunctionDescValueParameterSymbol) {
                return getContainingModule(symbol.owner)
            }
    
            TODO(symbol::class.java.name)
        }
    
        private fun getFakeContainingKtModule(descriptor: DescriptorWithContainerSource): KtModule {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Dec 21 15:34:34 GMT 2023
    - 9.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirFileScope.kt

    import org.jetbrains.kotlin.fir.declarations.FirSimpleFunction
    import org.jetbrains.kotlin.fir.declarations.FirTypeAlias
    import org.jetbrains.kotlin.name.Name
    
    internal class KtFirFileScope(
        private val owner: KtFirFileSymbol,
        private val builder: KtSymbolByFirBuilder
    ) : KtScope {
        override val token: KtLifetimeToken get() = builder.token
    
        private val allNamesCached by cached {
    Plain Text
    - Registered: Fri Mar 22 08:18:09 GMT 2024
    - Last Modified: Mon May 22 19:21:34 GMT 2023
    - 4.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                mapping.put(typeParameter, boundTypeArgument)
            }
    
            return TypeArgumentMapping(typeParameterOwner, mapping)
        }
    
        private data class TypeArgumentMapping(
            val owner: ClassifierDescriptorWithTypeParameters,
            val mapping: Map<TypeParameterDescriptor, BoundTypeArgument>
        )
    
        private data class BoundTypeArgument(val type: KotlinType, val variance: Variance)
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Jan 29 09:37:59 GMT 2024
    - 23.3K bytes
    - Viewed (0)
Back to top