KT-29926: Support completion of suspend lambda parameters in the body

- `suspendLambdaSignature` directory is just a copy of `lambdaSignature`
This commit is contained in:
Roman Golyshev
2019-10-17 12:58:41 +03:00
committed by Roman Golyshev
parent 84b9044187
commit da4097f488
10 changed files with 95 additions and 4 deletions
@@ -0,0 +1,11 @@
fun foo(p: suspend (String, Int) -> Unit){}
fun foo(p: suspend Any.(Char, xx: Any) -> Unit){}
fun bar() {
foo { <caret> }
}
// EXIST: "String, Int ->"
// EXIST: "Char, xx ->"
// ABSENT: "s, i ->"
// ABSENT: "c, xx ->"