Moti Zilberman 7a7704fea0 Fix block scoping transform for declarations in labeled statements (#4669)
* Fix block scoping transform for declarations in labeled statements (#4122)

* DRY block-scoping
2016-10-05 21:47:21 +02:00

10 lines
73 B
JavaScript

let x, y;
{
a: let x;
let y;
}
switch (0) {
case 0: a: let x=0;
}