You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get java.lang.NoSuchMethodError: 'boolean kotlinx.serialization.descriptors.SerialDescriptor.isInline()' when using JVM-IR-based serialization inside the notebook. I think the problem arises because scripting does not support IR so far.
The text was updated successfully, but these errors were encountered:
My theory is that scripting runtime substitutes serialization runtime with the one not containing function only available on IR. I think that the simplest solution is to move the scripting engine to IR since it is backward compatible. IR already is default on Kotlin 1.5.
I get
java.lang.NoSuchMethodError: 'boolean kotlinx.serialization.descriptors.SerialDescriptor.isInline()'
when using JVM-IR-based serialization inside the notebook. I think the problem arises because scripting does not support IR so far.The text was updated successfully, but these errors were encountered: