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
Minification of for..of loop replaces the loop variable and iterable object variable with the same names, which is syntactically incorrect and throws Uncaught ReferenceError: can't access lexical declaration 'n' before initialization.
Installed product versions
Description
Minification of for..of loop replaces the loop variable and iterable object variable with the same names, which is syntactically incorrect and throws
Uncaught ReferenceError: can't access lexical declaration 'n' before initialization
.Steps to recreate
Consider the following code block:
With following
bundleconfig.json
settings:Current behavior
The code block is minified incorrectly - the names of loop variable and iterable variable are the same:
Expected behavior
For example, this way:
The text was updated successfully, but these errors were encountered: