Mirko Sertic

Results 80 comments of Mirko Sertic

Hi! Thank you for using Bytecoder! JSON unmarshalling support implemented by third party libraries like GSON etc. is currently not fully supported and implemented, due to some missing JPMS APIs...

* Reflective field access can be implemented, see #344 * Typed arrays are tricky, and are also not supported by the Bytecoder runtime. Internally a String[] is treatened as Object[],and...

Good news! I've merged the first implementation of reflection API support for the Bytecoder JavaScript backend. Please take a look at https://github.com/mirkosertic/Bytecoder/blob/master/core/src/test/java/de/mirkosertic/bytecoder/core/ReflectionTest.java to see the supported APIs and usecases.

I am using OpenJDK8 here, IntelliJ as IDE. Basically rebuild the project and run the ReflectionTest class should do the trick. Please make sure the jaba8-compile Maven profile is active....

Hey! I investigated your example, and I see the problem! The ATO compiler does currently only include fields in the reflection field list which are statically referenced somewhere in the...

I've pushed some fixes to the master branch. Would you please rebase your branch and give it a try? Also, please add the reflection configuration file `bytecoder-reflection.json` to the root...

The JS backend translates TypedArray invocation directly to calls of the JS reference. There is no performance penalty here. WASM backend is a different beast. As WASM backend currently does...

I think this can be implemented by a bulk-copy from and to the Wasm memory with some utility functions on JS side. Do you have an example for the current...

Hi! thank you for using Bytecoder! java.desktop support is currently very limited, and cross compiling a Swing application is not supported by recent Bytecoder. I've added the java.desktop package for...