Bradford C. Smith
Bradford C. Smith
Thanks for bringing up those other concerns. I think it would be fine for you to create a PR with whatever you have right now. Once a PR exists I...
I'm afraid we're just really not motivated to spend development effort on making non-ascii JS inputs work. However, we'll be happy to review and merge a PR if someone in...
When the value of a destructuring assignment expression is not a stand-alone statement, `Es6RewriteDestructuring` wraps it in an arrow function to provide a scope for the variables that must be...
OK, that probably *would* work, except generator arrow functions aren't allowed by the language. We're using arrow functions so that access to `this` is consistent. I've just realized that wrapping...
nevermind about `arguments`. I apparently messed up my attempt to test whether arrow functions get their own copy of `arguments`. They don't.
I have a fix for this in internal review.
Since blocks cannot be placed inside an expression, it's necessary to decompose expressions into multiple statements and create temporary variables, etc. in order to preserve the order of operations from...
@ChadKillingsworth am I right in thinking that you cannot use ES module syntax when passing `--process_common_js_modules` to the compiler?
Wow. I didn't know the compiler would even allow this syntax of putting the parameter's name in square brackets. If you also supply the "=default" part AFAICT the compiler completely...
Since the Google team that forms the core support for `closure-compiler` do not use Windows at all, reproducing this problem in order to debug it is not something we can...