PSI: Add parentheses around non-trivial callee expressions
#KT-8232 Fixed
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
fun foo(x : String, y : () -> String.() -> Unit) {
|
||||
val <caret>f = y()
|
||||
x.f()
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
fun foo(x : String, y : () -> String.() -> Unit) {
|
||||
x.(y())()
|
||||
}
|
||||
Reference in New Issue
Block a user