Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for for..of/for..await in DCE #214

Merged
merged 3 commits into from
Oct 22, 2016
Merged

support for for..of/for..await in DCE #214

merged 3 commits into from
Oct 22, 2016

Commits on Oct 22, 2016

  1. 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)
    boopathi committed Oct 22, 2016
    Configuration menu
    Copy the full SHA
    7e6dd22 View commit details
    Browse the repository at this point in the history
  2. Enable async generators test

    boopathi committed Oct 22, 2016
    Configuration menu
    Copy the full SHA
    4dbd95e View commit details
    Browse the repository at this point in the history
  3. Remove comment

    boopathi committed Oct 22, 2016
    Configuration menu
    Copy the full SHA
    cde14b3 View commit details
    Browse the repository at this point in the history