Ciaran Sloan
08/26/2022, 10:18 AMdeinit
function on classes that are extended from a kotlin class? I'm having a weird crash with little info in the stack trace. I've created an open class in my shared module and extending that class in Swift. I want to perform some operation in the deinit
function (a cleanup of sorts), but im getting a crash when trying to access a protected property of the base class from the deinit function. I'm suspecting that possibly this object no longer exists? But I can't get enough information from the stacktrace to determine this