This commit is contained in:
11
test/fixtures/transformation/let-scoping/function-declaration/expected.js
vendored
Normal file
11
test/fixtures/transformation/let-scoping/function-declaration/expected.js
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
"use strict";
|
||||
|
||||
domready(function () {
|
||||
var a = 1;
|
||||
var b = 1;
|
||||
runIt();
|
||||
|
||||
function runIt() {
|
||||
console.log(a + b);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user