-
Fix property mangling and keyword properties (#1998)
Previously enabling property mangling with
--mangle-props=
failed to add a space before property names after a keyword. This bug has been fixed:// Original code class Foo { static foo = { get bar() {} } } // Old output (with --minify --mangle-props=.) class Foo{statics={gett(){}}} // New output (with --minify --mangle-props=.) class Foo{static s={get t(){}}}