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
Add support for calling Companion objects' method as used in Kotlin without needing them to be declared as @JvmStatic
Add support for overriding Kotlin properties when extending a Kotlin class using the JS/TS property syntax instead of overriding the getProperty/setProperty methods
Add support for calling Kotlin functions which accept an unsigned number as a parameter
The text was updated successfully, but these errors were encountered:
Currently, the way to use Kotlin features in a NativeScript app is by using them as used in a Java code e.g. https://kotlinlang.org/docs/reference/java-to-kotlin-interop.html
There should be a more convenient way of using some features in JS/TS code, thus I propose the following additions to NativeScript's Kotlin support:
object
without accessing theINSTANCE
fieldCompanion
objects' method as used in Kotlin without needing them to be declared as@JvmStatic
getProperty
/setProperty
methodsThe text was updated successfully, but these errors were encountered: