soywiz
soywiz
Im not a license expert. I think that java.util base comes from android. Thats why i tried to provide stubs initially and then implement non criticsl packages myself. Sergey, why...
If you are using gradle plugin. As a workaround you can grab it fron central. Using this syntax: https://github.com/jtransc/jtransc/blob/master/benchmark/build.gradle I will try to upload latest version to gradle plugins too
Nice! Then is it still WIP?
I'm going to move today, so I won't have desktop Internet for a couple of weeks or so. I will be able to merge PRs with my phone (intrigus can...
Forgot about this. I will start working on this after 0.6.5. Hopefully I will release 0.6.5 today.
Right now there are three approaches: * JNA (instead of JNI). Initially I implemented it on the Haxe target (for C++ and Node.JS subtargets), but I plan to move it...
BTW. Right now C++ is broken. It fails when calling `Class.forName`. I will try to fix it soon. I'm hugely simplifying generation targets. I never did a major refactoring to...
Class for static methods: ``` object MyStaticClass { fun staticMethod()... } ``` Mixed: ``` class MyStaticClass { companion object { fun staticMethod()... } fun instanceMethod()... } ``` The idea from...
BTW: Which approach did you use on this? :)
Check these snippets: ``` method.methodType.args method.methodType.args[0] == AstType.INT astType == AstType.CLASS astType == "java.lang.Throwable".fqname.ref ```