org.jetbrains.kotlin.descriptors
Interface ReceiverParameterDescriptor

All Superinterfaces:
Annotated, CallableDescriptor, DeclarationDescriptor, DeclarationDescriptorNonRoot, DeclarationDescriptorWithSource, DeclarationDescriptorWithVisibility, Named
All Known Implementing Classes:
AbstractReceiverParameterDescriptor, LazyClassReceiverParameterDescriptor, ReceiverParameterDescriptorImpl

public interface ReceiverParameterDescriptor
extends CallableDescriptor


Field Summary
static ReceiverParameterDescriptor NO_RECEIVER_PARAMETER
           
 
Method Summary
 DeclarationDescriptor getContainingDeclaration()
           
 JetType getType()
           
 ReceiverValue getValue()
           
 ReceiverParameterDescriptor substitute(TypeSubstitutor substitutor)
           
 
Methods inherited from interface org.jetbrains.kotlin.descriptors.CallableDescriptor
getDispatchReceiverParameter, getExtensionReceiverParameter, getOriginal, getOverriddenDescriptors, getReturnType, getTypeParameters, getValueParameters, hasStableParameterNames, hasSynthesizedParameterNames
 
Methods inherited from interface org.jetbrains.kotlin.descriptors.DeclarationDescriptorWithVisibility
getVisibility
 
Methods inherited from interface org.jetbrains.kotlin.descriptors.DeclarationDescriptorWithSource
getSource
 
Methods inherited from interface org.jetbrains.kotlin.descriptors.DeclarationDescriptor
accept, acceptVoid
 
Methods inherited from interface org.jetbrains.kotlin.descriptors.annotations.Annotated
getAnnotations
 
Methods inherited from interface org.jetbrains.kotlin.descriptors.Named
getName
 

Field Detail

NO_RECEIVER_PARAMETER

@Nullable
static final ReceiverParameterDescriptor NO_RECEIVER_PARAMETER
Method Detail

getType

@NotNull
JetType getType()

getValue

@NotNull
ReceiverValue getValue()

getContainingDeclaration

@NotNull
DeclarationDescriptor getContainingDeclaration()
Specified by:
getContainingDeclaration in interface DeclarationDescriptor
Specified by:
getContainingDeclaration in interface DeclarationDescriptorNonRoot

substitute

@Nullable
ReceiverParameterDescriptor substitute(@NotNull
                                                TypeSubstitutor substitutor)
Specified by:
substitute in interface CallableDescriptor
Specified by:
substitute in interface DeclarationDescriptor