j2cl
j2cl copied to clipboard
Java to Closure JavaScript transpiler
By popular request, I am listing the things that J2CL team is actively working on apart from continuous improvements and maintenance and what to expect in the next quarters: Last...
Related to #146. I assume it is somehow possible to ask the web server in the sample apps to bind to a different address (host and port), but I can't...
**Describe the bug** "abc".split("") get error array ["","a","b","c"] **To Reproduce** use j2clmavenplugin ```java //in java MathUtil.java package cn.util; import jsinterop.annotations.JsType; @JsType public class MathUtil { public static native void ppp(String...
**Is your feature request related to a problem? Please describe.** `Math.IEEEremainder` isn't implemented and is commented as such at: https://github.com/google/j2cl/blob/master/jre/java/java/lang/Math.java#L34 **Describe the solution you'd like** Add support for [Math.IEEEremainder](https://docs.oracle.com/javase/7/docs/api/java/lang/Math.html#IEEEremainder(double,%20double)) **Describe...
`Enum.valueOf()` (and the corresponding `Class.getEnumConstants()`) isn't supported in j2cl, but there are TODOs in the code suggesting that this might be feasible, and perhaps would be accepted as an external...
According to https://github.com/google/j2cl/issues/98#issuecomment-659101173 that's the intended behavior.
**Is your feature request related to a problem? Please describe.** For accurate incremental transpiling, external tooling (Maven, Gradle, etc.) need to determine which files to re-transpile when a given file...
Hello, I tried following your getting started under https://github.com/google/j2cl/blob/master/docs/getting-started.md The following happens on my machine (Windows (sadly)). Installing bazelisk through npm or chocolatey does not result in any different outcome....
With WebAssembly getting a lot of traction is it possible to have 2 back ends. One for JS and another for WA.
Hi, Thank you for this project! For now, I cannot find the information on supported Java versions: 8 / 11 ? It is still source to source transpiler ? Do...