Add @JvmDefault for getPossibleSyntheticNestedClassNames

This commit is contained in:
Ilya Muradyan
2020-07-14 13:51:49 +03:00
parent 340512e27a
commit 07b566dd02
@@ -149,6 +149,7 @@ interface SyntheticResolveExtension {
* or null in case it needs to run resolution and inference and/or it is very costly.
* Override this method if resolution started to fail with recursion.
*/
@JvmDefault
fun getPossibleSyntheticNestedClassNames(thisDescriptor: ClassDescriptor): List<Name>? = getSyntheticNestedClassNames(thisDescriptor)
fun addSyntheticSupertypes(thisDescriptor: ClassDescriptor, supertypes: MutableList<KotlinType>) {}