Add support of comments in asymmetric returns
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
fun test(n: Int): String {
|
||||
<caret>if (n == 1) return "one"
|
||||
// comment
|
||||
return "two"
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
fun test(n: Int): String {
|
||||
<caret>return if (n == 1) "one" else "two"
|
||||
// comment
|
||||
}
|
||||
Reference in New Issue
Block a user