Finding all classes with Kotlin JS
I can do this with no problems using Kotlin for JVM, but how to get all Kotlin classes with Kotlin for JS? I need to list all my classes inside a list, like this.
document.querySelector("#debugger-filter").let{
all_kotlin_classes_on_my_application.forEach{k -> it?.innerHTML += "${k.simpleName}\n"}
}