Skip to content

7.0.1

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Sep 01:45
8de559f

Bug Fixes

  • The body of switch statement is a block scope (#67)

    In this example:

    switch (3) {
      case 3:
        let a;
    }
    a;  // this 'a' is a global

    The a at the bottom is global, even though a variable called a was declared inside the switch statement.