FIR IDE: Enable ReplaceCallFix for UNSAFE_CALL.

This commit is contained in:
Mark Punzalan
2021-02-26 22:25:58 +00:00
committed by Ilya Kirillov
parent 3ebdfa3850
commit 164d7d80b6
32 changed files with 146 additions and 30 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
// "Replace with safe (?.) call" "true"
fun foo(a: Int?) {
a<caret>.plus(1)
}
}
+1 -1
View File
@@ -1,4 +1,4 @@
// "Replace with safe (?.) call" "true"
fun foo(a: Int?) {
a?.plus(1)
}
}