You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Same applies to handling of function names, they're renamed not in context of surrounding scope, which of course is valid in ECMAScript, but error-prone for IE8 environment, as this name leaks to upper scope and we may have collisions, e.g.:
In my setup
mangle
at somepoint generated similar code:It works on most browsers, but it fails in IE8, where
a
is not local to catch scope, and overrides outera
.It'll be great to have either hardcoded workaround for that, or at least an option that will allow us to produce IE8 valid code.
The text was updated successfully, but these errors were encountered: