Add type parameters to the KtConstructorSymbol
Yes, for kotlin classes there are not allowed. But unfortunately they are for java classes
This commit is contained in:
+4
-1
@@ -42,7 +42,10 @@ abstract class KtFunctionSymbol : KtFunctionLikeSymbol(),
|
||||
abstract override fun createPointer(): KtSymbolPointer<KtFunctionSymbol>
|
||||
}
|
||||
|
||||
abstract class KtConstructorSymbol : KtFunctionLikeSymbol(), KtAnnotatedSymbol, KtSymbolWithVisibility {
|
||||
abstract class KtConstructorSymbol : KtFunctionLikeSymbol(),
|
||||
KtAnnotatedSymbol,
|
||||
KtSymbolWithVisibility,
|
||||
KtSymbolWithTypeParameters {
|
||||
abstract val isPrimary: Boolean
|
||||
abstract val containingClassIdIfNonLocal: ClassId?
|
||||
|
||||
|
||||
Reference in New Issue
Block a user