Ashley (Scirra)
Ashley (Scirra)
I need to use Box2D.js in a strict-mode environment. Put "use strict"; at the top of box2d.js and it fails with "cannot set property 'Module' of undefined", due to the...
The naming scheme used by the asm.js compilation uses functions and variables with the same name. This is an error in strict mode (see also issue #42). Evne if you're...
b2ContactFilter is not implemented, so there is no way to implement ShouldCollide.
When using perspective with an off-axis projection, `mat4.frustum` is used instead of `mat4.perspective`. In v3.4.1 there's a `mat4.perspectiveZO` method for WebGPU, but no `mat4.frustum`. So web apps using an off-axis...
We use localforage in our web app [Construct 3](https://editor.construct.net). It's a great library. However we sometimes get rare and mysterious errors when writing to storage. To investigate this further we've...
Compilation level `BUNDLE` appears to include a lot of polyfill code, even for things supported by the language setting. The real problem though is this code relies on top-level `this`...
In issue #3707 I asked for support for passthrough of dynamic import in Closure Compiler. The issue was closed as support was apparently added. However it seems that in subsequent...
Closure compiler v20200614 in.js: ```js { function foo(p) { self["external1"](p) } console.log(foo()); console.log(foo()); } ``` Command: `java -jar ./closure-compiler.jar --js in.js --js_output_file out.js --compilation_level WHITESPACE_ONLY --formatting PRETTY_PRINT` out.js: ```js {...
[This comment](https://github.com/google/closure-compiler/issues/3707#issuecomment-834744655) appears to indicate pass-through for `import.meta` is supported, but it still doesn't seem to work in v20210601. Input test.js: `console.log(import.meta.url);` Command line: `java -jar ./closure-compiler.jar --compilation_level SIMPLE --language_in...
Please at least support a basic passthrough for dynamic import for Closure Compiler. In the current version, any presence of dynamic import at all causes a compilation failure. This causes...