JVM_IR: remove descriptor usage from SyntheticAccessorLowering

This commit is contained in:
Georgy Bronnikov
2020-09-10 17:08:34 +03:00
parent 3327524e18
commit a14c9018b1
@@ -527,7 +527,7 @@ internal class SyntheticAccessorLowering(val context: JvmBackendContext) : IrEle
// Access to static members that need an accessor must be because they are inherited,
// hence accessed on a _s_upertype.
isStatic -> "\$s" + parentAsClass.descriptor.syntheticAccessorToSuperSuffix()
isStatic -> "\$s" + parentAsClass.syntheticAccessorToSuperSuffix()
else -> ""
}