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
for..of and for..await loops are not considered in DCE and unused var
declarations in these loops are removed and this results in an empty
LVal. The same exception which is considered for a for..in loop is
also applied for for..of or for..await loops, and we use an Alias
that Babel provides - ForXStatement which is a for..in, for..of, or
a for..await loop.
+ (Close#207)
* Fix bug: support for for..of/for..await in DCE
for..of and for..await loops are not considered in DCE and unused var
declarations in these loops are removed and this results in an empty
LVal. The same exception which is considered for a for..in loop is
also applied for for..of or for..await loops, and we use an Alias
that Babel provides - ForXStatement which is a for..in, for..of, or
a for..await loop.
+ (Close#207)
* Enable async generators test
* Remove comment
This currently throws in Babili but shouldn't:
The text was updated successfully, but these errors were encountered: