FE: provide argument mapping info for adapted callable reference

This commit is contained in:
Dmitry Petrov
2020-01-15 18:41:03 +03:00
parent da7d594d0f
commit 89c832b5a0
4 changed files with 104 additions and 26 deletions
@@ -36,6 +36,10 @@ interface ValueArgument {
fun isExternal(): Boolean
}
interface FakePositionalValueArgumentForCallableReference : ValueArgument {
val index: Int
}
interface LambdaArgument : ValueArgument {
fun getLambdaExpression(): KtLambdaExpression?
}