Roberto Lublinerman
Roberto Lublinerman
Well that is progress. I am not sure how to disable the debug loader in bundled mode, but I think the test runner should give better messages when there are...
The deps are all there, but in order to avoid cyclical module dependencies, j2cl generates extra requires (which are only needed to make sure the relevant sources are included by...
I think in this case, it is better that the library user decide that a debugger statement is ok in their application. But I also understand that there might be...
I think the suppression related to public/protected should be included in the suppressions that we do for J2CL since J2CL never emits @protected if I remember correctly. Could you post...
> 4\. Configure two outputs. 3.1 json text (as per now) 3.2 binary + zip AFAIK, library info is already emitted in binary format [here](https://github.com/google/j2cl/blob/103b49daf57db2a9bae891aef0a73a4fb1fc62c4/transpiler/java/com/google/j2cl/transpiler/backend/closure/OutputGeneratorStage.java#L185). The json text is just...
The main issue is not the ability to implement it but rather how to implement it without losing optimization. As with other reflective features, if not done very carefully the...
Without restrictions (or a specific global optimizations in jscompiler) a single use of an utility method like ``` void myMethod(Class c) { ..... x = Enum.valueOf(c, "..."); ... } ```...
We welcome patches, especially for Windows since none the current contributors (myself including) develop on Windows. For this case where the command line to zip is to long it could...
We would like the community to take on making J2CL work in Windows natively. None of the core developers uses Windows machines. We do not consider this a blocker since...
We do accept contributions for missing jre methods. Note that the implementations need to : - be supportable in the web (e.g. java.net.*, reflective apis, etc, are no supported, )....