Kotlin <2.3.0> is out, and there is a bunch of fea...
# javascript
e
Kotlin 2.3.0 is out, and there is a bunch of features/fixes for the JS part. Notable ones are: • KT-79284 Use BigInt64Array for LongArray • KT-79928 Allow JsModule/JsNonModule/JsQualifier invocation on per-entity level • KT-79514 java.lang.IllegalStateException: IrClassSymbolImpl is unbound (this one prevented IC in my case) • KT-56281 Export of suspend functions. Requires
enableLanguageFeature("JsAllowExportingSuspendFunctions")
• KT-80168 Allow @JsStatic inside interface companions. Requires
enableLanguageFeature("JsStaticInInterface")
• KT-52771 Pair should be exported to JavaScript However, keep in mind KT-82279 (DCE removes external members overrides without reason) is still not fixed, and that is something you only discover at runtime.
thank you color 6