Initial implementation of loop-to-call-chain intention
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
fun foo(p: Int) {
|
||||
<caret>if (p !in 1..10) {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun foo(p: Int) {
|
||||
if (p in 1..10) return
|
||||
}
|
||||
Reference in New Issue
Block a user