Support smart step into for inline function arguments

This commit is contained in:
Natalia Ukhorskaya
2015-10-23 11:59:33 +03:00
parent c98ebffbcf
commit dd30462fd1
13 changed files with 213 additions and 59 deletions
+1 -1
View File
@@ -4,4 +4,4 @@ fun foo() {
inline fun f1(f: () -> Unit) {}
// EXISTS: f1(() -> Unit)
// EXISTS: f1(() -> Unit), f1: f.invoke()
@@ -0,0 +1,7 @@
fun foo() {
<caret>f1(fun () { })
}
inline fun f1(f: () -> Unit) {}
// EXISTS: f1(() -> Unit), f1: f.invoke()