PSI: Make JetPostfixExpression.getBaseExpression() nullable
#KT-7761 Fixed
This commit is contained in:
@@ -174,7 +174,7 @@ class PartialBodyResolveFilter(
|
||||
expression.acceptChildren(this)
|
||||
|
||||
if (expression.getOperationToken() == JetTokens.EXCLEXCL) {
|
||||
addIfCanBeSmartCast(expression.getBaseExpression())
|
||||
addIfCanBeSmartCast(expression.getBaseExpression() ?: return)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user