FIR checker: warn unnecessary safe calls

This commit is contained in:
Jinseong Jeon
2021-04-01 11:55:05 -07:00
committed by Mikhail Glukhikh
parent 2ecb6733ed
commit 5a0b75bd89
65 changed files with 232 additions and 349 deletions
@@ -17,5 +17,5 @@ fun test1(a: A) {
fun test2() {
val a: A? = null;
assert((a as B).bool())
a?.bool()
a<!UNNECESSARY_SAFE_CALL!>?.<!>bool()
}
@@ -5,7 +5,7 @@
fun test1(s: String?) {
assert(s!!.isEmpty())
s?.length
s<!UNNECESSARY_SAFE_CALL!>?.<!>length
}
fun test2(s: String?) {
@@ -21,7 +21,7 @@ fun test3(s: String?) {
fun test4() {
val s: String? = null;
assert(s!!.isEmpty())
s?.length
s<!UNNECESSARY_SAFE_CALL!>?.<!>length
}
fun test5() {
@@ -6,7 +6,7 @@ public class Test {
// FILE: test.kt
fun ff() {
val a = Test.FOO
val b = Test?.<!UNRESOLVED_REFERENCE!>FOO<!>
val b = Test<!UNEXPECTED_SAFE_CALL!>?.<!><!UNRESOLVED_REFERENCE!>FOO<!>
System.out.println(a + b)
System?.<!UNRESOLVED_REFERENCE!>out<!>.<!UNRESOLVED_REFERENCE!>println<!>(a + b)
System<!UNEXPECTED_SAFE_CALL!>?.<!><!UNRESOLVED_REFERENCE!>out<!>.<!UNRESOLVED_REFERENCE!>println<!>(a + b)
}