A follow up from https://github.com/babel/babel/pull/2969 were we added support for consts in the block-scoping plugin.
11 lines
162 B
JavaScript
11 lines
162 B
JavaScript
var a = 1;
|
|
var b = 2;
|
|
var c = 3;
|
|
var d = 4;
|
|
var _e$f = { e: 5, f: 6 };
|
|
var e = _e$f.e;
|
|
var f = _e$f.f;
|
|
var _a$b = { a: 7, b: 8 };
|
|
var g = _a$b.a;
|
|
var h = _a$b.b;
|