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,5 @@
package inlineFun1
class A() {
inline fun iterator() : Iterator<Int> = throw UnsupportedOperationException()
}