Add secondary ctors to incremental analysis

Relates to #KT-35121
This commit is contained in:
Vladimir Dolzhenko
2019-11-29 18:30:01 +01:00
parent c16b89d770
commit a6f829f267
2 changed files with 52 additions and 0 deletions
@@ -35,6 +35,8 @@ class KtSecondaryConstructor : KtConstructor<KtSecondaryConstructor> {
fun getDelegationCall(): KtConstructorDelegationCall = findNotNullChildByClass(KtConstructorDelegationCall::class.java)
fun getDelegationCallOrNull(): KtConstructorDelegationCall? = findChildByClass(KtConstructorDelegationCall::class.java)
fun hasImplicitDelegationCall(): Boolean = getDelegationCall().isImplicit
fun replaceImplicitDelegationCallWithExplicit(isThis: Boolean): KtConstructorDelegationCall {