KT-29926: Support completion of suspend lambda parameters in the body
- `suspendLambdaSignature` directory is just a copy of `lambdaSignature`
This commit is contained in:
committed by
Roman Golyshev
parent
84b9044187
commit
da4097f488
+7
@@ -0,0 +1,7 @@
|
||||
fun foo(p: suspend (x: Char, String) -> Unit){}
|
||||
|
||||
fun bar() {
|
||||
foo { <caret> }
|
||||
}
|
||||
|
||||
// ELEMENT: "x, s ->"
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
fun foo(p: suspend (x: Char, String) -> Unit){}
|
||||
|
||||
fun bar() {
|
||||
foo { x, s -> <caret> }
|
||||
}
|
||||
|
||||
// ELEMENT: "x, s ->"
|
||||
@@ -0,0 +1,7 @@
|
||||
fun foo(p: suspend (x: Char, String) -> Unit){}
|
||||
|
||||
fun bar() {
|
||||
foo { <caret>}
|
||||
}
|
||||
|
||||
// ELEMENT: "x, s ->"
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
fun foo(p: suspend (x: Char, String) -> Unit){}
|
||||
|
||||
fun bar() {
|
||||
foo { x, s -> <caret> }
|
||||
}
|
||||
|
||||
// ELEMENT: "x, s ->"
|
||||
Reference in New Issue
Block a user