kotlin.reflect.jvm.internal.impl.resolve.scopes.SyntheticScopes.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-reflect Show documentation
Show all versions of kotlin-reflect Show documentation
Kotlin Full Reflection Library
/*
* Copyright 2010-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package kotlin.reflect.jvm.internal.impl.resolve.scopes
import kotlin.reflect.jvm.internal.impl.container.DefaultImplementation
import kotlin.reflect.jvm.internal.impl.descriptors.*
import kotlin.reflect.jvm.internal.impl.incremental.components.LookupLocation
import kotlin.reflect.jvm.internal.impl.name.Name
import kotlin.reflect.jvm.internal.impl.resolve.scopes.synthetic.FunInterfaceConstructorsScopeProvider
import kotlin.reflect.jvm.internal.impl.types.KotlinType
interface SyntheticScope {
fun getSyntheticExtensionProperties(receiverTypes: Collection, name: Name, location: LookupLocation): Collection
fun getSyntheticMemberFunctions(receiverTypes: Collection, name: Name, location: LookupLocation): Collection
fun getSyntheticStaticFunctions(contributedFunctions: Collection, location: LookupLocation): Collection
fun getSyntheticConstructors(contributedClassifier: ClassifierDescriptor, location: LookupLocation): Collection
fun getSyntheticExtensionProperties(receiverTypes: Collection, location: LookupLocation): Collection
fun getSyntheticMemberFunctions(receiverTypes: Collection): Collection
fun getSyntheticStaticFunctions(functionDescriptors: Collection): Collection
fun getSyntheticConstructors(classifierDescriptors: Collection): Collection
fun getSyntheticConstructor(constructor: ConstructorDescriptor): ConstructorDescriptor?
open class Default : SyntheticScope {
override fun getSyntheticExtensionProperties(
receiverTypes: Collection,
name: Name,
location: LookupLocation
): Collection {
return emptyList()
}
override fun getSyntheticMemberFunctions(
receiverTypes: Collection,
name: Name,
location: LookupLocation
): Collection {
return emptyList()
}
override fun getSyntheticStaticFunctions(
contributedFunctions: Collection,
location: LookupLocation
): Collection {
return emptyList()
}
override fun getSyntheticConstructors(
contributedClassifier: ClassifierDescriptor,
location: LookupLocation
): Collection {
return emptyList()
}
override fun getSyntheticExtensionProperties(
receiverTypes: Collection,
location: LookupLocation
): Collection {
return emptyList()
}
override fun getSyntheticMemberFunctions(receiverTypes: Collection): Collection {
return emptyList()
}
override fun getSyntheticStaticFunctions(functionDescriptors: Collection): Collection {
return emptyList()
}
override fun getSyntheticConstructors(classifierDescriptors: Collection): Collection {
return emptyList()
}
override fun getSyntheticConstructor(constructor: ConstructorDescriptor): ConstructorDescriptor? {
return null
}
}
}
@DefaultImplementation(impl = FunInterfaceConstructorsScopeProvider::class)
interface SyntheticScopes {
val scopes: Collection
object Empty : SyntheticScopes {
override val scopes: Collection = emptyList()
}
}
fun SyntheticScopes.collectSyntheticExtensionProperties(receiverTypes: Collection, name: Name, location: LookupLocation)
= scopes.flatMap { it.getSyntheticExtensionProperties(receiverTypes, name, location) }
fun SyntheticScopes.collectSyntheticMemberFunctions(receiverTypes: Collection, name: Name, location: LookupLocation)
= scopes.flatMap { it.getSyntheticMemberFunctions(receiverTypes, name, location) }
fun SyntheticScopes.collectSyntheticStaticFunctions(contributedFunctions: Collection, location: LookupLocation)
= scopes.flatMap { it.getSyntheticStaticFunctions(contributedFunctions, location,) }
fun SyntheticScopes.collectSyntheticConstructors(contributedClassifier: ClassifierDescriptor, location: LookupLocation)
= scopes.flatMap { it.getSyntheticConstructors(contributedClassifier, location) }
fun SyntheticScopes.collectSyntheticExtensionProperties(receiverTypes: Collection, location: LookupLocation)
= scopes.flatMap { it.getSyntheticExtensionProperties(receiverTypes, location) }
fun SyntheticScopes.collectSyntheticMemberFunctions(receiverTypes: Collection)
= scopes.flatMap { it.getSyntheticMemberFunctions(receiverTypes) }
fun SyntheticScopes.collectSyntheticStaticFunctions(functionDescriptors: Collection)
= scopes.flatMap { it.getSyntheticStaticFunctions(functionDescriptors) }
fun SyntheticScopes.collectSyntheticConstructors(classifierDescriptors: Collection)
= scopes.flatMap { it.getSyntheticConstructors(classifierDescriptors) }
fun SyntheticScopes.collectSyntheticConstructors(constructor: ConstructorDescriptor)
= scopes.mapNotNull { it.getSyntheticConstructor(constructor) }