Roberto Lublinerman
Roberto Lublinerman
I am not sure there is a good solution here. elemental2 is generated from the closure definitions and the definition is for all purposes correct. The alternative is to use...
Other possible solution is to change GWT to have a yet another custom casting logic for JsPackage.GLOBAL classes; so that at runtime the logic becomes ``` x instanceof $wnd.Blah ||...
> What are your thoughts with regard to j2cl and this kind of issue? J2CL does not make any assumption about the nature of the global scope. Whenever you say...
Could you try on a clean repo? I cannot reproduce on a clean repo. ```shell git clone https://github.com/google/j2cl.git cd j2cl bazel test //transpiler/javatests/com/google/j2cl/transpiler/integration/... ``` gets the expected result in my...
Could you just remove the deps in transpiler/javatests/com/google/j2cl/transpiler/integration/box2d/BUILD and see if you can build now? I am sending a patch to do that but since it does not reproduce in...
Hmm. I am curious what platform you running under and which version of bazel?
That is definitely progress. bazel should not even try to build box2d (with the ... invocation) since the targets are marked `tag=["manual"]`. you can try with `bazel test //transpiler/javatests/com/google/j2cl/transpiler/integration/... --keep_going`...
Thank you for your interest. We are looking forward to your contribution! I think we are in most need to make the experience smoother. W.r.t to failing tests, except for...
Do you mean `compilation_level`? That is an argument to [`closure_js_test`](https://github.com/bazelbuild/rules_closure/blob/master/README.md#closure_js_test), used in [`integration_test.bzl`](https://github.com/google/j2cl/blob/fa4c37c67d26b20b17a74129b89bc812733611f0/transpiler/javatests/com/google/j2cl/transpiler/integration/integration_test.bzl#L113). The option `"BUNDLE"` it is undocumented, but it produces the concatenated source with no compilation for faster...
Interseting. Could you set `ENABLE_DEBUG_LOADER` to `false`? There is a `goog.define` in the .js output.