Minor add message for class cast
EA-59672
This commit is contained in:
+1
-1
@@ -747,7 +747,7 @@ private fun JetNamedDeclaration.getGeneratedBlockBody() =
|
|||||||
when (this) {
|
when (this) {
|
||||||
is JetNamedFunction -> getBodyExpression()
|
is JetNamedFunction -> getBodyExpression()
|
||||||
else -> (this as JetProperty).getGetter()!!.getBodyExpression()
|
else -> (this as JetProperty).getGetter()!!.getBodyExpression()
|
||||||
} as JetBlockExpression
|
} as? JetBlockExpression ?: throw AssertionError("Couldn't get block body for this declaration: ${JetPsiUtil.getElementTextWithContext(this)}")
|
||||||
|
|
||||||
fun ExtractableCodeDescriptor.validate(): ExtractableCodeDescriptorWithConflicts {
|
fun ExtractableCodeDescriptor.validate(): ExtractableCodeDescriptorWithConflicts {
|
||||||
val conflicts = MultiMap<PsiElement, String>()
|
val conflicts = MultiMap<PsiElement, String>()
|
||||||
|
|||||||
Reference in New Issue
Block a user