[FIR] DFA: add missing unwrap for FirDesugaredAssignmentValueReferenceExpression

^KT-60319 Fixed
^KT-61407 Fixed
This commit is contained in:
Dmitrii Gridin
2023-08-22 15:54:42 +02:00
committed by Space Team
parent c01d27a61e
commit 3debf36d60
8 changed files with 65 additions and 1 deletions
@@ -82,6 +82,6 @@ fun FirElement.unwrapElement(): FirElement = when (this) {
is FirSafeCallExpression -> selector.unwrapElement()
is FirCheckedSafeCallSubject -> originalReceiverRef.value.unwrapElement()
is FirCheckNotNullCall -> argument.unwrapElement()
is FirDesugaredAssignmentValueReferenceExpression -> expressionRef.value.unwrapElement()
else -> this
}