Basic detection for bytecode of inline functions in incremental compilation.

Basic rule is: bytecode of inline function changed -> recompile everything.

Original commit: 6c8a9ba378
This commit is contained in:
Evgeny Gerashchenko
2014-07-01 15:59:48 +04:00
parent b86d7668b0
commit bf5c65bef6
22 changed files with 269 additions and 5 deletions
@@ -0,0 +1,6 @@
package inline
inline fun f(body: () -> Unit) {
println("i'm inline function")
body()
}