Results 281 comments of soywiz

Going to work on this now.

Did some fixes. Not working yet, but WIP. Ill let you know when it is working. When i get it working i will release a beta version so you can...

Revert them. But it is possible that I will have to do some small changes because JS doesn't have synchronous I/O. It will require a small preloader.

@georgemoralis Ok. So I have to say that I failed with this approach. AWT + Swing is really huge. I keep adding dependencies to get it compiling, but this is...

Probably not though not tried. Even if you statically compile clojure, probably it is using invokedynamic a lot (from 1.7). Unless you use a version targeting 1.6 or lower. I...

Things that I want to support here: **Note:** if you have extra things you think we have to support and I missed here, please add them as a comment. ##...

Miss to reference these: https://github.com/jtransc/jtransc/commit/2ebb260465e1db86a88f125a4abecc0469e60013 https://github.com/jtransc/jtransc/commit/64c2a055121cc4d7fe4dfd89f6a104f0dd8a13dd https://github.com/jtransc/jtransc/commit/9a4be242f1436a4c5f912da309bb6078c5c35ca0 https://github.com/jtransc/jtransc/commit/498379ab37028e3217574dcd3c0dce67c1e50779 https://github.com/jtransc/jtransc/commit/3f722d3ccc6b118c159dacf11fe1a64afc7a8098 https://github.com/jtransc/jtransc/commit/ebee740ee5e843d5eb2fbdfd9373b75df017f546 https://github.com/jtransc/jtransc/commit/457858e8e178511c2ab4297dbf0f1c60def13da1 https://github.com/jtransc/jtransc/commit/f933762708155f6c753cedf4af42529d1ded98e1 https://github.com/jtransc/jtransc/commit/4630b3a070b932233069fbfa8d9847873824861f https://github.com/jtransc/jtransc/commit/cd25ec900d8b9ab4a1904b35592288e2582d612e https://github.com/jtransc/jtransc/commit/dbb1a209814fc0e392c83918045bf0d41203e5a0 https://github.com/jtransc/jtransc/commit/476f237ed111ca7f8d9577a3b318be809b355765 https://github.com/jtransc/jtransc/commit/2b36a81892be9cbef22f4b72772c3edec4f34278

Related issue: https://github.com/jtransc/jtransc/issues/27

Do you mean to reuse cases like this? ``` case 6566:return JA_L.T1("[Ljava/lang/annotation/Annotation;", (new my.context.annotations.Bean_Impl_()).my_context_annotations_Bean_Impl_init__Z_V(true)); case 6567:return JA_L.T1("[Ljava/lang/annotation/Annotation;", (new my.context.annotations.Bean_Impl_()).my_context_annotations_Bean_Impl_init__Z_V(false)); case 6576:return JA_L.T1("[Ljava/lang/annotation/Annotation;", (new my.context.annotations.Bean_Impl_()).my_context_annotations_Bean_Impl_init__Z_V(true)); ``` --> ``` case 6567:return JA_L.T1("[Ljava/lang/annotation/Annotation;",...

We can have a HashMap of the annotations linked to a case or something. Kotlin `data class` implement hashCode and equals to compare them and use in maps. I can...