[FIR] do not create FirParameter for catch parameter

use FirProperty instead

^KT-55034
This commit is contained in:
Ilya Kirillov
2022-11-18 16:38:15 +01:00
parent 9671e20f1f
commit c8e3103af9
24 changed files with 450 additions and 368 deletions
@@ -3,7 +3,7 @@ FILE: catchParameter.kt
public final fun <T : R|kotlin/Throwable|> test(): R|kotlin/Unit| {
try {
}
catch (e: R|kotlin/NullPointerException| = R|java/lang/NullPointerException.NullPointerException|()) {
catch (e: R|kotlin/NullPointerException|) {
}
try {
@@ -23,7 +23,7 @@ FILE: catchParameter.kt
try {
}
catch (e: R|kotlin/Int| = Int(5)) {
catch (e: R|kotlin/Int|) {
}
try {