[FIR] Support PreliminaryLoopVisitor in FIR DFA

This commit is contained in:
Dmitriy Novozhilov
2021-02-11 17:42:30 +03:00
parent 0e46a961a3
commit 5711a8d610
34 changed files with 294 additions and 106 deletions
@@ -30,7 +30,7 @@ fun baz(s: String?) {
x.hashCode()
}
run {
x.hashCode()
x<!UNSAFE_CALL!>.<!>hashCode()
x = null
}
}
@@ -40,11 +40,11 @@ fun gaz(s: String?) {
var x = s
if (x != null) {
run {
x.hashCode()
x<!UNSAFE_CALL!>.<!>hashCode()
x = null
}
run {
x.hashCode()
x<!UNSAFE_CALL!>.<!>hashCode()
}
}
}
@@ -57,4 +57,4 @@ fun gav(s: String?) {
}
x = null
}
}
}