KotlinBytecodeToolWindow: analyze inline functions from multi declarations and from iterator call in for

This commit is contained in:
Natalia Ukhorskaya
2015-04-21 15:51:23 +03:00
parent 6a7bf4808d
commit 50ad0af399
6 changed files with 68 additions and 0 deletions
@@ -0,0 +1,9 @@
package foo
import inlineFun1.*
fun test() {
for (i in A()) {
println(i)
}
}