KotlinConstructor

fun interface KotlinConstructor<T : Constructor<T>> : Constructor<T> , KotlinFunction

Functions

body
Link copied to clipboard
abstract fun body(): Expression?
getAnnotations
Link copied to clipboard
abstract fun getAnnotations(): List<Annotation>
getContainingClassOrObject
Link copied to clipboard
open override fun getContainingClassOrObject(): ClassOrObject
getResolvedCall
Link copied to clipboard
abstract fun getResolvedCall(context: ResolutionContext): ResolvedCall?
getVariableDescriptor
Link copied to clipboard
abstract fun getVariableDescriptor(context: ResolutionContext): VariableDescriptor?
hasBlockBody
Link copied to clipboard
abstract fun hasBlockBody(): Boolean
hasBody
Link copied to clipboard
abstract fun hasBody(): Boolean
hasDeclaredReturnType
Link copied to clipboard
abstract fun hasDeclaredReturnType(): Boolean
impl
Link copied to clipboard
abstract override fun impl(): KtConstructor<*>
lastBlockStatementOrThis
Link copied to clipboard
abstract fun lastBlockStatementOrThis(): Expression
location
Link copied to clipboard
abstract fun location(): CompilerMessageSourceLocation?
parents
Link copied to clipboard
abstract fun parents(): List<Element>
type
Link copied to clipboard
abstract fun type(context: ResolutionContext): Type?

Properties

annotationEntries
Link copied to clipboard
abstract val annotationEntries: List<AnnotationEntry>
bodyBlockExpression
Link copied to clipboard
abstract val bodyBlockExpression: BlockExpression?
bodyExpression
Link copied to clipboard
abstract val bodyExpression: Expression?
fqName
Link copied to clipboard
abstract val fqName: FqName?
isLocal
Link copied to clipboard
abstract val isLocal: Boolean
modifierList
Link copied to clipboard
abstract val modifierList: ModifierList?
name
Link copied to clipboard
abstract val name: String?
nameAsName
Link copied to clipboard
abstract val nameAsName: Name?
nameAsSafeName
Link copied to clipboard
abstract val nameAsSafeName: Name
parents
Link copied to clipboard
abstract val parents: List<Element>
psiOrParent
Link copied to clipboard
abstract val psiOrParent: Element
receiverTypeReference
Link copied to clipboard
abstract val receiverTypeReference: TypeReference?
text
Link copied to clipboard
abstract val text: String
typeConstraintList
Link copied to clipboard
abstract val typeConstraintList: TypeConstraintList?
typeConstraints
Link copied to clipboard
abstract val typeConstraints: List<TypeConstraint>
typeParameterList
Link copied to clipboard
abstract val typeParameterList: TypeParameterList?
typeParameters
Link copied to clipboard
abstract val typeParameters: List<TypeParameter>
typeReference
Link copied to clipboard
abstract val typeReference: TypeReference?
valueParameterList
Link copied to clipboard
abstract val valueParameterList: ParameterList?
valueParameters
Link copied to clipboard
abstract val valueParameters: List<Parameter?>

Inheritors

KotlinPrimaryConstructor
Link copied to clipboard
KotlinSecondaryConstructor
Link copied to clipboard