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,8 @@
package inlineFun1
class A {
inline fun component1() = foo { 1 }
inline fun component2() = foo { 2 }
inline fun foo(f: () -> Int) = f()
}