JVM_IR: avoid descriptors when tracking inline properties

Preparing to use wrapped properties in InlineCodegen.
This commit is contained in:
Georgy Bronnikov
2020-06-29 14:14:27 +03:00
parent 385d522d27
commit 8e24256f95
9 changed files with 118 additions and 15 deletions
@@ -0,0 +1,8 @@
package inline
class A {
var z = 0
@JvmName("fff")
inline fun f(): Int = 1
}